HomeSort by relevance Sort by last modified time
    Searched refs:timeout_ts (Results 1 - 4 of 4) sorted by null

  /external/ltp/testcases/kernel/syscalls/mq_timedreceive/
mq_timedreceive01.c 34 static struct timespec timeout_ts; variable in typeref:struct:timespec
157 .rq = &timeout_ts,
215 clock_gettime(CLOCK_REALTIME, &timeout_ts);
216 timeout_ts.tv_nsec += 50000000;
217 timeout_ts.tv_sec += timeout_ts.tv_nsec / 1000000000;
218 timeout_ts.tv_nsec %= 1000000000;
  /external/valgrind/coregrind/
m_libcfile.c 608 struct vki_timespec timeout_ts; local
610 timeout_ts.tv_sec = timeout / 1000;
611 timeout_ts.tv_nsec = ((long)timeout % 1000) * 1000000;
615 (UWord)(timeout >= 0 ? &timeout_ts : NULL),
    [all...]
  /art/dex2oat/
dex2oat.cc 541 timespec timeout_ts; local
543 InitTimeSpec(true, CLOCK_REALTIME, timeout_in_milliseconds_, 0, &timeout_ts);
545 InitTimeSpec(true, CLOCK_MONOTONIC, timeout_in_milliseconds_, 0, &timeout_ts);
550 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts));
    [all...]
  /external/google-breakpad/src/third_party/lss/
linux_syscall_support.h 3982 struct kernel_timespec timeout_ts; local
    [all...]

Completed in 291 milliseconds