HomeSort by relevance Sort by last modified time
    Searched full:_cond (Results 1 - 25 of 71) sorted by null

1 2 3

  /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/libxcam/xcore/
xcam_mutex.h 72 pthread_cond_init (&_cond, NULL);
75 pthread_cond_destroy (&_cond);
79 return pthread_cond_wait (&_cond, &mutex._mutex);
91 return pthread_cond_timedwait (&_cond, &mutex._mutex, &abstime);
95 return pthread_cond_signal (&_cond);
98 return pthread_cond_broadcast (&_cond);
101 pthread_cond_t _cond; member in class:XCam::Cond
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
throw_allocator.h 446 template<typename _Cond>
447 struct throw_value_base : public _Cond
449 typedef _Cond condition_type;
494 template<typename _Cond>
496 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 typedef throw_value_base<_Cond> throw_value;
506 template<typename _Cond>
508 operator==(const throw_value_base<_Cond>& __a,
509 const throw_value_base<_Cond>& __b
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
throw_allocator.h 446 template<typename _Cond>
447 struct throw_value_base : public _Cond
449 typedef _Cond condition_type;
494 template<typename _Cond>
496 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 typedef throw_value_base<_Cond> throw_value;
506 template<typename _Cond>
508 operator==(const throw_value_base<_Cond>& __a,
509 const throw_value_base<_Cond>& __b
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/branch_policy/
traits.hpp 49 #define PB_DS_DEBUG_VERIFY(_Cond) \
50 _GLIBCXX_DEBUG_VERIFY_AT(_Cond, \
51 _M_message(#_Cond" assertion from %1;:%2;") \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/branch_policy/
traits.hpp 49 #define PB_DS_DEBUG_VERIFY(_Cond) \
50 _GLIBCXX_DEBUG_VERIFY_AT(_Cond, \
51 _M_message(#_Cond" assertion from %1;:%2;") \
  /external/python/cpython2/Lib/multiprocessing/
pool.py 538 self._cond = threading.Condition(threading.Lock())
553 self._cond.acquire()
556 self._cond.wait(timeout)
558 self._cond.release()
573 self._cond.acquire()
576 self._cond.notify()
578 self._cond.release()
610 self._cond.acquire()
613 self._cond.notify()
615 self._cond.release(
    [all...]
queues.py 302 self._cond = Condition()
305 return Queue.__getstate__(self) + (self._cond, self._unfinished_tasks)
309 self._cond, self._unfinished_tasks = state[-2:]
317 self._cond.acquire()
325 self._cond.release()
329 self._cond.acquire()
334 self._cond.notify_all()
336 self._cond.release()
339 self._cond.acquire()
342 self._cond.wait(
    [all...]
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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
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...]
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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
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...]
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
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...]
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
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...]
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...]
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 336 self._cond = ctx.Condition(ctx.Lock())
340 with self._cond:
347 with self._cond:
350 self._cond.notify_all()
353 with self._cond:
357 with self._cond:
361 self._cond.wait(timeout)
385 self._cond, self._wrapper) = state
390 self._cond, self._wrapper)
  /external/mesa3d/src/gallium/tests/unit/
pipe_barrier_test.c 62 #define CHECK(_cond) \
63 if (!(_cond)) { \
64 fprintf(stderr, "%s:%u: `%s` failed\n", __FILE__, __LINE__, #_cond); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
debug.h 64 # define __glibcxx_requires_cond(_Cond,_Msg)
96 # define __glibcxx_requires_cond(_Cond,_Msg) _GLIBCXX_DEBUG_VERIFY(_Cond,_Msg)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 47 #define PB_DS_DEBUG_VERIFY(_Cond) \
48 _GLIBCXX_DEBUG_VERIFY_AT(_Cond, \
49 _M_message(#_Cond" assertion from %1;:%2;") \

Completed in 786 milliseconds

1 2 3