Searched refs:pthread_spinlock_t (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_spin_unlock.c42 pthread_spin_unlock (pthread_spinlock_t * lock)
44 register pthread_spinlock_t s;
H A Dpthread_spin_lock.c42 pthread_spin_lock (pthread_spinlock_t * lock)
44 register pthread_spinlock_t s;
H A Dpthread_spin_trylock.c42 pthread_spin_trylock (pthread_spinlock_t * lock)
44 register pthread_spinlock_t s;
H A Dpthread_spin_init.c42 pthread_spin_init (pthread_spinlock_t * lock, int pshared)
44 pthread_spinlock_t s;
83 s = (pthread_spinlock_t) calloc (1, sizeof (*s));
H A Dpthread_spin_destroy.c42 pthread_spin_destroy (pthread_spinlock_t * lock)
44 register pthread_spinlock_t s;
H A Dptw32_spinlock_check_need_init.c42 ptw32_spinlock_check_need_init (pthread_spinlock_t * lock)
H A Dpthread.h596 typedef struct pthread_spinlock_t_ * pthread_spinlock_t; typedef in typeref:struct:pthread_spinlock_t_
707 #define PTHREAD_SPINLOCK_INITIALIZER ((pthread_spinlock_t)(size_t) -1)
1052 PTW32_DLLPORT int PTW32_CDECL pthread_spin_init (pthread_spinlock_t * lock, int pshared);
1054 PTW32_DLLPORT int PTW32_CDECL pthread_spin_destroy (pthread_spinlock_t * lock);
1056 PTW32_DLLPORT int PTW32_CDECL pthread_spin_lock (pthread_spinlock_t * lock);
1058 PTW32_DLLPORT int PTW32_CDECL pthread_spin_trylock (pthread_spinlock_t * lock);
1060 PTW32_DLLPORT int PTW32_CDECL pthread_spin_unlock (pthread_spinlock_t * lock);
H A Dimplement.h622 int ptw32_spinlock_check_need_init (pthread_spinlock_t * lock);
/external/compiler-rt/test/tsan/
H A Dmutexset6.cc8 pthread_spinlock_t mtx2;
H A Ddeadlock_detector_stress_test.cc79 pthread_spinlock_t mu_;
80 char padding_[64 - sizeof(pthread_spinlock_t)];
/external/valgrind/main/drd/tests/
H A Dpth_spinlock.c4 /* Make sure pthread_spinlock_t is available when compiling with older glibc
15 static pthread_spinlock_t s_spinlock;
H A Dtsan_thread_wrappers_pthread.h129 pthread_spinlock_t mu_;
/external/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cc74 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) {
81 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) {
89 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) {
97 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) {
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_linux.cc110 CHECK_EQ(pthread_spin_init((pthread_spinlock_t*)mtx_, 0), 0);
131 CHECK_EQ(pthread_spin_destroy((pthread_spinlock_t*)mtx_), 0);
141 CHECK_EQ(pthread_spin_lock((pthread_spinlock_t*)mtx_), 0);
151 return pthread_spin_trylock((pthread_spinlock_t*)mtx_) == 0;
162 CHECK_EQ(pthread_spin_unlock((pthread_spinlock_t*)mtx_), 0);
/external/valgrind/main/drd/
H A Ddrd_pthread_intercepts.c42 * Define _GNU_SOURCE to make sure that pthread_spinlock_t is available when
814 int pthread_spin_init_intercept(pthread_spinlock_t *spinlock, int pshared)
828 (pthread_spinlock_t *spinlock, int pshared), (spinlock, pshared));
831 int pthread_spin_destroy_intercept(pthread_spinlock_t *spinlock)
845 (pthread_spinlock_t *spinlock), (spinlock));
848 int pthread_spin_lock_intercept(pthread_spinlock_t *spinlock)
862 (pthread_spinlock_t *spinlock), (spinlock));
865 int pthread_spin_trylock_intercept(pthread_spinlock_t *spinlock)
879 (pthread_spinlock_t *spinlock), (spinlock));
882 int pthread_spin_unlock_intercept(pthread_spinlock_t *spinloc
[all...]
/external/valgrind/main/helgrind/
H A Dhg_intercepts.c1174 /*--- pthread_spinlock_t functions ---*/
1197 static int pthread_spin_init_or_unlock_WRK(pthread_spinlock_t* lock,
1207 pthread_spinlock_t*, lock);
1213 pthread_spinlock_t*,lock);
1225 pthread_spinlock_t* lock, int pshared) {
1229 pthread_spinlock_t* lock) {
1245 pthread_spinlock_t* lock)
1256 pthread_spinlock_t*,lock);
1282 pthread_spinlock_t* lock)
1293 pthread_spinlock_t*,loc
[all...]
/external/stlport/stlport/stl/
H A D_threads.h314 pthread_spinlock_t _M_lock;
318 // sorry, but no static initializer for pthread_spinlock_t;

Completed in 3919 milliseconds