Searched refs:cond (Results 1 - 25 of 252) sorted by relevance

1234567891011

/macosx-10.10.1/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_cond_broadcast.c85 dcethread_cond_broadcast(dcethread_cond *cond) argument
87 return dcethread__set_errno(pthread_cond_broadcast(cond));
91 dcethread_cond_broadcast_throw(dcethread_cond *cond) argument
93 DCETHREAD_WRAP_THROW(dcethread_cond_broadcast(cond));
H A Ddcethread_cond_destroy.c85 dcethread_cond_destroy(dcethread_cond *cond) argument
87 return dcethread__set_errno(pthread_cond_destroy(cond));
91 dcethread_cond_destroy_throw(dcethread_cond *cond) argument
93 DCETHREAD_WRAP_THROW(dcethread_cond_destroy(cond));
H A Ddcethread_cond_signal.c85 dcethread_cond_signal(dcethread_cond *cond) argument
87 return dcethread__set_errno(pthread_cond_signal(cond));
91 dcethread_cond_signal_throw(dcethread_cond *cond) argument
93 DCETHREAD_WRAP_THROW(dcethread_cond_signal(cond));
H A Ddcethread_cond_init.c85 dcethread_cond_init(dcethread_cond *cond, dcethread_condattr* attr) argument
87 return dcethread__set_errno(pthread_cond_init(cond, attr));
91 dcethread_cond_init_throw(dcethread_cond *cond, dcethread_condattr* attr) argument
93 DCETHREAD_WRAP_THROW(dcethread_cond_init(cond, attr));
/macosx-10.10.1/apr-32/apr/apr/locks/win32/
H A Dthread_cond.c29 apr_thread_cond_t *cond = data; local
30 CloseHandle(cond->semaphore);
31 DeleteCriticalSection(&cond->csection);
35 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
40 cv = apr_pcalloc(pool, sizeof(**cond));
50 *cond = cv;
59 APR_DECLARE(apr_status_t) apr_thread_cond_destroy(apr_thread_cond_t *cond)
61 return apr_pool_cleanup_run(cond->pool, cond, thread_cond_cleanup);
64 static APR_INLINE apr_status_t _thread_cond_timedwait(apr_thread_cond_t *cond, argument
[all...]
/macosx-10.10.1/sudo-73/src/
H A Dsudoers.man.pl4 $cond = -1;
8 if ($cond == -1) {
10 $cond = 0;
24 $cond = 1;
27 $cond = 1;
30 $cond = 1;
31 } elsif ($cond && /^\.(Sh|SS|IP|PP)/) {
33 $cond = 0;
H A Dsudo.man.pl5 $cond = -1;
9 if ($cond == -1) {
11 $cond = 0;
17 $cond = 1;
18 } elsif ($cond && /^\.(Sh|SS|IP|PP)/) {
20 $cond = 0;
/macosx-10.10.1/apr-32/apr/apr/locks/netware/
H A Dthread_cond.c29 apr_thread_cond_t *cond = (apr_thread_cond_t *)data; local
31 NXCondFree(cond->cond);
35 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
47 new_cond->cond = NXCondAlloc(NULL);
49 if(new_cond->cond == NULL)
55 *cond = new_cond;
59 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
62 if (NXCondWait(cond->cond, mute
[all...]
/macosx-10.10.1/IOFWDVComponents-207.4.1/MacOS9Src/
H A DDebugMacros.h65 #define AssertionMessage(cond, file, line, handler) \
66 "\pAssertion \"" #cond "\" failed in " #file " at line " #line " goto " #handler
68 #define AssertionFailed(cond, file, line, handler) \
69 OXCART_DEBUGSTR( (StringPtr) AssertionMessage (cond, file, line, handler) );
71 #define AssertionMessageString(cond, file, line, handler) \
72 "\pAssertion \"" #cond "\" failed in " #file " at line " #line " goto " #handler " value -> "
74 #define AssertionFailedString(cond, file, line, handler, str) \
77 PStrCopy( mystr21, AssertionMessageString (cond, file, line, handler)); \
83 #define FailWithVal(cond, handler, num) \
84 if (cond) { \
[all...]
/macosx-10.10.1/libresolv-57/
H A Dres_debug.h22 # define Dprint(cond, args) /*empty*/
23 # define DprintQ(cond, args, query, size) /*empty*/
27 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
28 # define DprintQ(cond, args, query, size) if (cond) {\
/macosx-10.10.1/apr-32/apr/apr/locks/unix/
H A Dthread_cond.c26 apr_thread_cond_t *cond = (apr_thread_cond_t *)data; local
29 rv = pthread_cond_destroy(&cond->cond);
38 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
48 if ((rv = pthread_cond_init(&new_cond->cond, NULL))) {
59 *cond = new_cond;
63 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
68 rv = pthread_cond_wait(&cond->cond, &mutex->mutex);
77 APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
[all...]
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dtestsslproxy6 for cond in A B C 'A|B&!C'; do
7 sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond"
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/include/isc/
H A Dassertions.h85 #define ISC_REQUIRE(cond) \
86 ((void) ((cond) || \
89 #cond), 0)))
91 #define ISC_REQUIRE(cond) ((void) 0)
95 #define ISC_ENSURE(cond) \
96 ((void) ((cond) || \
99 #cond), 0)))
101 #define ISC_ENSURE(cond) ((void) 0)
105 #define ISC_INSIST(cond) \
106 ((void) ((cond) || \
[all...]
H A Derror.h57 #define ISC_ERROR_RUNTIMECHECK(cond) \
58 ((void) ((cond) || \
59 ((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
/macosx-10.10.1/ntp-92/lib/isc/include/isc/
H A Dassertions.h83 #define ISC_REQUIRE(cond) \
84 ((void) ((cond) || \
87 #cond), 0)))
89 #define ISC_REQUIRE(cond) ((void) 0)
93 #define ISC_ENSURE(cond) \
94 ((void) ((cond) || \
97 #cond), 0)))
99 #define ISC_ENSURE(cond) ((void) 0)
103 #define ISC_INSIST(cond) \
104 ((void) ((cond) || \
[all...]
H A Derror.h56 #define ISC_ERROR_RUNTIMECHECK(cond) \
57 ((void) ((cond) || \
58 ((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
/macosx-10.10.1/apr-32/apr/apr/locks/beos/
H A Dthread_cond.c25 apr_thread_cond_t *cond = (apr_thread_cond_t *)data; local
27 acquire_sem(cond->lock);
28 delete_sem(cond->lock);
49 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
78 *cond = new_cond;
83 static apr_status_t do_wait(apr_thread_cond_t *cond, apr_thread_mutex_t *mutex, argument
97 acquire_sem(cond->lock);
98 wait = APR_RING_FIRST(&cond->flist);
102 wait = make_waiter(cond->pool);
103 APR_RING_INSERT_TAIL(&cond
[all...]
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_thread_cond.h55 * @param cond the memory address where the newly created condition variable
59 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
69 * @param cond the condition variable on which to block.
77 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
87 * @param cond the condition variable on which to block.
96 APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
105 * @param cond the condition variable on which to produce the signal.
108 APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond); variable
114 * @param cond the condition variable on which to produce the broadcast.
117 APR_DECLARE(apr_status_t) apr_thread_cond_broadcast(apr_thread_cond_t *cond); variable
123 APR_DECLARE(apr_status_t) apr_thread_cond_destroy(apr_thread_cond_t *cond); variable
[all...]
/macosx-10.10.1/apr-32/apr/apr/locks/os2/
H A Dthread_cond.c26 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
32 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
38 APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
44 APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond)
49 APR_DECLARE(apr_status_t) apr_thread_cond_broadcast(apr_thread_cond_t *cond)
54 APR_DECLARE(apr_status_t) apr_thread_cond_destroy(apr_thread_cond_t *cond)
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dsanity.c63 atf_sanity_inv(const char *file, int line, const char *cond) argument
65 fail("Invariant check failed at %s:%d: %s", file, line, cond);
69 atf_sanity_pre(const char *file, int line, const char *cond) argument
71 fail("Precondition check failed at %s:%d: %s", file, line, cond);
75 atf_sanity_post(const char *file, int line, const char *cond) argument
77 fail("Postcondition check failed at %s:%d: %s", file, line, cond);
/macosx-10.10.1/apr-32/apr/apr/include/arch/netware/
H A Dapr_arch_thread_cond.h25 NXCond_t *cond; member in struct:apr_thread_cond_t
/macosx-10.10.1/IOAudioFamily-200.6/
H A DIOAudioDebug.h57 #define AssertionMessage( cond, file, line ) \
58 "assert \"" #cond "\" failed in " #file " at line " #line
60 #define AssertionFailed( cond, file, line ) \
61 panic(AssertionMessage( cond, file, line ));
63 #define assert( cond ) \
64 if( !(cond) ) { \
65 AssertionFailed( cond, __FILE__, __LINE__ ) \
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Dcondition.c32 isc_condition_init(isc_condition_t *cond) { argument
35 REQUIRE(cond != NULL);
37 cond->waiters = 0;
46 cond->events[LSIGNAL] = h;
52 ISC_LIST_INIT(cond->threadlist);
98 find_thread_condition(unsigned long thrd, isc_condition_t *cond, argument
108 for (threadcond = ISC_LIST_HEAD(cond->threadlist);
121 return (register_thread(thrd, cond, threadcondp));
125 isc_condition_signal(isc_condition_t *cond) { argument
131 REQUIRE(cond !
142 isc_condition_broadcast(isc_condition_t *cond) argument
171 isc_condition_destroy(isc_condition_t *cond) argument
206 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) argument
235 isc_condition_wait(isc_condition_t *cond, isc_mutex_t *mutex) argument
240 isc_condition_waituntil(isc_condition_t *cond, isc_mutex_t *mutex, isc_time_t *t) argument
[all...]
/macosx-10.10.1/ntp-92/lib/isc/win32/
H A Dcondition.c32 isc_condition_init(isc_condition_t *cond) { argument
35 REQUIRE(cond != NULL);
37 cond->waiters = 0;
46 cond->events[LSIGNAL] = h;
52 ISC_LIST_INIT(cond->threadlist);
98 find_thread_condition(unsigned long thrd, isc_condition_t *cond, argument
108 for (threadcond = ISC_LIST_HEAD(cond->threadlist);
121 return (register_thread(thrd, cond, threadcondp));
125 isc_condition_signal(isc_condition_t *cond) { argument
131 REQUIRE(cond !
142 isc_condition_broadcast(isc_condition_t *cond) argument
171 isc_condition_destroy(isc_condition_t *cond) argument
206 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) argument
235 isc_condition_wait(isc_condition_t *cond, isc_mutex_t *mutex) argument
240 isc_condition_waituntil(isc_condition_t *cond, isc_mutex_t *mutex, isc_time_t *t) argument
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap_r/
H A Dthr_cthreads.c80 ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
82 condition_init( cond );
87 ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cond )
89 condition_clear( cond );
94 ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
96 condition_signal( cond );
101 ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
103 condition_broadcast( cond );
108 ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond, argument
111 condition_wait( cond, mute
[all...]

Completed in 308 milliseconds

1234567891011