/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);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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-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/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
throw_allocator.h | 602 template<typename _Cond> 603 struct throw_value_base : public _Cond 605 typedef _Cond condition_type; 650 template<typename _Cond> 652 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b) 654 typedef throw_value_base<_Cond> throw_value; 662 template<typename _Cond> 664 operator==(const throw_value_base<_Cond>& __a, 665 const throw_value_base<_Cond>& __b [all...] |
/external/libevent/ |
evthread_pthread.c | 115 evthread_posix_cond_free(void *_cond) 117 pthread_cond_t *cond = _cond; 123 evthread_posix_cond_signal(void *_cond, int broadcast) 125 pthread_cond_t *cond = _cond; 135 evthread_posix_cond_wait(void *_cond, void *_lock, const struct timeval *tv) 138 pthread_cond_t *cond = _cond;
|
evthread_win32.c | 136 evthread_win32_condvar_free(void *_cond) 138 CONDITION_VARIABLE *cond = _cond; 144 evthread_win32_condvar_signal(void *_cond, int broadcast) 146 CONDITION_VARIABLE *cond = _cond; 155 evthread_win32_condvar_wait(void *_cond, void *_lock, const struct timeval *tv) 157 CONDITION_VARIABLE *cond = _cond; 207 evthread_win32_cond_free(void *_cond) 209 struct evthread_win32_cond *cond = _cond; 216 evthread_win32_cond_signal(void *_cond, int broadcast) 218 struct evthread_win32_cond *cond = _cond; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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-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;") \
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/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/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...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
type_manips.h | 92 // Invocation: __select<_Cond, T, U>::Result 112 template <bool _Cond, class _Tp1, class _Tp2> 118 template <bool _Cond, class _Tp1, class _Tp2> 120 { typedef __selectT<typename __bool2type<_Cond>::_Ret, _Tp1, _Tp2>::_Ret _Ret; }; 126 template <int _Cond> 142 template <int _Cond, class _Tp1, class _Tp2> 144 typedef typename __select_aux<_Cond>::_STLP_TEMPLATE _In<_Tp1, _Tp2>::_Ret _Ret; 148 template <int _Cond, class _Tp1, class _Tp2>
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
type_manips.h | 92 // Invocation: __select<_Cond, T, U>::Result 112 template <bool _Cond, class _Tp1, class _Tp2> 118 template <bool _Cond, class _Tp1, class _Tp2> 120 { typedef __selectT<typename __bool2type<_Cond>::_Ret, _Tp1, _Tp2>::_Ret _Ret; }; 126 template <int _Cond> 142 template <int _Cond, class _Tp1, class _Tp2> 144 typedef typename __select_aux<_Cond>::_STLP_TEMPLATE _In<_Tp1, _Tp2>::_Ret _Ret; 148 template <int _Cond, class _Tp1, class _Tp2>
|