Home
last modified time | relevance | path

Searched refs:tmout (Results 1 – 8 of 8) sorted by relevance

/external/strace/tests-m32/
Dfutex.c58 static struct timespec *tmout; variable
175 tmout = tail_alloc(sizeof(*tmout)); in main()
176 tmout->tv_sec = 123; in main()
177 tmout->tv_nsec = 0xbadc0de; in main()
190 CHECK_FUTEX(NULL, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
193 VAL_PR, (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in main()
197 CHECK_FUTEX(uaddr + 1, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
200 uaddr + 1, VAL_PR, (intmax_t) tmout->tv_sec, in main()
201 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in main()
204 CHECK_FUTEX(uaddr, FUTEX_WAIT, VAL, tmout + 1, uaddr2, VAL3, in main()
[all …]
Dmq_sendrecv.c134 do_send(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_send() argument
142 tmout); in do_send()
151 (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in do_send()
167 do_recv(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_recv() argument
176 tmout); in do_recv()
189 (intmax_t) tmout->tv_sec, in do_recv()
190 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in do_recv()
/external/strace/tests/
Dfutex.c58 static struct timespec *tmout; variable
175 tmout = tail_alloc(sizeof(*tmout)); in main()
176 tmout->tv_sec = 123; in main()
177 tmout->tv_nsec = 0xbadc0de; in main()
190 CHECK_FUTEX(NULL, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
193 VAL_PR, (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in main()
197 CHECK_FUTEX(uaddr + 1, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
200 uaddr + 1, VAL_PR, (intmax_t) tmout->tv_sec, in main()
201 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in main()
204 CHECK_FUTEX(uaddr, FUTEX_WAIT, VAL, tmout + 1, uaddr2, VAL3, in main()
[all …]
Dmq_sendrecv.c134 do_send(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_send() argument
142 tmout); in do_send()
151 (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in do_send()
167 do_recv(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_recv() argument
176 tmout); in do_recv()
189 (intmax_t) tmout->tv_sec, in do_recv()
190 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in do_recv()
/external/strace/tests-mx32/
Dfutex.c58 static struct timespec *tmout; variable
175 tmout = tail_alloc(sizeof(*tmout)); in main()
176 tmout->tv_sec = 123; in main()
177 tmout->tv_nsec = 0xbadc0de; in main()
190 CHECK_FUTEX(NULL, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
193 VAL_PR, (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in main()
197 CHECK_FUTEX(uaddr + 1, FUTEX_WAIT, VAL, tmout, uaddr2, VAL3, in main()
200 uaddr + 1, VAL_PR, (intmax_t) tmout->tv_sec, in main()
201 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in main()
204 CHECK_FUTEX(uaddr, FUTEX_WAIT, VAL, tmout + 1, uaddr2, VAL3, in main()
[all …]
Dmq_sendrecv.c134 do_send(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_send() argument
142 tmout); in do_send()
151 (intmax_t) tmout->tv_sec, (intmax_t) tmout->tv_nsec, in do_send()
167 do_recv(int fd, char *msg, unsigned int msg_size, struct timespec *tmout, in do_recv() argument
176 tmout); in do_recv()
189 (intmax_t) tmout->tv_sec, in do_recv()
190 (intmax_t) tmout->tv_nsec, sprintrc(rc)); in do_recv()
/external/autotest/client/site_tests/hardware_Badblocks/
Dhardware_Badblocks.py71 def _run_badblocks(self, dev, sector_size, tmout): argument
92 t = threading.Timer(tmout, self._timeout, [badblocks_proc])
141 def run_once(self, iters=1, tmout=60 * 60): argument
154 logging.info('badblocks Timeout (sec): %d', tmout)
174 self._run_badblocks(dev, sector_size, tmout)
/external/libpcap/
Dpcap-bpf.c319 int expire, tmout; in pcap_next_zbuf() local
337 tmout = p->opt.timeout; in pcap_next_zbuf()
338 if (tmout) in pcap_next_zbuf()
342 tmout = expire - TSTOMILLI(&cur); in pcap_next_zbuf()
344 if (tmout <= 0) { in pcap_next_zbuf()
365 if (tmout != 0) { in pcap_next_zbuf()
366 tv.tv_sec = tmout / 1000; in pcap_next_zbuf()
367 tv.tv_usec = (tmout * 1000) % 1000000; in pcap_next_zbuf()