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

1 2 3 4

  /external/clang/test/Analysis/
unix-fns.c 9 int pthread_once(pthread_once_t *, void (*)(void));
49 pthread_once(&pred, test_pthread_once_aux); // expected-warning{{Call to 'pthread_once' uses the local variable 'pred' for the "control" value}}
53 pthread_once(&pred, test_pthread_once_aux); // no-warning
  /external/protobuf/src/google/protobuf/stubs/
once.h 38 // This is basically a portable version of pthread_once().
115 pthread_once(once, init_func);
  /external/webkit/Source/JavaScriptCore/runtime/
InitializeThreading.cpp 68 pthread_once(&initializeThreadingKeyOnce, initializeThreadingOnce);
JSLock.cpp 56 pthread_once(&createJSLockCountOnce, createJSLockCount);
87 pthread_once(&createJSLockCountOnce, createJSLockCount);
129 pthread_once(&createJSLockCountOnce, createJSLockCount);
178 pthread_once(&createJSLockCountOnce, createJSLockCount);
193 pthread_once(&createJSLockCountOnce, createJSLockCount);
  /external/valgrind/main/helgrind/tests/
tc21_pthonce.c 3 with pthread_once calls. Which it appears to.
54 ensure threads[0] gets to the pthread_once call first. This is so
72 r= pthread_once(&welcome_once_block, welcome); assert(!r);
  /external/valgrind/main/none/tests/
pth_once.c 44 if ((rtn = pthread_once(&welcome_once_block,
46 fprintf(stderr, "pthread_once failed with %d",rtn);
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadIdentifierDataPthreads.cpp 90 if (pthread_once(&onceControl, initializeKeyOnceHelper))
MainThread.cpp 119 pthread_once(&initializeMainThreadKeyOnce, initializeMainThreadOnce);
130 pthread_once(&initializeMainThreadKeyOnce, initializeMainThreadToProcessMainThreadOnce);
  /system/extras/tests/bionic/libc/common/
test_pthread_once.c 54 pthread_once( &once, once_function );
  /external/webkit/Source/WebKit/mac/Misc/
WebKitSystemBits.m 60 pthread_once(&initControl, initCapabilities);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
gthr-default.h 89 __gthrw3(pthread_once)
118 __gthrw(pthread_once)
185 error value. However pthread_once returns 0 without invoking the routine
218 if (__gthrw_(pthread_once))
223 __gthrw_(pthread_once) (&__gthread_active_once, __gthread_trigger);
265 libc versions. We also can't use pthread_once as some libc versions
726 return __gthrw_(pthread_once) (__once, __func);
gthr-posix.h 89 __gthrw3(pthread_once)
118 __gthrw(pthread_once)
185 error value. However pthread_once returns 0 without invoking the routine
218 if (__gthrw_(pthread_once))
223 __gthrw_(pthread_once) (&__gthread_active_once, __gthread_trigger);
265 libc versions. We also can't use pthread_once as some libc versions
726 return __gthrw_(pthread_once) (__once, __func);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
gthr-default.h 102 __gthrw3(pthread_once)
131 __gthrw(pthread_once)
198 error value. However pthread_once returns 0 without invoking the routine
231 if (__gthrw_(pthread_once))
236 __gthrw_(pthread_once) (&__gthread_active_once, __gthread_trigger);
278 libc versions. We also can't use pthread_once as some libc versions
739 return __gthrw_(pthread_once) (__once, __func);
gthr-posix.h 102 __gthrw3(pthread_once)
131 __gthrw(pthread_once)
198 error value. However pthread_once returns 0 without invoking the routine
231 if (__gthrw_(pthread_once))
236 __gthrw_(pthread_once) (&__gthread_active_once, __gthread_trigger);
278 libc versions. We also can't use pthread_once as some libc versions
739 return __gthrw_(pthread_once) (__once, __func);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
gthr-tpf.h 77 __gthrw(pthread_once)
103 return __gthrw_(pthread_once) (__once, __func);
  /system/core/libcutils/
qtaguid.c 106 pthread_once(&resTrackInitDone, qtaguid_resTrack);
154 pthread_once(&resTrackInitDone, qtaguid_resTrack);
sched_policy.c 192 pthread_once(&the_once, __initialize);
224 pthread_once(&the_once, __initialize);
properties.c 145 pthread_once(&gInitOnce, init);
212 pthread_once(&gInitOnce, init);
245 pthread_once(&gInitOnce, init);
  /frameworks/opt/emoji/
EmojiFactory.cpp 149 pthread_once(&g_once, InitializeEmojiFactory);
165 pthread_once(&g_once, InitializeEmojiFactory);
  /ndk/sources/android/cpufeatures/
cpu-features.c 367 pthread_once(&g_once, android_cpuInit);
375 pthread_once(&g_once, android_cpuInit);
383 pthread_once(&g_once, android_cpuInit);

Completed in 436 milliseconds

1 2 3 4