HomeSort by relevance Sort by last modified time
    Searched refs:_cond (Results 1 - 15 of 15) sorted by null

  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 81 #define WSBM_COND_FREE(_cond) \
83 (_cond)->func->condFree(_cond); \
85 #define WSBM_COND_WAIT(_cond, _mutex) \
86 (_cond)->func->condWait(_cond, _mutex);
87 #define WSBM_COND_BROADCAST(_cond) \
88 (_cond)->func->condBroadcast(_cond);
  /external/webrtc/src/system_wrappers/source/
condition_variable_posix.cc 50 result = pthread_cond_init(&_cond, NULL);
63 result = pthread_cond_init(&_cond, &condAttr);
79 pthread_cond_destroy(&_cond);
86 pthread_cond_wait(&_cond, &cs->_mutex);
132 const int res = pthread_cond_timedwait(&_cond, &cs->_mutex, &ts);
137 pthread_cond_wait(&_cond, &cs->_mutex);
144 pthread_cond_signal(&_cond);
149 pthread_cond_broadcast(&_cond);
condition_variable_posix.h 35 pthread_cond_t _cond; member in class:webrtc::ConditionVariablePosix
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 302 self._cond = Condition(Lock())
306 self._cond.acquire()
313 self._cond.release()
316 self._cond.acquire()
320 self._cond.notify_all()
322 self._cond.release()
325 self._cond.acquire()
329 self._cond.release()
332 self._cond.acquire()
337 self._cond.wait(timeout
    [all...]
pool.py 525 self._cond = threading.Condition(threading.Lock())
540 self._cond.acquire()
543 self._cond.wait(timeout)
545 self._cond.release()
560 self._cond.acquire()
563 self._cond.notify()
565 self._cond.release()
597 self._cond.acquire()
600 self._cond.notify()
602 self._cond.release(
    [all...]
queues.py 300 self._cond = Condition()
303 return Queue.__getstate__(self) + (self._cond, self._unfinished_tasks)
307 self._cond, self._unfinished_tasks = state[-2:]
315 self._cond.acquire()
323 self._cond.release()
327 self._cond.acquire()
332 self._cond.notify_all()
334 self._cond.release()
337 self._cond.acquire()
340 self._cond.wait(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 302 self._cond = Condition(Lock())
306 self._cond.acquire()
313 self._cond.release()
316 self._cond.acquire()
320 self._cond.notify_all()
322 self._cond.release()
325 self._cond.acquire()
329 self._cond.release()
332 self._cond.acquire()
337 self._cond.wait(timeout
    [all...]
pool.py 525 self._cond = threading.Condition(threading.Lock())
540 self._cond.acquire()
543 self._cond.wait(timeout)
545 self._cond.release()
560 self._cond.acquire()
563 self._cond.notify()
565 self._cond.release()
597 self._cond.acquire()
600 self._cond.notify()
602 self._cond.release(
    [all...]
queues.py 300 self._cond = Condition()
303 return Queue.__getstate__(self) + (self._cond, self._unfinished_tasks)
307 self._cond, self._unfinished_tasks = state[-2:]
315 self._cond.acquire()
323 self._cond.release()
327 self._cond.acquire()
332 self._cond.notify_all()
334 self._cond.release()
337 self._cond.acquire()
340 self._cond.wait(
    [all...]
  /system/extras/tests/bionic/libc/other/
test_sysconf.c 33 #define T(_name,_cond) \
40 if ( ret _cond ) { \
43 printf( "ERROR: %d does not meet %s\n", ret, #_cond ); \
  /external/harfbuzz_ng/util/
options.hh 82 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
83 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
84 #define ASSERT_STATIC(_cond) _ASSERT_STATIC0 (__LINE__, (_cond))
  /system/extras/tests/bionic/libc/common/
test_cpu_set.c 39 int _cond = (cond); \
41 if ((_cond) != (_exp)) {\
43 __FUNCTION__, __LINE__, #cond, _cond, _exp);\
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-private.hh 201 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
202 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
203 #define ASSERT_STATIC(_cond) _ASSERT_STATIC0 (__LINE__, (_cond))
205 #define ASSERT_STATIC_EXPR(_cond)((void) sizeof (char[(_cond) ? 1 : -1]))
206 #define ASSERT_STATIC_EXPR_ZERO(_cond) (0 * sizeof (char[(_cond) ? 1 : -1])
    [all...]
  /external/harfbuzz_ng/src/
hb-private.hh 162 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
163 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
164 #define ASSERT_STATIC(_cond) _ASSERT_STATIC0 (__LINE__, (_cond))
166 #define ASSERT_STATIC_EXPR(_cond)((void) sizeof (char[(_cond) ? 1 : -1]))
167 #define ASSERT_STATIC_EXPR_ZERO(_cond) (0 * sizeof (char[(_cond) ? 1 : -1])
    [all...]
  /external/valgrind/main/VEX/priv/
guest_arm64_helpers.c 98 #define NOTE_EVAL(_cc_op, _cond) \
102 vassert( ((UInt)(_cond)) < 16); \
    [all...]

Completed in 316 milliseconds