HomeSort by relevance Sort by last modified time
    Searched refs:pthread_spinlock_t (Results 1 - 25 of 34) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
3-12-buildonly.c 8 Test pthread_spinlock_t
14 pthread_spinlock_t dummy;
  /bionic/libc/bionic/
pthread_spinlock.cpp 40 static_assert(sizeof(pthread_spinlock_t) == sizeof(pthread_spinlock_internal_t),
41 "pthread_spinlock_t should actually be pthread_spinlock_internal_t.");
43 static_assert(alignof(pthread_spinlock_t) >= 4,
44 "pthread_spinlock_t should fulfill the alignment of pthread_spinlock_internal_t.");
46 static inline pthread_spinlock_internal_t* __get_internal_spinlock(pthread_spinlock_t* lock) {
50 int pthread_spin_init(pthread_spinlock_t* lock_interface, int pshared) {
56 int pthread_spin_destroy(pthread_spinlock_t* lock_interface) {
61 int pthread_spin_trylock(pthread_spinlock_t* lock_interface) {
66 int pthread_spin_lock(pthread_spinlock_t* lock_interface) {
77 int pthread_spin_unlock(pthread_spinlock_t* lock_interface)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_trylock/
4-1.c 7 * Test pthread_spin_trylock(pthread_spinlock_t *lock)
29 pthread_spinlock_t spinlock;
1-1.c 7 * Test pthread_spin_trylock(pthread_spinlock_t *lock)
13 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
32 static pthread_spinlock_t spinlock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_destroy/
1-1.c 7 * Test pthread_spin_destroy(pthread_spinlock_t * lock)
13 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
28 static pthread_spinlock_t spinlock;
3-1.c 7 * Test pthread_spin_destroy(pthread_spinlock_t *lock) may fail if:
17 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
33 static pthread_spinlock_t spinlock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_init/
1-1.c 7 * Test pthread_spin_init(pthread_spinlock_t * lock, int pshared)
14 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
30 static pthread_spinlock_t spinlock;
4-1.c 7 * Test pthread_spin_init(pthread_spinlock_t * lock, int pshared)
17 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
34 static pthread_spinlock_t spinlock;
2-1.c 7 * Test pthread_spin_init(pthread_spinlock_t *lock, int pshared)
36 pthread_spinlock_t spinlock;
2-2.c 7 * Test pthread_spin_init(pthread_spinlock_t *lock, int pshared)
44 pthread_spinlock_t spinlock;
  /bionic/libc/include/bits/
pthread_types.h 102 } pthread_spinlock_t; typedef in typeref:struct:__anon260
  /bionic/tests/headers/posix/
sys_types_h.c 60 TYPE(pthread_spinlock_t);
pthread_h.c 86 TYPE(pthread_spinlock_t);
203 FUNCTION(pthread_spin_destroy, int (*f)(pthread_spinlock_t*));
204 FUNCTION(pthread_spin_init, int (*f)(pthread_spinlock_t*, int));
205 FUNCTION(pthread_spin_lock, int (*f)(pthread_spinlock_t*));
206 FUNCTION(pthread_spin_trylock, int (*f)(pthread_spinlock_t*));
207 FUNCTION(pthread_spin_unlock, int (*f)(pthread_spinlock_t*));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/
3-1.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
38 pthread_spinlock_t spinlock;
3-2.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
45 pthread_spinlock_t spinlock;
1-2.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
15 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
31 static pthread_spinlock_t spinlock;
1-1.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
15 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
31 static pthread_spinlock_t spinlock;
  /external/valgrind/drd/tests/
pth_spinlock.c 4 /* Make sure pthread_spinlock_t is available when compiling with older glibc
15 static pthread_spinlock_t s_spinlock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_unlock/
1-1.c 7 * Test pthread_spin_unlock(pthread_spinlock_t *lock)
13 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
33 static pthread_spinlock_t spinlock;
1-2.c 7 * Test pthread_spin_unlock(pthread_spinlock_t *lock)
18 * 1. Initialize a pthread_spinlock_t object 'spinlock' with
35 static pthread_spinlock_t spinlock;
3-1.c 7 * Test pthread_spin_unlock(pthread_spinlock_t *lock)
33 static pthread_spinlock_t spinlock;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
pthreadtypes.h 151 typedef volatile int pthread_spinlock_t; typedef
  /bionic/libc/include/
pthread.h 245 int pthread_spin_destroy(pthread_spinlock_t* __spinlock) __INTRODUCED_IN(24);
246 int pthread_spin_init(pthread_spinlock_t* __spinlock, int __shared) __INTRODUCED_IN(24);
247 int pthread_spin_lock(pthread_spinlock_t* __spinlock) __INTRODUCED_IN(24);
248 int pthread_spin_trylock(pthread_spinlock_t* __spinlock) __INTRODUCED_IN(24);
249 int pthread_spin_unlock(pthread_spinlock_t* __spinlock) __INTRODUCED_IN(24);
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 71 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) {
78 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) {
86 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) {
94 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
pthreadtypes.h 201 typedef volatile int pthread_spinlock_t; typedef

Completed in 164 milliseconds

1 2