Home
last modified time | relevance | path

Searched defs:cvp (Results 1 – 12 of 12) sorted by relevance

/freebsd-src/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dcondvar.h98 #define cv_init(cvp, name, type, arg) __cv_init(cvp, name, type, arg) argument
99 #define cv_destroy(cvp) __cv_destroy(cvp) argument
100 #define cv_wait(cvp, mp) __cv_wait(cvp, mp) argument
101 #define cv_wait_io(cvp, mp) __cv_wait_io(cvp, mp) argument
102 #define cv_wait_idle(cvp, mp) __cv_wait_idle(cvp, m argument
103 cv_wait_io_sig(cvp,mp) global() argument
104 cv_wait_sig(cvp,mp) global() argument
105 cv_signal(cvp) global() argument
106 cv_broadcast(cvp) global() argument
113 cv_timedwait(cvp,mp,t) global() argument
114 cv_timedwait_io(cvp,mp,t) global() argument
115 cv_timedwait_sig(cvp,mp,t) global() argument
116 cv_timedwait_idle(cvp,mp,t) global() argument
[all...]
/freebsd-src/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-condvar.c68 __cv_init(kcondvar_t * cvp,char * name,kcv_type_t type,void * arg) __cv_init() argument
85 cv_destroy_wakeup(kcondvar_t * cvp) cv_destroy_wakeup() argument
97 __cv_destroy(kcondvar_t * cvp) __cv_destroy() argument
117 cv_wait_common(kcondvar_t * cvp,kmutex_t * mp,int state,int io) cv_wait_common() argument
169 __cv_wait(kcondvar_t * cvp,kmutex_t * mp) __cv_wait() argument
176 __cv_wait_io(kcondvar_t * cvp,kmutex_t * mp) __cv_wait_io() argument
183 __cv_wait_io_sig(kcondvar_t * cvp,kmutex_t * mp) __cv_wait_io_sig() argument
192 __cv_wait_sig(kcondvar_t * cvp,kmutex_t * mp) __cv_wait_sig() argument
201 __cv_wait_idle(kcondvar_t * cvp,kmutex_t * mp) __cv_wait_idle() argument
259 __cv_timedwait_common(kcondvar_t * cvp,kmutex_t * mp,clock_t expire_time,int state,int io) __cv_timedwait_common() argument
319 __cv_timedwait(kcondvar_t * cvp,kmutex_t * mp,clock_t exp_time) __cv_timedwait() argument
327 __cv_timedwait_io(kcondvar_t * cvp,kmutex_t * mp,clock_t exp_time) __cv_timedwait_io() argument
335 __cv_timedwait_sig(kcondvar_t * cvp,kmutex_t * mp,clock_t exp_time) __cv_timedwait_sig() argument
345 __cv_timedwait_idle(kcondvar_t * cvp,kmutex_t * mp,clock_t exp_time) __cv_timedwait_idle() argument
364 __cv_timedwait_hires(kcondvar_t * cvp,kmutex_t * mp,hrtime_t expire_time,hrtime_t res,int state) __cv_timedwait_hires() argument
426 cv_timedwait_hires_common(kcondvar_t * cvp,kmutex_t * mp,hrtime_t tim,hrtime_t res,int flag,int state) cv_timedwait_hires_common() argument
436 cv_timedwait_hires(kcondvar_t * cvp,kmutex_t * mp,hrtime_t tim,hrtime_t res,int flag) cv_timedwait_hires() argument
445 cv_timedwait_sig_hires(kcondvar_t * cvp,kmutex_t * mp,hrtime_t tim,hrtime_t res,int flag) cv_timedwait_sig_hires() argument
457 cv_timedwait_idle_hires(kcondvar_t * cvp,kmutex_t * mp,hrtime_t tim,hrtime_t res,int flag) cv_timedwait_idle_hires() argument
474 __cv_signal(kcondvar_t * cvp) __cv_signal() argument
494 __cv_broadcast(kcondvar_t * cvp) __cv_broadcast() argument
[all...]
/freebsd-src/sys/sys/
H A Dcondvar.h62 #define cv_wait(cvp, lock) \ argument
64 #define cv_wait_unlock(cvp, lock) \ argument
66 #define cv_wait_sig(cvp, lock) \ argument
68 #define cv_timedwait(cvp, lock, timo) \ argument
71 #define cv_timedwait_sbt(cvp, lock, sbt, pr, flags) \ argument
73 #define cv_timedwait_sig(cvp, lock, timo) \ argument
76 #define cv_timedwait_sig_sbt(cvp, lock, sbt, pr, flags) \ argument
79 #define cv_broadcast(cvp) cv_broadcastpri(cvp, 0) argument
81 #define cv_wmesg(cvp) ((cvp)->cv_description) argument
/freebsd-src/sys/kern/
H A Dkern_condvar.c57 #define CV_WAITERS_INC(cvp) do { \ argument
65 #define CV_ASSERT(cvp, lock, td) do { \ argument
76 cv_init(struct cv *cvp, const char *desc) in cv_init() argument
88 cv_destroy(struct cv *cvp) in cv_destroy() argument
108 _cv_wait(struct cv * cvp,struct lock_object * lock) _cv_wait() argument
171 _cv_wait_unlock(struct cv * cvp,struct lock_object * lock) _cv_wait_unlock() argument
228 _cv_wait_sig(struct cv * cvp,struct lock_object * lock) _cv_wait_sig() argument
296 _cv_timedwait_sbt(struct cv * cvp,struct lock_object * lock,sbintime_t sbt,sbintime_t pr,int flags) _cv_timedwait_sbt() argument
366 _cv_timedwait_sig_sbt(struct cv * cvp,struct lock_object * lock,sbintime_t sbt,sbintime_t pr,int flags) _cv_timedwait_sig_sbt() argument
437 cv_signal(struct cv * cvp) cv_signal() argument
463 cv_broadcastpri(struct cv * cvp,int pri) cv_broadcastpri() argument
[all...]
/freebsd-src/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dspl_condvar.h67 #define cv_wait(cvp, lock) \ argument
69 #define cv_wait_unlock(cvp, lock) \ argument
71 #define cv_timedwait_sbt(cvp, lock, sbt, pr, flags) \ argument
73 #define cv_timedwait_sig_sbt(cvp, lock, sbt, pr, flags) \ argument
76 #define cv_broadcast(cvp) cv_broadcastpri(cvp, 0) argument
78 #define cv_wmesg(cvp) ((cvp)->cv_description) argument
H A Dcondvar.h107 cv_wait_sig(kcondvar_t *cvp, kmutex_t *mp) in cv_wait_sig()
114 cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t timo) in cv_timedwait()
129 cv_timedwait_sig(kcondvar_t *cvp, kmutex_t *mp, clock_t timo) in cv_timedwait_sig()
156 cv_timedwait_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim, hrtime_t res, in cv_timedwait_hires()
181 cv_timedwait_sig_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim, in cv_timedwait_sig_hires()
/freebsd-src/lib/libthr/thread/
H A Dthr_cond.c76 #define CV_PSHARED(cvp) (((cvp)->kcond.c_flags & USYNC_PROCESS_SHARED) != 0) argument
79 cond_init_body(struct pthread_cond *cvp, const struct pthread_cond_attr *cattr) in cond_init_body()
94 struct pthread_cond *cvp; in cond_init() local
165 struct pthread_cond *cvp; in _thr_cond_destroy() local
204 cond_wait_kernel(struct pthread_cond *cvp, struct pthread_mutex *mp, in cond_wait_kernel()
276 cond_wait_user(struct pthread_cond *cvp, struct pthread_mutex *mp, in cond_wait_user()
356 struct pthread_cond *cvp; in cond_wait_common() local
426 struct pthread_cond *cvp; in cond_signal_common() local
511 struct pthread_cond *cvp; in cond_broadcast_common() local
/freebsd-src/usr.bin/mkuzip/
H A Dmkuz_conveyor.c50 struct mkuz_conveyor *cvp; member
60 struct mkuz_conveyor *cvp; in cworker() local
H A Dmkuzip.c127 struct mkuz_conveyor *cvp; in main() local
/freebsd-src/contrib/ntp/libntp/lib/isc/include/isc/
H A Dutil.h120 #define BROADCAST(cvp) do { \ argument
127 #define SIGNAL(cvp) do { \ argument
134 #define WAIT(cvp, lp) do { \ argument
159 #define WAITUNTIL(cvp, lp, tp) \ argument
/freebsd-src/sys/cddl/compat/opensolaris/sys/
H A Dkcondvar.h61 cv_timedwait_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim, hrtime_t res, in cv_timedwait_hires()
/freebsd-src/usr.bin/diff/
H A Ddiffreg.c1497 struct context_vec *cvp = context_vec_start; dump_context_vec() local
1600 struct context_vec *cvp = context_vec_start; dump_unified_vec() local
[all...]