Searched refs:tm_p (Results 1 – 6 of 6) sorted by relevance
/freebsd/lib/libthr/thread/ |
H A D | thr_umtx.c | 112 struct _umtx_time *tm_p, timeout; in __thr_umutex_timedlock() local 118 tm_p = NULL; in __thr_umutex_timedlock() 124 tm_p = &timeout; in __thr_umutex_timedlock() 145 (void *)tm_size, __DECONST(void *, tm_p)); in __thr_umutex_timedlock() 148 (void *)tm_size, __DECONST(void *, tm_p)); in __thr_umutex_timedlock() 209 struct _umtx_time *tm_p, timeout; in _thr_umtx_timedwait_uint() local 213 tm_p = NULL; in _thr_umtx_timedwait_uint() 219 tm_p = &timeout; in _thr_umtx_timedwait_uint() 225 (void *)tm_size, __DECONST(void *, tm_p))); in _thr_umtx_timedwait_uint() 281 struct _umtx_time timeout, *tm_p; in __thr_rwlock_rdlock() local [all …]
|
/freebsd/lib/libc/gen/ |
H A D | sem.c | 317 struct _umtx_time *tm_p, timeout; in _umtx_wait_uint() local 321 tm_p = NULL; in _umtx_wait_uint() 327 tm_p = &timeout; in _umtx_wait_uint() 332 (void *)tm_size, __DECONST(void*, tm_p)); in _umtx_wait_uint()
|
H A D | sem_new.c | 351 void *tm_p; in usem_wait() local 356 tm_p = NULL; in usem_wait() 362 tm_p = &tms; in usem_wait() 365 retval = _umtx_op(sem, UMTX_OP_SEM2_WAIT, 0, (void *)tm_size, tm_p); in usem_wait()
|
/freebsd/contrib/unbound/util/ |
H A D | log.c | 284 struct tm tm, *tm_p; in log_vmsg() local 288 tm_p = localtime_r(&now, &tm); in log_vmsg() 289 strftime(tmbuf, sizeof(tmbuf), "%Y-%m-%dT%H:%M:%S", tm_p); in log_vmsg() 290 if(strftime(tzbuf, sizeof(tzbuf), "%z", tm_p) == 5) { in log_vmsg()
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | worker.c | 33 int tm_p[2]; /* poll control pipe */ member 43 #define RD_PIPE (Tskmgr.tm_p[0]) 44 #define WR_PIPE (Tskmgr.tm_p[1]) 281 if (pipe(Tskmgr.tm_p) != 0) in mi_pool_controller_init()
|
/freebsd/sys/kern/ |
H A D | kern_umtx.c | 3937 struct _umtx_time timeout, *tm_p; in __umtx_op_wait() local 3941 tm_p = NULL; in __umtx_op_wait() 3947 tm_p = &timeout; in __umtx_op_wait() 3949 return (do_wait(td, uap->obj, uap->val, tm_p, ops->compat32, 0)); in __umtx_op_wait() 3956 struct _umtx_time timeout, *tm_p; in __umtx_op_wait_uint() local 3960 tm_p = NULL; in __umtx_op_wait_uint() 3966 tm_p = &timeout; in __umtx_op_wait_uint() 3968 return (do_wait(td, uap->obj, uap->val, tm_p, 1, 0)); in __umtx_op_wait_uint() 3975 struct _umtx_time *tm_p, timeout; in __umtx_op_wait_uint_private() local 3979 tm_p = NULL; in __umtx_op_wait_uint_private() [all …]
|