HomeSort by: relevance | last modified time | path
    Searched refs:abstime (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 123 const timespec *abstime) {
125 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime);
148 const timespec *abstime) {
150 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime);
194 const timespec *abstime) {
199 int res = REAL(pthread_cond_timedwait)(cond, m, abstime);
  /src/tests/kernel/kqueue/
t_timer.c 268 ATF_TC(abstime);
269 ATF_TC_HEAD(abstime, tc)
275 ATF_TC_BODY(abstime, tc)
354 ATF_TP_ADD_TC(tp, abstime);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_platform_mac.cc 291 void *abstime), void *c, void *m, void *abstime,
297 res = fn(c, m, abstime);
tsan_platform_linux.cc 355 void *abstime), void *c, void *m, void *abstime,
361 res = fn(c, m, abstime);
tsan_interceptors.cc 1074 const struct timespec *abstime) {
1075 SCOPED_TSAN_INTERCEPTOR(pthread_timedjoin_np, th, ret, abstime);
1078 int res = BLOCK_REAL(pthread_timedjoin_np)(th, ret, abstime);
1156 int (*fn)(void *c, void *m, void *abstime), void *c,
1178 return cond_wait(thr, pc, &si, (int (*)(void *c, void *m, void *abstime))REAL(
1183 INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) {
1185 SCOPED_TSAN_INTERCEPTOR(pthread_cond_timedwait, cond, m, abstime);
1187 abstime);
1264 TSAN_INTERCEPTOR(int, pthread_mutex_timedlock, void *m, void *abstime) {
1265 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_timedlock, m, abstime);
    [all...]
tsan_platform.h 1018 void *abstime), void *c, void *m, void *abstime,
  /src/lib/libpthread/
pthread_cond.c 126 const struct timespec *abstime)
134 return __libc_cond_timedwait_stub(cond, mutex, abstime);
178 int rv = _lwp_park(clkid, TIMER_ABSTIME, __UNCONST(abstime),
pthread.c 1220 pthread_queue_t *queue, const struct timespec *abstime,
1252 __UNCONST(abstime), 0, NULL, NULL);
  /src/lib/librt/
sem.c 382 sem_timedwait(sem_t *sem, const struct timespec * __restrict abstime)
392 return _ksem_timedwait(sem_to_semid(sem), abstime);
  /src/sys/compat/netbsd32/
netbsd32_sem.c 166 const netbsd32_timespecp_t abstime;
175 error = copyin(SCARG_P32(uap, abstime), &ts32, sizeof(ts32));
netbsd32_syscallargs.h 1359 syscallarg(const netbsd32_timespecp_t) abstime;
netbsd32_systrace_args.c 1837 uarg[1] = (intptr_t) SCARG(p, abstime).i32; /* const netbsd32_timespecp_t */
  /src/sys/kern/
uipc_sem.c 936 do_ksem_wait(lwp_t *l, intptr_t id, bool try_p, struct timespec *abstime)
948 if (!try_p && abstime != NULL) {
949 error = ts2timo(CLOCK_REALTIME, TIMER_ABSTIME, abstime,
985 const struct timespec *abstime;
990 error = copyin(SCARG(uap, abstime), &ts, sizeof(ts));
systrace_args.c 1898 uarg[1] = (intptr_t) SCARG(p, abstime); /* const struct timespec * */
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
netbsd_syscall_hooks.h 1318 #define __sanitizer_syscall_pre__ksem_timedwait(id, abstime) \
1320 (long long)(abstime))
1321 #define __sanitizer_syscall_post__ksem_timedwait(res, id, abstime) \
1323 (long long)(abstime))
3692 long long abstime);
3694 long long abstime);
  /src/sys/rump/librump/rumpkern/
rump_syscalls.c 2992 rump___sysimpl__ksem_timedwait(intptr_t id, const struct timespec * abstime)
3001 SPARG(&callarg, abstime) = abstime;
  /src/sys/sys/
syscallargs.h 1644 syscallarg(const struct timespec *) abstime;

Completed in 41 milliseconds