Searched refs:cv (Results 1 - 25 of 121) sorted by last modified time

12345

/freebsd-9.3-release/crypto/openssl/crypto/conf/
H A Dcnf_save.c62 static void print_conf(CONF_VALUE *cv);
79 static void print_conf(CONF_VALUE *cv) argument
90 if (cv->name != NULL)
93 printf("[ %s ]\n", cv->section);
94 s = (STACK *) cv->value;
/freebsd-9.3-release/crypto/openssl/apps/
H A Dca.c1608 CONF_VALUE *cv; local
1703 cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1704 if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1707 cv->name);
1727 if (strcmp(cv->value, "optional") == 0) {
1730 } else if (strcmp(cv->value, "supplied") == 0) {
1734 cv->name);
1738 } else if (strcmp(cv->value, "match") == 0) {
1744 cv->name);
1755 cv
2171 CONF_VALUE *cv = NULL; local
[all...]
/freebsd-9.3-release/usr.sbin/pkg/
H A Dconfig.c332 struct config_value *cv; local
398 cv = malloc(sizeof(struct config_value));
399 cv->value =
401 STAILQ_INSERT_TAIL(temp_config[i].list, cv,
547 struct config_value *cv; local
562 cv =
564 cv->value =
566 STAILQ_INSERT_TAIL(c[i].list, cv,
590 cv = malloc(sizeof(struct config_value));
591 cv
[all...]
/freebsd-9.3-release/contrib/file/src/
H A Dreadcdf.c70 static const struct cv { struct
92 cdf_clsid_to_mime(const uint64_t clsid[2], const struct cv *cv) argument
95 for (i = 0; cv[i].mime != NULL; i++) {
96 if (clsid[0] == cv[i].clsid[0] && clsid[1] == cv[i].clsid[1])
97 return cv[i].mime;
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c291 cv_init(kcondvar_t *cv, char *name, int type, void *arg) argument
293 VERIFY(cond_init(cv, name, NULL) == 0);
297 cv_destroy(kcondvar_t *cv) argument
299 VERIFY(cond_destroy(cv) == 0);
303 cv_wait(kcondvar_t *cv, kmutex_t *mp) argument
307 int ret = cond_wait(cv, &mp->m_lock);
313 cv_timedwait(kcondvar_t *cv, kmutex_t *mp, clock_t abstime) argument
340 error = pthread_cond_timedwait(cv, &mp->m_lock, &ts);
356 cv_timedwait_hires(kcondvar_t *cv, kmutex_t *mp, hrtime_t tim, hrtime_t res, argument
375 error = pthread_cond_timedwait(cv,
390 cv_signal(kcondvar_t *cv) argument
396 cv_broadcast(kcondvar_t *cv) argument
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h318 extern void cv_init(kcondvar_t *cv, char *name, int type, void *arg);
319 extern void cv_destroy(kcondvar_t *cv);
320 extern void cv_wait(kcondvar_t *cv, kmutex_t *mp);
321 extern clock_t cv_timedwait(kcondvar_t *cv, kmutex_t *mp, clock_t abstime);
324 extern void cv_signal(kcondvar_t *cv);
325 extern void cv_broadcast(kcondvar_t *cv);
/freebsd-9.3-release/lib/libiconv_modules/iconv_none/
H A Dcitrus_iconv_none.c83 _citrus_iconv_none_iconv_init_context(struct _citrus_iconv *cv) argument
86 cv->cv_closure = NULL;
92 _citrus_iconv_none_iconv_uninit_context(struct _citrus_iconv *cv __unused)
/freebsd-9.3-release/lib/libiconv_modules/iconv_std/
H A Dcitrus_iconv_std.c420 _citrus_iconv_std_iconv_init_context(struct _citrus_iconv *cv) argument
422 const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure;
450 cv->cv_closure = (void *)sc;
456 _citrus_iconv_std_iconv_uninit_context(struct _citrus_iconv *cv) argument
459 free(cv->cv_closure);
463 _citrus_iconv_std_iconv_convert(struct _citrus_iconv * __restrict cv, argument
468 const struct _citrus_iconv_std_shared *is = cv->cv_shared->ci_closure;
469 struct _citrus_iconv_std_context *sc = cv->cv_closure;
522 *inbytes, &szrin, cv->cv_shared->ci_hooks);
549 !cv
[all...]
/freebsd-9.3-release/lib/libkse/test/
H A Dmutex_d.c566 pthread_cond_t *cv)
572 states[id].cmd.cond = cv;
647 pthread_cond_t cv; local
720 assert (pthread_cond_init (&cv, &cattr) == 0);
721 send_mutex_cv_cmd (0, CMD_WAIT_FOR_SIGNAL, &mutex, &cv);
725 pthread_cond_signal (&cv);
565 send_mutex_cv_cmd(int id, thread_cmd_id_t cmd, pthread_mutex_t *m, pthread_cond_t *cv) argument
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_cond.c141 struct pthread_cond *cv; local
155 cv = *cond;
159 THR_LOCK_RELEASE(curthread, &cv->c_lock);
162 _lock_destroy(&cv->c_lock);
168 free(cv);
267 * critical region (holding the cv
461 * critical region (holding the cv
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_mutex.c632 mutex_unlock_common(struct pthread_mutex *m, int cv) argument
671 if (!cv && m->m_flags & PMUTEX_FLAG_PRIVATE)
H A Dthr_umtx.c249 _thr_ucond_init(struct ucond *cv) argument
251 bzero(cv, sizeof(struct ucond));
255 _thr_ucond_wait(struct ucond *cv, struct umutex *m, argument
264 return _umtx_op_err(cv, UMTX_OP_CV_WAIT, flags,
269 _thr_ucond_signal(struct ucond *cv) argument
271 if (!cv->c_has_waiters)
273 return _umtx_op_err(cv, UMTX_OP_CV_SIGNAL, 0, NULL, NULL);
277 _thr_ucond_broadcast(struct ucond *cv) argument
279 if (!cv->c_has_waiters)
281 return _umtx_op_err(cv, UMTX_OP_CV_BROADCAS
[all...]
H A Dthr_umtx.h58 int _thr_ucond_wait(struct ucond *cv, struct umutex *m,
60 void _thr_ucond_init(struct ucond *cv) __hidden;
61 int _thr_ucond_signal(struct ucond *cv) __hidden;
62 int _thr_ucond_broadcast(struct ucond *cv) __hidden;
/freebsd-9.3-release/lib/libc/iconv/
H A Dcitrus_iconv.c261 struct _citrus_iconv *cv; local
292 cv = malloc(sizeof(*cv));
293 if (cv == NULL) {
298 *rcv = cv;
315 _citrus_iconv_close(struct _citrus_iconv *cv) argument
318 if (cv) {
319 (*cv->cv_shared->ci_ops->io_uninit_context)(cv);
320 release_shared(cv
[all...]
H A Dcitrus_iconv.h54 _citrus_iconv_convert(struct _citrus_iconv * __restrict cv, argument
60 return (*cv->cv_shared->ci_ops->io_convert)(cv, in, inbytes, out,
H A Diconv.c278 struct _citrus_iconv *cv; local
284 cv = (struct _citrus_iconv *)(void *)cd;
295 convname = cv->cv_shared->ci_convname;
310 *i = cv->cv_shared->ci_discard_ilseq ? 1 : 0;
313 cv->cv_shared->ci_discard_ilseq = *i;
316 cv->cv_shared->ci_hooks = hooks;
/freebsd-9.3-release/usr.sbin/pciconf/
H A Dpciconf.c533 struct pci_vendor_info *cv; local
547 cv = NULL;
574 if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
579 if ((cv->desc = strdup(str)) == NULL) {
580 free(cv);
585 cv->id = id;
586 TAILQ_INIT(&cv->devs);
587 TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
595 if (cv == NULL) {
611 TAILQ_INSERT_TAIL(&cv
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
112 $cv = ord($c) - ord('0');
113 $cv -= ord('a') - ord('9') - 1 if $cv > 9;
114 $right = $cv unless $right < $cv;
115 $bits = $cv+1 unless $bits > $cv+1;
/freebsd-9.3-release/contrib/tcsh/
H A Ded.screen.c522 char *cap, *scap, *cv; local
557 cv = strsave(short2str(*v));
558 cleanup_push(cv, xfree);
559 if (strcmp(cv, "tabs") == 0) {
564 else if (strcmp(cv, "meta") == 0) {
569 else if (strcmp(cv, "xn") == 0) {
574 else if (strcmp(cv, "am") == 0) {
579 else if (strcmp(cv, "baud") == 0) {
590 else if (strcmp(cv, "rows") == 0 || strcmp(cv, "line
[all...]
/freebsd-9.3-release/contrib/libc++/src/
H A Dmutex.cpp216 static pthread_cond_t cv = PTHREAD_COND_INITIALIZER; variable
223 pthread_cond_wait(&cv, &mut);
236 pthread_cond_broadcast(&cv);
244 pthread_cond_broadcast(&cv);
H A Dthread.cpp168 void notify_all_at_thread_exit(condition_variable* cv, mutex* m);
189 __thread_struct_imp::notify_all_at_thread_exit(condition_variable* cv, mutex* m) argument
191 notify_.push_back(pair<condition_variable*, mutex*>(cv, m));
214 __thread_struct::notify_all_at_thread_exit(condition_variable* cv, mutex* m) argument
216 __p_->notify_all_at_thread_exit(cv, m);
/freebsd-9.3-release/contrib/nvi/perl_api/
H A Dperl.xs418 extern void boot_DynaLoader _((CV* cv));
419 extern void boot_VI _((CV* cv));
/freebsd-9.3-release/contrib/ncurses/progs/
H A Ddump_entry.c749 char *cv = _nc_infotocap(name, srccap, params); local
751 if (cv == 0) {
772 sprintf(buffer, "%s=%s", name, cv);
/freebsd-9.3-release/contrib/ncurses/include/
H A DCaps451 row_address vpa str cv - - -B-GE* vertical position #1 absolute (P)
H A DCaps.aix4451 row_address vpa str cv - - -B-GE* vertical position #1 absolute (P)

Completed in 274 milliseconds

12345