Searched refs:cv (Results 51 - 75 of 144) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dtsan_annotations.h31 void AnnotateCondVarSignal(const char *f, int l, uptr cv);
32 void AnnotateCondVarSignalAll(const char *f, int l, uptr cv);
34 void AnnotateCondVarWait(const char *f, int l, uptr cv, uptr lock);
/freebsd-11-stable/stand/kshim/
H A Dbsd_kernel.h296 struct cv { struct
300 void cv_init(struct cv *, const char *desc);
301 void cv_destroy(struct cv *);
302 void cv_wait(struct cv *, struct mtx *);
303 int cv_timedwait(struct cv *, struct mtx *, int);
304 void cv_signal(struct cv *);
305 void cv_broadcast(struct cv *);
/freebsd-11-stable/contrib/file/src/
H A Dreadcdf.c74 static const struct cv { struct
96 cdf_clsid_to_mime(const uint64_t clsid[2], const struct cv *cv) argument
99 for (i = 0; cv[i].mime != NULL; i++) {
100 if (clsid[0] == cv[i].clsid[0] && clsid[1] == cv[i].clsid[1])
101 return cv[i].mime;
/freebsd-11-stable/contrib/unbound/respip/
H A Drespip.c420 struct config_view* cv; local
424 for(cv = cfg->views; cv; cv = cv->next) {
431 if(!cv->respip_actions && !cv->respip_data)
434 if(!(v = views_find_view(vs, cv->name, 1))) {
435 log_err("view '%s' unexpectedly missing", cv->name);
447 cv
[all...]
/freebsd-11-stable/sys/fs/cuse/
H A Dcuse.c107 struct cv cv; member in struct:cuse_client_command
138 struct cv cv; member in struct:cuse_server
544 cv_broadcast(&pccmd->cv);
577 cv_signal(&pcs->cv);
596 cv_signal(&pcs->cv);
618 cv_wait(&pccmd->cv, &pcs->mtx);
620 error = cv_wait_sig(&pccmd->cv, &pcs->mtx);
633 cv_signal(&pccmd->cv);
[all...]
/freebsd-11-stable/usr.sbin/pciconf/
H A Dpciconf.c764 struct pci_vendor_info *cv; local
781 cv = NULL;
808 if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
813 if ((cv->desc = strdup(str)) == NULL) {
814 free(cv);
819 cv->id = id;
820 TAILQ_INIT(&cv->devs);
821 TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
829 if (cv == NULL) {
845 TAILQ_INSERT_TAIL(&cv
[all...]
/freebsd-11-stable/sys/dev/cxgbe/cxgbei/
H A Dcxgbei.h44 struct cv cwt_cv;
/freebsd-11-stable/sys/dev/altera/sdcard/
H A Daltera_sdcard.h47 struct cv as_condvar;
/freebsd-11-stable/sys/dev/en/
H A Dmidwayvar.h197 struct cv cv_close; /* close CV */
/freebsd-11-stable/sys/dev/usb/
H A Dusb_transfer.h170 struct cv cv_drain;
H A Dusbdi_util.h29 struct cv;
H A Dusb_device.h200 struct cv ctrlreq_cv;
201 struct cv ref_cv;
H A Dusb_msctest.c154 struct cv cv; member in struct:bbb_transfer
274 cv_signal(&sc->cv);
558 cv_wait(&sc->cv, &sc->mtx);
588 cv_wait(&sc->cv, &sc->mtx);
665 cv_init(&sc->cv, "WBBB");
696 cv_destroy(&sc->cv);
/freebsd-11-stable/sys/fs/autofs/
H A Dautofs.h118 struct cv sc_cv;
/freebsd-11-stable/sys/dev/fatm/
H A Dif_fatmvar.h218 struct cv cv_regs; /* to serialize access to reg_mem */
222 struct cv cv_stat; /* to serialize access to sadi_mem */
/freebsd-11-stable/sys/fs/nandfs/
H A Dnandfs.h186 struct cv nd_sync_cv;
188 struct cv nd_clean_cv;
/freebsd-11-stable/sys/i386/i386/
H A Dbios.c82 u_int8_t ck, *cv; local
95 for (cv = (u_int8_t *)sdh, ck = 0, i = 0; i < (sdh->len * 16); i++) {
96 ck += cv[i];
133 for (cv = (u_int8_t *)pt, ck = 0, i = 0; i < pt->len; i++) {
134 ck += cv[i];
/freebsd-11-stable/crypto/openssl/apps/
H A Dca.c1645 CONF_VALUE *cv; local
1742 cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1743 if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1746 cv->name);
1766 if (strcmp(cv->value, "optional") == 0) {
1769 } else if (strcmp(cv->value, "supplied") == 0) {
1773 cv->name);
1777 } else if (strcmp(cv->value, "match") == 0) {
1783 cv->name);
1794 cv
2220 CONF_VALUE *cv = NULL; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_sendfile.c93 struct cv cv; member in struct:sendfile_sync
148 cv_signal(&sfs->cv);
185 cv_signal(&sfs->cv);
560 cv_init(&sfs->cv, "sendfile");
903 cv_wait(&sfs->cv, &sfs->mtx);
905 cv_destroy(&sfs->cv);
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dtroff.cpp354 distance cv = c - s; local
360 s.x, s.y, cv.x, cv.y, ev.x, ev.y);
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dchannel.h114 struct cv intr_cv;
123 * wait on this cv for previous operation to finish.
125 struct cv cv; member in struct:pcm_channel
/freebsd-11-stable/sys/dev/tpm/
H A Dtpm20.h115 struct cv buf_cv;
/freebsd-11-stable/sys/dev/iser/
H A Dicl_iser.h400 struct cv flush_cv;
436 struct cv up_cv;
/freebsd-11-stable/sys/security/audit/
H A Daudit_private.h358 extern struct cv audit_watermark_cv;
359 extern struct cv audit_worker_cv;
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h330 extern void cv_init(kcondvar_t *cv, char *name, int type, void *arg);
331 extern void cv_destroy(kcondvar_t *cv);
332 extern void cv_wait(kcondvar_t *cv, kmutex_t *mp);
333 extern clock_t cv_timedwait(kcondvar_t *cv, kmutex_t *mp, clock_t abstime);
336 extern void cv_signal(kcondvar_t *cv);
337 extern void cv_broadcast(kcondvar_t *cv);

Completed in 209 milliseconds

123456