Searched defs:pshared (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/helgrind/tests/
H A Dtc24_nonzero_sem.c49 static sem_t* my_sem_init (char* identity, int pshared, unsigned count) argument
56 if (sem_init(s, pshared, count) < 0) {
H A Dtc23_bogus_condwait.c97 static sem_t* my_sem_init (char* identity, int pshared, unsigned count) argument
104 if (sem_init(s, pshared, count) < 0) {
H A Dtc17_sembar.c221 static sem_t* my_sem_init (char* identity, int pshared, unsigned count) argument
228 if (sem_init(s, pshared, count) < 0) {
/external/valgrind/main/drd/
H A Ddrd_semaphore.c171 const Word pshared,
170 semaphore_init(const Addr semaphore, const Word pshared, const UInt value) argument
H A Ddrd_pthread_intercepts.c793 int pthread_spin_init_intercept(pthread_spinlock_t *spinlock, int pshared) argument
800 CALL_FN_W_WW(ret, fn, spinlock, pshared);
807 (pthread_spinlock_t *spinlock, int pshared), (spinlock, pshared));
939 int sem_init_intercept(sem_t *sem, int pshared, unsigned int value) argument
945 sem, pshared, value, 0, 0);
946 CALL_FN_W_WWW(ret, fn, sem, pshared, value);
953 (sem_t *sem, int pshared, unsigned int value), (sem, pshared, value));
/external/valgrind/main/helgrind/
H A Dhg_intercepts.c1118 int pshared) {
1129 CALL_FN_W_WW(ret, fn, lock,pshared);
1145 pthread_spinlock_t* lock, int pshared) {
1146 return pthread_spin_init_or_unlock_WRK(lock, pshared);
1151 return pthread_spin_init_or_unlock_WRK(lock, 0/*pshared*/);
1661 int sem_init(sem_t *sem, int pshared, unsigned value);
1683 static int sem_init_WRK(sem_t* sem, int pshared, unsigned long value) argument
1690 fprintf(stderr, "<< sem_init(%p,%d,%lu) ", sem,pshared,value);
1694 CALL_FN_W_WWW(ret, fn, sem,pshared,value);
1712 sem_t* sem, int pshared, unsigne
1117 pthread_spin_init_or_unlock_WRK(pthread_spinlock_t* lock, int pshared) argument
1144 PTH_FUNC(int, pthreadZuspinZuinit, pthread_spinlock_t* lock, int pshared) argument
1711 PTH_FUNC(int, semZuinitZAZa, sem_t* sem, int pshared, unsigned long value) argument
1716 PTH_FUNC(int, semZuinit, sem_t* sem, int pshared, unsigned long value) argument
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc853 TSAN_INTERCEPTOR(int, pthread_spin_init, void *m, int pshared) { argument
854 SCOPED_TSAN_INTERCEPTOR(pthread_spin_init, m, pshared);
855 int res = REAL(pthread_spin_init)(m, pshared);
1066 TSAN_INTERCEPTOR(int, sem_init, void *s, int pshared, unsigned value) { argument
1067 SCOPED_TSAN_INTERCEPTOR(sem_init, s, pshared, value);
1068 int res = REAL(sem_init)(s, pshared, value);
/external/valgrind/tsan/
H A Dts_valgrind_intercepts.c1057 PTH_FUNC(int, pthreadZuspinZuinit, void *lock, int pshared) { argument
1065 CALL_FN_W_WW(ret, fn, lock, pshared);
1726 int sem_init(sem_t *sem, int pshared, unsigned value);
1740 PTH_FUNC(int, semZuinitZAZa, sem_t* sem, int pshared, unsigned long value) argument
1747 fprintf(stderr, "<< sem_init(%p,%d,%lu) ", sem,pshared,value);
1751 CALL_FN_W_WWW(ret, fn, sem,pshared,value);

Completed in 1081 milliseconds