/external/compiler-rt/test/tsan/ |
pthread_atfork_deadlock.c | 4 // When the data race was reported, pthread_atfork() handler used to be 25 pthread_atfork(atfork, NULL, NULL);
|
/bionic/libc/private/ |
thread_private.h | 51 #define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
|
/bionic/libc/upstream-openbsd/android/include/ |
arc4random.h | 41 #define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
|
/bionic/libc/bionic/ |
pthread_atfork.cpp | 58 // Call pthread_atfork() prepare handlers. POSIX states that the prepare 88 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void(*child)(void)) { function
|
/bionic/libc/include/ |
pthread.h | 144 int pthread_atfork(void (*)(void), void (*)(void), void(*)(void));
|
/development/ndk/platforms/android-L/include/ |
pthread.h | 144 int pthread_atfork(void (*)(void), void (*)(void), void(*)(void));
|
/bionic/tests/ |
pthread_test.cpp | 717 TEST(pthread, pthread_atfork) { 718 ASSERT_EQ(0, pthread_atfork(AtForkPrepare1, AtForkParent1, AtForkChild1)); 719 ASSERT_EQ(0, pthread_atfork(AtForkPrepare2, AtForkParent2, AtForkChild2));
|
/external/chromium_org/testing/gtest/test/ |
gtest-death-test_test.cc | 478 ASSERT_EQ(0, pthread_atfork(&SetPthreadFlag, NULL, NULL)); [all...] |
/external/gtest/test/ |
gtest-death-test_test.cc | 483 ASSERT_EQ(0, pthread_atfork(&SetPthreadFlag, NULL, NULL)); [all...] |
/external/jemalloc/src/ |
jemalloc.c | 801 /* LinuxThreads's pthread_atfork() allocates. */ 802 if (pthread_atfork(jemalloc_prefork, jemalloc_postfork_parent, 804 malloc_write("<jemalloc>: Error in pthread_atfork()\n"); [all...] |
/bionic/libc/ |
Android.mk | 152 bionic/pthread_atfork.cpp \ [all...] |
/bionic/libc/upstream-dlmalloc/ |
malloc.c | 282 If defined nonzero, performs pthread_atfork upon initialization [all...] |