Symbol: cv
crypto/libressl/apps/openssl/ca.c
1743
CONF_VALUE *cv;
crypto/libressl/apps/openssl/ca.c
1842
cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
crypto/libressl/apps/openssl/ca.c
1843
if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
crypto/libressl/apps/openssl/ca.c
1846
cv->name);
crypto/libressl/apps/openssl/ca.c
1870
if (strcmp(cv->value, "optional") == 0) {
crypto/libressl/apps/openssl/ca.c
1873
} else if (strcmp(cv->value, "supplied") == 0) {
crypto/libressl/apps/openssl/ca.c
1877
cv->name);
crypto/libressl/apps/openssl/ca.c
1881
} else if (strcmp(cv->value, "match") == 0) {
crypto/libressl/apps/openssl/ca.c
1887
cv->name);
crypto/libressl/apps/openssl/ca.c
1898
cv->name);
crypto/libressl/apps/openssl/ca.c
1918
cv->name, ((str2 == NULL) ?
crypto/libressl/apps/openssl/ca.c
1927
cv->value);
crypto/libressl/apps/openssl/ca.c
2321
CONF_VALUE *cv = NULL;
crypto/libressl/apps/openssl/ca.c
2370
cv = sk_CONF_VALUE_value(sk, i);
crypto/libressl/apps/openssl/ca.c
2371
type = cv->name;
crypto/libressl/apps/openssl/ca.c
2376
for (buf = cv->name; *buf; buf++) {
crypto/libressl/apps/openssl/ca.c
2385
buf = cv->value;
crypto/libressl/apps/openssl/ca.c
2388
spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
lib/i18n_module/iconv_none/citrus_iconv_none.c
83
_citrus_iconv_none_iconv_init_context(struct _citrus_iconv *cv)
lib/i18n_module/iconv_none/citrus_iconv_none.c
86
cv->cv_closure = NULL;
lib/i18n_module/iconv_none/citrus_iconv_none.c
92
_citrus_iconv_none_iconv_uninit_context(struct _citrus_iconv *cv __unused)
lib/i18n_module/iconv_std/citrus_iconv_std.c
420
_citrus_iconv_std_iconv_init_context(struct _citrus_iconv *cv)
lib/i18n_module/iconv_std/citrus_iconv_std.c
422
const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure;
lib/i18n_module/iconv_std/citrus_iconv_std.c
450
cv->cv_closure = (void *)sc;
lib/i18n_module/iconv_std/citrus_iconv_std.c
456
_citrus_iconv_std_iconv_uninit_context(struct _citrus_iconv *cv)
lib/i18n_module/iconv_std/citrus_iconv_std.c
459
free(cv->cv_closure);
lib/i18n_module/iconv_std/citrus_iconv_std.c
463
_citrus_iconv_std_iconv_convert(struct _citrus_iconv * __restrict cv,
lib/i18n_module/iconv_std/citrus_iconv_std.c
468
const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure;
lib/i18n_module/iconv_std/citrus_iconv_std.c
469
struct _citrus_iconv_std_context *sc = cv->cv_closure;
lib/i18n_module/iconv_std/citrus_iconv_std.c
522
*inbytes, &szrin, cv->cv_shared->ci_hooks);
lib/i18n_module/iconv_std/citrus_iconv_std.c
552
if (cv->cv_shared->ci_ilseq_invalid != 0) {
lib/i18n_module/iconv_std/citrus_iconv_std.c
559
!cv->cv_shared->ci_discard_ilseq) &&
lib/i18n_module/iconv_std/citrus_iconv_std.c
563
&szrout, cv->cv_shared->ci_hooks);
lib/i18n_module/iconv_std/citrus_iconv_std.c
574
cv->cv_shared->ci_hooks);
lib/libc/citrus/citrus_iconv.c
280
struct _citrus_iconv *cv = NULL;
lib/libc/citrus/citrus_iconv.c
319
cv = malloc(sizeof(*cv));
lib/libc/citrus/citrus_iconv.c
320
if (cv == NULL) {
lib/libc/citrus/citrus_iconv.c
325
*rcv = cv;
lib/libc/citrus/citrus_iconv.c
331
free(cv);
lib/libc/citrus/citrus_iconv.c
342
_citrus_iconv_close(struct _citrus_iconv *cv)
lib/libc/citrus/citrus_iconv.c
345
if (cv) {
lib/libc/citrus/citrus_iconv.c
346
(*cv->cv_shared->ci_ops->io_uninit_context)(cv);
lib/libc/citrus/citrus_iconv.c
347
release_shared(cv->cv_shared);
lib/libc/citrus/citrus_iconv.c
348
free(cv);
lib/libc/citrus/citrus_iconv.h
54
_citrus_iconv_convert(struct _citrus_iconv * __restrict cv,
lib/libc/citrus/citrus_iconv.h
60
return (*cv->cv_shared->ci_ops->io_convert)(cv, in, inbytes, out,
lib/libc/iconv/iconv.c
262
struct _citrus_iconv *cv;
lib/libc/iconv/iconv.c
268
cv = (struct _citrus_iconv *)(void *)cd;
lib/libc/iconv/iconv.c
279
convname = cv->cv_shared->ci_convname;
lib/libc/iconv/iconv.c
296
*i = cv->cv_shared->ci_discard_ilseq ? 1 : 0;
lib/libc/iconv/iconv.c
299
cv->cv_shared->ci_discard_ilseq = *i;
lib/libc/iconv/iconv.c
302
cv->cv_shared->ci_hooks = hooks;
lib/libc/iconv/iconv.c
308
*i = cv->cv_shared->ci_ilseq_invalid ? 1 : 0;
lib/libc/iconv/iconv.c
311
cv->cv_shared->ci_ilseq_invalid = *i;
lib/libthread_xu/thread/thr_cond.c
156
pthread_cond_t cv;
lib/libthread_xu/thread/thr_cond.c
176
cv = *cond;
lib/libthread_xu/thread/thr_cond.c
180
THR_LOCK_RELEASE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
188
__free(cv);
lib/libthread_xu/thread/thr_cond.c
208
pthread_cond_t cv;
lib/libthread_xu/thread/thr_cond.c
210
cv = *info->cond;
lib/libthread_xu/thread/thr_cond.c
211
THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
212
cond_log("cond_cancel %p\n", cv);
lib/libthread_xu/thread/thr_cond.c
216
cond_log("cond_cancel %p: info %p\n", cv, info);
lib/libthread_xu/thread/thr_cond.c
217
TAILQ_REMOVE(&cv->c_waitlist, info, entry);
lib/libthread_xu/thread/thr_cond.c
220
THR_LOCK_RELEASE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
237
pthread_cond_t cv;
lib/libthread_xu/thread/thr_cond.c
253
cv = *cond;
lib/libthread_xu/thread/thr_cond.c
254
THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
257
cond_log("cond_wait_common %p (failedB %d)\n", cv, ret);
lib/libthread_xu/thread/thr_cond.c
258
THR_LOCK_RELEASE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
266
TAILQ_INSERT_TAIL(&cv->c_waitlist, &info, entry);
lib/libthread_xu/thread/thr_cond.c
273
THR_LOCK_RELEASE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
276
clock_gettime(cv->c_clockid, &ts);
lib/libthread_xu/thread/thr_cond.c
287
cv->c_clockid);
lib/libthread_xu/thread/thr_cond.c
292
cv->c_clockid);
lib/libthread_xu/thread/thr_cond.c
298
THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
306
TAILQ_REMOVE(&cv->c_waitlist, &info, entry);
lib/libthread_xu/thread/thr_cond.c
311
THR_LOCK_RELEASE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
313
cond_log("cond_wait_common %p (doneA)\n", cv);
lib/libthread_xu/thread/thr_cond.c
317
cond_log("cond_wait_common %p (failed %d)\n", cv, ret);
lib/libthread_xu/thread/thr_cond.c
319
cond_log("cond_wait_common %p (doneB)\n", cv);
lib/libthread_xu/thread/thr_cond.c
365
pthread_cond_t cv;
lib/libthread_xu/thread/thr_cond.c
380
cv = *cond;
lib/libthread_xu/thread/thr_cond.c
382
THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
lib/libthread_xu/thread/thr_cond.c
383
while ((info = TAILQ_FIRST(&cv->c_waitlist)) != NULL) {
lib/libthread_xu/thread/thr_cond.c
385
TAILQ_REMOVE(&cv->c_waitlist, info, entry);
lib/libthread_xu/thread/thr_cond.c
391
THR_LOCK_RELEASE(curthread, &cv->c_lock);
sbin/fsck_hammer2/reconstruct.c
409
uint32_t cv;
sbin/fsck_hammer2/reconstruct.c
457
cv = hammer2_icrc32(media, media_bytes);
sbin/fsck_hammer2/reconstruct.c
458
if (bscan->check.iscsi32.value != cv) {
sbin/fsck_hammer2/reconstruct.c
460
bscan->check.iscsi32.value = cv;
sbin/fsck_hammer2/reconstruct.c
490
cv = hammer2_icrc32(media, media_bytes);
sbin/fsck_hammer2/reconstruct.c
491
if (bscan->check.freemap.icrc32 != cv) {
sbin/fsck_hammer2/reconstruct.c
493
bscan->check.freemap.icrc32 = cv;
sbin/fsck_hammer2/test.c
798
uint32_t cv;
sbin/fsck_hammer2/test.c
933
cv = hammer2_icrc32(&media, bytes);
sbin/fsck_hammer2/test.c
934
if (bref->check.iscsi32.value != cv) {
sbin/fsck_hammer2/test.c
969
cv = hammer2_icrc32(&media, bytes);
sbin/fsck_hammer2/test.c
970
if (bref->check.freemap.icrc32 != cv) {
sbin/hammer2/cmd_debug.c
773
uint32_t cv;
sbin/hammer2/cmd_debug.c
946
cv = hammer2_icrc32(&media, bytes);
sbin/hammer2/cmd_debug.c
947
if (bref->check.iscsi32.value != cv) {
sbin/hammer2/cmd_debug.c
951
cv);
sbin/hammer2/cmd_debug.c
955
check_str, comp_str, cv);
sbin/hammer2/cmd_debug.c
986
cv = hammer2_icrc32(&media, bytes);
sbin/hammer2/cmd_debug.c
987
if (bref->check.freemap.icrc32 != cv) {
sbin/hammer2/cmd_debug.c
991
cv);
sbin/hammer2/cmd_debug.c
995
check_str, comp_str, cv);
sbin/hammer2/cmd_info.c
390
uint32_t cv;
sbin/hammer2/cmd_info.c
438
cv = hammer2_icrc32(&media, bytes);
sbin/hammer2/cmd_info.c
439
if (bref->check.iscsi32.value != cv) {
sbin/hammer2/cmd_info.c
443
cv);
sbin/hammer2/cmd_info.c
458
cv = hammer2_icrc32(&media, bytes);
sbin/hammer2/cmd_info.c
459
if (bref->check.freemap.icrc32 != cv) {
sbin/hammer2/cmd_info.c
463
cv);
sbin/hammer2/cmd_recover.c
1484
uint32_t cv;
sbin/hammer2/cmd_recover.c
1503
cv = hammer2_icrc32(data, bytes);
sbin/hammer2/cmd_recover.c
1504
if (bref->check.iscsi32.value == cv) {
sbin/hammer2/cmd_recover.c
1526
cv = hammer2_icrc32(data, bytes);
sbin/hammer2/cmd_recover.c
1527
if (bref->check.freemap.icrc32 == cv) {
sys/bus/u4b/controller/xhci.h
501
struct cv sc_cmd_cv;
sys/bus/u4b/serial/ufoma.c
162
struct cv sc_cv;
sys/bus/u4b/usb_busdma.c
472
cv_broadcast(uptag->cv);
sys/bus/u4b/usb_busdma.c
558
cv_wait(uptag->cv, uptag->lock);
sys/bus/u4b/usb_busdma.c
643
cv_wait(uptag->cv, uptag->lock);
sys/bus/u4b/usb_busdma.c
821
cv_init(udpt->cv, "USB DMA CV");
sys/bus/u4b/usb_busdma.c
861
cv_destroy(udpt->cv);
sys/bus/u4b/usb_busdma.h
106
struct cv cv[1]; /* internal condition variable */
sys/bus/u4b/usb_dev.h
106
struct cv cv_io;
sys/bus/u4b/usb_dev.h
107
struct cv cv_drain;
sys/bus/u4b/usb_device.h
192
struct cv ctrlreq_cv;
sys/bus/u4b/usb_device.h
193
struct cv ref_cv;
sys/bus/u4b/usb_msctest.c
153
struct cv cv;
sys/bus/u4b/usb_msctest.c
271
cv_signal(&sc->cv);
sys/bus/u4b/usb_msctest.c
555
cv_wait(&sc->cv, &sc->lock);
sys/bus/u4b/usb_msctest.c
585
cv_wait(&sc->cv, &sc->lock);
sys/bus/u4b/usb_msctest.c
662
cv_init(&sc->cv, "WBBB");
sys/bus/u4b/usb_msctest.c
693
cv_destroy(&sc->cv);
sys/bus/u4b/usb_process.h
52
struct cv up_cv;
sys/bus/u4b/usb_process.h
53
struct cv up_drain;
sys/bus/u4b/usb_transfer.h
170
struct cv cv_drain;
sys/bus/u4b/usbdi_util.h
29
struct cv;
sys/bus/u4b/uvc/uvc_buf.h
67
struct cv io_cv;
sys/dev/crypto/tpm/tpm20.h
113
struct cv buf_cv;
sys/dev/disk/dm/dm.h
138
struct cv dev_cv; /* cv for between ioctl synchronization */
sys/dev/misc/cuse/cuse.c
111
struct cv cv;
sys/dev/misc/cuse/cuse.c
1134
error = cv_wait_sig(&pcs->cv, &pcs->mtx);
sys/dev/misc/cuse/cuse.c
1166
cv_signal(&pccmd->cv);
sys/dev/misc/cuse/cuse.c
142
struct cv cv;
sys/dev/misc/cuse/cuse.c
1487
cv_destroy(&pccmd->cv);
sys/dev/misc/cuse/cuse.c
1553
cv_init(&pccmd->cv, "cuse-client-cv");
sys/dev/misc/cuse/cuse.c
554
cv_broadcast(&pccmd->cv);
sys/dev/misc/cuse/cuse.c
583
cv_signal(&pcs->cv);
sys/dev/misc/cuse/cuse.c
602
cv_signal(&pcs->cv);
sys/dev/misc/cuse/cuse.c
624
cv_wait(&pccmd->cv, &pcs->mtx);
sys/dev/misc/cuse/cuse.c
626
error = cv_wait_sig(&pccmd->cv, &pcs->mtx);
sys/dev/misc/cuse/cuse.c
639
cv_signal(&pccmd->cv);
sys/dev/misc/cuse/cuse.c
648
cv_wait(&pccmd->cv, &pcs->mtx);
sys/dev/misc/cuse/cuse.c
727
cv_destroy(&pcs->cv);
sys/dev/misc/cuse/cuse.c
789
cv_init(&pcs->cv, "cuse-server-cv");
sys/dev/misc/cuse/cuse.c
875
cv_signal(&pccmd->cv);
sys/dev/misc/cuse/cuse.c
985
cv_signal(&pccmd->cv);
sys/dev/misc/ipmi/ipmivars.h
109
struct cv ipmi_request_added;
sys/dev/sound/midi/sequencer.c
127
struct cv empty_cv, reset_cv, in_cv, out_cv, state_cv, th_cv;
sys/dev/sound/pcm/channel.c
251
cv_init(&c->cv, "pcmchn");
sys/dev/sound/pcm/channel.c
259
CHN_BROADCAST(&c->cv);
sys/dev/sound/pcm/channel.c
262
cv_destroy(&c->cv);
sys/dev/sound/pcm/channel.h
115
struct cv intr_cv;
sys/dev/sound/pcm/channel.h
126
struct cv cv;
sys/dev/sound/pcm/dsp.c
1926
cv_wait(&wrch->cv, wrch->lock);
sys/dev/sound/pcm/dsp.c
1950
cv_wait(&wrch->cv, wrch->lock);
sys/dev/sound/pcm/dsp.c
900
CHN_BROADCAST(&(*ch)->cv);
sys/dev/sound/pcm/sound.c
1038
cv_init(&d->cv, device_get_nameunit(dev));
sys/dev/sound/pcm/sound.c
1248
cv_destroy(&d->cv);
sys/dev/sound/pcm/sound.h
424
struct cv cv;
sys/dev/sound/pcm/sound.h
451
cv_wait(&(x)->cv, (x)->lock); \
sys/dev/sound/pcm/sound.h
471
if ((x)->cv.cv_waiters != 0) { \
sys/dev/sound/pcm/sound.h
472
if ((x)->cv.cv_waiters > 1 && snd_verbose > 3) \
sys/dev/sound/pcm/sound.h
477
(x)->cv.cv_waiters); \
sys/dev/sound/pcm/sound.h
478
cv_broadcast(&(x)->cv); \
sys/dev/sound/pcm/sound.h
554
cv_wait(&(x)->cv, (x)->lock); \
sys/dev/sound/pcm/sound.h
571
if ((x)->cv.cv_waiters != 0) \
sys/dev/sound/pcm/sound.h
572
cv_broadcast(&(x)->cv); \
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
225
#define ena_wait_event_t struct { struct cv wq; struct lock lock; }
sys/kern/kern_clock.c
899
sysclock_t cv;
sys/kern/kern_clock.c
911
cv = sys_cputimer->count();
sys/kern/kern_clock.c
917
(cv - scv), 1L << 32);
sys/kern/kern_clock.c
923
gd->statint.gd_statcv = cv;
sys/kern/kern_condvar.c
15
cv_destroy(struct cv *c)
sys/kern/kern_condvar.c
21
_cv_timedwait(struct cv *c, struct lock *lk, int timo, int wakesig)
sys/kern/kern_condvar.c
50
_cv_mtx_timedwait(struct cv *c, struct mtx *mtx, int timo, int wakesig)
sys/kern/kern_condvar.c
7
cv_init(struct cv *c, const char *desc)
sys/kern/kern_condvar.c
76
_cv_signal(struct cv *c, int broadcast)
sys/kern/kern_condvar.c
93
cv_has_waiters(const struct cv *c)
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
200
wlan_cv_init(struct cv *cv, const char *desc)
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
202
cv->cv_desc = desc;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
203
cv->cv_waiters = 0;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
207
wlan_cv_timedwait(struct cv *cv, int ticks)
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
211
++cv->cv_waiters;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
212
error = wlan_serialize_sleep(cv, 0, cv->cv_desc, ticks);
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
217
wlan_cv_wait(struct cv *cv)
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
219
++cv->cv_waiters;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
220
wlan_serialize_sleep(cv, 0, cv->cv_desc, 0);
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
224
wlan_cv_signal(struct cv *cv, int broadcast)
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
226
if (cv->cv_waiters) {
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
228
cv->cv_waiters = 0;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
229
wakeup(cv);
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
231
--cv->cv_waiters;
sys/netproto/802_11/wlan/ieee80211_dragonfly.c
232
wakeup_one(cv);
sys/sys/condvar.h
15
void cv_init(struct cv *, const char *desc);
sys/sys/condvar.h
16
void cv_destroy(struct cv *);
sys/sys/condvar.h
18
int _cv_timedwait(struct cv *, struct lock *, int timo, int wakesig);
sys/sys/condvar.h
19
int _cv_mtx_timedwait(struct cv *, struct mtx *, int timo, int wakesig);
sys/sys/condvar.h
20
void _cv_signal(struct cv *, int broadcast);
sys/sys/condvar.h
22
int cv_has_waiters(const struct cv *);
sys/sys/condvar.h
24
#define cv_wait(cv, lock) \
sys/sys/condvar.h
25
_cv_timedwait((cv), (lock), 0, 0)
sys/sys/condvar.h
26
#define cv_wait_sig(cv, lock) \
sys/sys/condvar.h
27
_cv_timedwait((cv), (lock), 0, 1)
sys/sys/condvar.h
28
#define cv_timedwait(cv, lock, timeo) \
sys/sys/condvar.h
29
_cv_timedwait((cv), (lock), (timeo), 0)
sys/sys/condvar.h
30
#define cv_timedwait_sig(cv, lock, timeo) \
sys/sys/condvar.h
31
_cv_timedwait((cv), (lock), (timeo), 1)
sys/sys/condvar.h
33
#define cv_mtx_wait(cv, mtx) \
sys/sys/condvar.h
34
_cv_mtx_timedwait((cv), (mtx), 0, 0)
sys/sys/condvar.h
35
#define cv_mtx_wait_sig(cv, mtx) \
sys/sys/condvar.h
36
_cv_mtx_timedwait((cv), (mtx), 0, 1)
sys/sys/condvar.h
37
#define cv_mtx_timedwait(cv, mtx, timeo) \
sys/sys/condvar.h
38
_cv_mtx_timedwait((cv), (mtx), (timeo), 0)
sys/sys/condvar.h
39
#define cv_mtx_timedwait_sig(cv, mtx, timeo) \
sys/sys/condvar.h
40
_cv_mtx_timedwait((cv), (mtx), (timeo), 1)
sys/sys/condvar.h
42
#define cv_signal(cv) \
sys/sys/condvar.h
43
_cv_signal((cv), 0)
sys/sys/condvar.h
44
#define cv_broadcast(cv) \
sys/sys/condvar.h
45
_cv_signal((cv), 1)
sys/sys/condvar.h
46
#define cv_broadcastpri(cv, pri) \
sys/sys/condvar.h
47
cv_broadcast((cv))
sys/vfs/autofs/autofs.h
142
struct cv sc_cv;
test/libpthread/mutex_d.c
563
pthread_cond_t *cv)
test/libpthread/mutex_d.c
569
states[id].cmd.cond = cv;
test/libpthread/mutex_d.c
644
pthread_cond_t cv;
test/libpthread/mutex_d.c
721
assert (pthread_cond_init (&cv, &cattr) == 0);
test/libpthread/mutex_d.c
722
send_mutex_cv_cmd (0, CMD_WAIT_FOR_SIGNAL, &mutex, &cv);
test/libpthread/mutex_d.c
726
pthread_cond_signal (&cv);
usr.sbin/pciconf/pciconf.c
641
struct pci_vendor_info *cv;
usr.sbin/pciconf/pciconf.c
655
cv = NULL;
usr.sbin/pciconf/pciconf.c
682
if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
usr.sbin/pciconf/pciconf.c
687
if ((cv->desc = strdup(str)) == NULL) {
usr.sbin/pciconf/pciconf.c
688
free(cv);
usr.sbin/pciconf/pciconf.c
693
cv->id = id;
usr.sbin/pciconf/pciconf.c
694
TAILQ_INIT(&cv->devs);
usr.sbin/pciconf/pciconf.c
695
TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
usr.sbin/pciconf/pciconf.c
703
if (cv == NULL) {
usr.sbin/pciconf/pciconf.c
719
TAILQ_INSERT_TAIL(&cv->devs, cd, link);