Searched refs:cond (Results 1 – 12 of 12) sorted by relevance
| /components/libc/posix/pthreads/ |
| A D | pthread_cond.c | 106 if (cond == RT_NULL) in pthread_cond_init() 120 cond->attr = *attr; in pthread_cond_init() 164 if (cond == RT_NULL) in pthread_cond_destroy() 169 if (cond->attr == -1) in pthread_cond_destroy() 188 cond->attr = -1; in pthread_cond_destroy() 222 if (cond == RT_NULL) in pthread_cond_broadcast() 224 if (cond->attr == -1) in pthread_cond_broadcast() 281 if (cond == RT_NULL) in pthread_cond_signal() 283 if (cond->attr == -1) in pthread_cond_signal() 346 sem = &(cond->sem); in _pthread_cond_timedwait() [all …]
|
| A D | pthread_barrier.c | 113 result = pthread_cond_destroy(&(barrier->cond)); in pthread_barrier_destroy() 163 pthread_cond_init(&(barrier->cond), NULL); in pthread_barrier_init() 213 pthread_cond_broadcast(&(barrier->cond)); in pthread_barrier_wait() 215 pthread_cond_wait(&(barrier->cond), &(barrier->mutex)); in pthread_barrier_wait()
|
| A D | pthread.h | 135 pthread_cond_t cond; member 236 int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr); 237 int pthread_cond_destroy(pthread_cond_t *cond); 238 int pthread_cond_broadcast(pthread_cond_t *cond); 239 int pthread_cond_signal(pthread_cond_t *cond); 241 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 242 int pthread_cond_timedwait(pthread_cond_t *cond,
|
| /components/libc/cplusplus/cpp11/gcc/ |
| A D | condition_variable.cpp | 25 void notify_all_at_thread_exit(condition_variable& cond, unique_lock<mutex> lk) in notify_all_at_thread_exit() argument 30 cond.notify_all(); in notify_all_at_thread_exit()
|
| A D | condition_variable | 220 void notify_all_at_thread_exit(condition_variable &cond, unique_lock<mutex> lk);
|
| /components/drivers/smp_call/ |
| A D | smp_call.c | 222 rt_uint8_t flags, rt_smp_cond_t cond) in _smp_call_func_cond() argument 266 if (cond && !cond(tmp_id, data)) in _smp_call_func_cond() 297 if (call_local && (!cond || cond(tmp_id, data))) in _smp_call_func_cond() 325 …c_cond(rt_ubase_t cpu_mask, rt_smp_call_cb_t func, void *data, rt_uint8_t flag, rt_smp_cond_t cond) in rt_smp_call_func_cond() argument 337 _smp_call_func_cond(oncpu, cpu_mask, func, data, flag, cond); in rt_smp_call_func_cond()
|
| /components/net/lwip/lwip-2.0.3/src/apps/snmp/ |
| A D | snmp_msg.c | 586 #define PARSE_ASSERT(cond, retValue) \ argument 587 if (!(cond)) { \ 588 LWIP_DEBUGF(SNMP_DEBUG, ("SNMP parse assertion failed!: " # cond)); \
|
| /components/net/lwip/lwip-2.1.2/src/apps/snmp/ |
| A D | snmp_msg.c | 741 #define PARSE_ASSERT(cond, retValue) \ argument 742 if (!(cond)) { \ 743 LWIP_DEBUGF(SNMP_DEBUG, ("SNMP parse assertion failed!: " # cond)); \
|
| /components/utilities/libadt/uthash/ |
| A D | uthash.h | 982 #define HASH_SELECT(hh_dst, dst, hh_src, src, cond) \ argument 994 if (cond(_elt)) { \
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 639 # sections, marked by \if <section_label> ... \endif and \cond <section_label>
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 648 # sections, marked by \if <section_label> ... \endif and \cond <section_label>
|
| A D | lwip.Doxyfile.cmake.in | 648 # sections, marked by \if <section_label> ... \endif and \cond <section_label>
|
Completed in 27 milliseconds