Lines Matching refs:ts
42 timespec ts; in poll() local
45 timespec_from_ms(ts, ms); in poll()
46 ts_ptr = &ts; in poll()
51 int ppoll(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset_t* ss) { in ppoll() argument
60 return ppoll64(fds, fd_count, ts, ss_ptr); in ppoll()
63 int ppoll64(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset64_t* ss) { in ppoll64() argument
67 if (ts != nullptr) { in ppoll64()
68 mutable_ts = *ts; in ppoll64()
83 timespec ts; in select() local
86 if (!timespec_from_timeval(ts, *tv)) { in select()
90 ts_ptr = &ts; in select()
94 timeval_from_timespec(*tv, ts); in select()
100 const timespec* ts, const sigset_t* ss) { in pselect() argument
109 return pselect64(fd_count, read_fds, write_fds, error_fds, ts, ss_ptr); in pselect()
113 const timespec* ts, const sigset64_t* ss) { in pselect64() argument
117 if (ts != nullptr) { in pselect64()
118 mutable_ts = *ts; in pselect64()