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

1 2

  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 68 #define WSBM_MUTEX_INIT(_mutex) \
69 wsbmThreadFuncs()->mutexInit(_mutex,wsbmThreadFuncs())
70 #define WSBM_MUTEX_FREE(_mutex) \
72 (_mutex)->func->mutexFree(_mutex); \
74 #define WSBM_MUTEX_LOCK(_mutex) \
75 (_mutex)->func->mutexLock(_mutex);
76 #define WSBM_MUTEX_UNLOCK(_mutex) \
77 (_mutex)->func->mutexUnlock(_mutex)
    [all...]
  /external/webrtc/src/system_wrappers/source/
critical_section_posix.cc 26 (void) pthread_mutex_init(&_mutex, &attr);
31 (void) pthread_mutex_destroy(&_mutex);
37 (void) pthread_mutex_lock(&_mutex);
43 (void) pthread_mutex_unlock(&_mutex);
condition_variable_posix.cc 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);
critical_section_posix.h 30 pthread_mutex_t _mutex; member in class:webrtc::CriticalSectionPosix
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/
shared_mutex 59 struct _Mutex : mutex, __timed_mutex_impl<_Mutex>
72 typedef mutex _Mutex;
77 _Mutex _M_mut;
127 unique_lock<_Mutex> __lk(_M_mut, __rel_time);
140 unique_lock<_Mutex> __lk(_M_mut, __abs_time);
154 lock_guard<_Mutex> __lk(_M_mut);
179 unique_lock<_Mutex> __lk(_M_mut, try_to_lock);
197 unique_lock<_Mutex> __lk(_M_mut, __rel_time);
218 unique_lock<_Mutex> __lk(_M_mut, __abs_time)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
yvals.h 226 class _CRTIMP _Mutex {
228 __thiscall _Mutex();
229 __thiscall ~_Mutex();
233 static void __cdecl _Mutex_ctor(_Mutex *);
234 static void __cdecl _Mutex_dtor(_Mutex *);
235 static void __cdecl _Mutex_Lock(_Mutex *);
236 static void __cdecl _Mutex_Unlock(_Mutex *);
237 _Mutex(const _Mutex&);
238 _Mutex& operator=(const _Mutex&)
    [all...]
  /external/libcxx/include/
__mutex_base 69 template <class _Mutex>
73 typedef _Mutex mutex_type;
93 template <class _Mutex>
97 typedef _Mutex mutex_type;
191 template <class _Mutex>
193 unique_lock<_Mutex>::lock()
203 template <class _Mutex>
205 unique_lock<_Mutex>::try_lock()
215 template <class _Mutex>
218 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d
    [all...]
shared_mutex 223 template <class _Mutex>
227 typedef _Mutex mutex_type;
349 template <class _Mutex>
351 shared_lock<_Mutex>::lock()
361 template <class _Mutex>
363 shared_lock<_Mutex>::try_lock()
373 template <class _Mutex>
376 shared_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d)
386 template <class _Mutex>
389 shared_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__mutex_base 73 template <class _Mutex>
77 typedef _Mutex mutex_type;
97 template <class _Mutex>
101 typedef _Mutex mutex_type;
195 template <class _Mutex>
197 unique_lock<_Mutex>::lock()
207 template <class _Mutex>
209 unique_lock<_Mutex>::try_lock()
219 template <class _Mutex>
222 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d
    [all...]
shared_mutex 225 template <class _Mutex>
229 typedef _Mutex mutex_type;
351 template <class _Mutex>
353 shared_lock<_Mutex>::lock()
363 template <class _Mutex>
365 shared_lock<_Mutex>::try_lock()
375 template <class _Mutex>
378 shared_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d)
388 template <class _Mutex>
391 shared_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
__mutex_base 69 template <class _Mutex>
73 typedef _Mutex mutex_type;
93 template <class _Mutex>
97 typedef _Mutex mutex_type;
191 template <class _Mutex>
193 unique_lock<_Mutex>::lock()
203 template <class _Mutex>
205 unique_lock<_Mutex>::try_lock()
215 template <class _Mutex>
218 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d
    [all...]
shared_mutex 223 template <class _Mutex>
227 typedef _Mutex mutex_type;
349 template <class _Mutex>
351 shared_lock<_Mutex>::lock()
361 template <class _Mutex>
363 shared_lock<_Mutex>::try_lock()
373 template <class _Mutex>
376 shared_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d)
386 template <class _Mutex>
389 shared_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t
    [all...]
  /external/pixman/pixman/
pixman-compiler.h 128 static void *tls_ ## name ## _mutex = NULL; \
146 if (!tls_ ## name ## _mutex) \
150 &tls_ ## name ## _mutex, mutex, NULL) != NULL) \
155 WaitForSingleObject (tls_ ## name ## _mutex, 0xFFFFFFFF); \
161 ReleaseMutex (tls_ ## name ## _mutex); \
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
mutex 404 template<typename _Mutex>
408 typedef _Mutex mutex_type;
427 template<typename _Mutex>
431 typedef _Mutex mutex_type;
601 template<typename _Mutex>
603 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
606 template<typename _Mutex>
608 swap(unique_lock<_Mutex>&& __x, unique_lock<_Mutex>& __y
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
mutex 404 template<typename _Mutex>
408 typedef _Mutex mutex_type;
427 template<typename _Mutex>
431 typedef _Mutex mutex_type;
601 template<typename _Mutex>
603 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
606 template<typename _Mutex>
608 swap(unique_lock<_Mutex>&& __x, unique_lock<_Mutex>& __y
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
mutex 404 template<typename _Mutex>
408 typedef _Mutex mutex_type;
427 template<typename _Mutex>
431 typedef _Mutex mutex_type;
601 template<typename _Mutex>
603 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
606 template<typename _Mutex>
608 swap(unique_lock<_Mutex>&& __x, unique_lock<_Mutex>& __y
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
mutex 404 template<typename _Mutex>
408 typedef _Mutex mutex_type;
427 template<typename _Mutex>
431 typedef _Mutex mutex_type;
601 template<typename _Mutex>
603 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
606 template<typename _Mutex>
608 swap(unique_lock<_Mutex>&& __x, unique_lock<_Mutex>& __y
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
director.swg 281 pthread_mutex_t *_mutex;
283 Guard(pthread_mutex_t &mutex) : _mutex(&mutex)
285 pthread_mutex_lock(_mutex);
290 pthread_mutex_unlock(_mutex);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/
mutex 438 template<typename _Mutex>
442 typedef _Mutex mutex_type;
461 template<typename _Mutex>
465 typedef _Mutex mutex_type;
635 template<typename _Mutex>
637 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
mutex 407 template<typename _Mutex>
411 typedef _Mutex mutex_type;
430 template<typename _Mutex>
434 typedef _Mutex mutex_type;
605 template<typename _Mutex>
607 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) noexcept
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
mutex 407 template<typename _Mutex>
411 typedef _Mutex mutex_type;
430 template<typename _Mutex>
434 typedef _Mutex mutex_type;
605 template<typename _Mutex>
607 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) noexcept
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
mutex 438 template<typename _Mutex>
442 typedef _Mutex mutex_type;
461 template<typename _Mutex>
465 typedef _Mutex mutex_type;
635 template<typename _Mutex>
637 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
mutex 441 template<typename _Mutex>
445 typedef _Mutex mutex_type;
464 template<typename _Mutex>
468 typedef _Mutex mutex_type;
639 template<typename _Mutex>
641 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) noexcept
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
mutex 438 template<typename _Mutex>
442 typedef _Mutex mutex_type;
461 template<typename _Mutex>
465 typedef _Mutex mutex_type;
635 template<typename _Mutex>
637 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
mutex 441 template<typename _Mutex>
445 typedef _Mutex mutex_type;
464 template<typename _Mutex>
468 typedef _Mutex mutex_type;
639 template<typename _Mutex>
641 swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) noexcept

Completed in 1453 milliseconds

1 2