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

1 2 3

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_globals.cpp 30 pthread_once(&g_globals_once, CreateGlobalsInstance);
crazy_linker_thread.cpp 59 pthread_once(&s_once, InitThreadKey);
  /external/chromium_org/third_party/decklink/mac/include/
DeckLinkAPIDispatch_v7_6.cpp 68 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI_v7_6);
78 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI_v7_6);
88 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI_v7_6);
98 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI_v7_6);
DeckLinkAPIDispatch_v8_0.cpp 84 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
94 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
104 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
114 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
124 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
DeckLinkAPIDispatch.cpp 88 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
98 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
108 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
118 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
128 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
138 pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
177 pthread_once(&gBMDStreamingOnceControl, InitBMDStreamingAPI);
187 pthread_once(&gBMDStreamingOnceControl, InitBMDStreamingAPI);
  /external/chromium_org/third_party/skia/src/ports/
SkTLS_pthread.cpp 20 // should we use forceCreateTheSlot to potentially skip calling pthread_once
24 (void)pthread_once(&gSkTLSKey_Once, sk_tls_make_key);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
maybe_threads.cc 66 int pthread_once(pthread_once_t *, void (*)(void))
107 // On __FreeBSD__, calling pthread_once on a system that is not
124 // Android >= 2.3 (GB) always implement pthread_once.
125 return pthread_once(ctl, init_routine);
127 if (pthread_once) {
128 return pthread_once(ctl, init_routine);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.c 21 pthread_once(&s_h_errno_once, __h_errno_create);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/
singleton_posix.h 31 const int ret = pthread_once(&once_control_, &Init);
  /external/chromium_org/third_party/webrtc/modules/video_capture/
ensure_initialized.cc 43 CHECK_EQ(0, pthread_once(&g_initialize_once, &EnsureInitializedOnce));
  /external/chromium_org/third_party/tcmalloc/vendor/src/
maybe_threads.cc 66 int pthread_once(pthread_once_t *, void (*)(void))
107 // On __FreeBSD__, calling pthread_once on a system that is not
124 if (pthread_once) {
125 return pthread_once(ctl, init_routine);
  /external/chromium_org/sandbox/linux/services/
libc_urandom_override.cc 41 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
137 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
153 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
175 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
192 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
210 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
226 CHECK_EQ(0, pthread_once(&g_libc_file_io_funcs_guard,
  /bionic/libc/bionic/
pthread_once.cpp 40 int pthread_once(pthread_once_t* once_control, void (*init_routine)(void)) { function
NetdClient.cpp 55 if (pthread_once(&netdClientInitOnce, netdClientInitImpl)) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_once.c 2 * pthread_once.c
41 pthread_once (pthread_once_t * once_control, void (PTW32_CDECL *init_routine) (void)) function
79 } /* pthread_once */
  /bionic/benchmarks/
pthread_benchmark.cpp 56 pthread_once(&once, DummyPthreadOnceInitFunction);
60 pthread_once(&once, DummyPthreadOnceInitFunction);
  /external/libselinux/src/
selinux_internal.h 96 /* Make pthread_once optional */
97 #pragma weak pthread_once macro
105 if (pthread_once != NULL) \
106 pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \
  /external/chromium_org/third_party/leveldatabase/src/port/
port_posix.cc 50 PthreadCall("once", pthread_once(once, initializer));
  /external/libcxxabi/src/
cxa_exception_storage.cpp 95 if (0 != pthread_once(&flag_, construct_))
96 abort_message("pthread_once failure in __cxa_get_globals_fast()");
  /external/libvpx/libvpx/vpx_ports/
vpx_once.h 81 pthread_once(&lock, func);
  /external/clang/test/Analysis/
unix-fns.c 12 int pthread_once(pthread_once_t *, void (*)(void));
73 pthread_once(&pred, test_pthread_once_aux); // expected-warning{{Call to 'pthread_once' uses the local variable 'pred' for the "control" value}}
77 pthread_once(&pred, test_pthread_once_aux); // no-warning
629 // CHECK-NEXT: <string>Call to &apos;pthread_once&apos; uses the local variable &apos;pred&apos; for the &quot;control&quot; value. Using such transient memory for the control value is potentially dangerous. Perhaps you intended to declare the variable as &apos;static&apos;?</string>
631 // CHECK-NEXT: <string>Call to &apos;pthread_once&apos; uses the local variable &apos;pred&apos; for the &quot;control&quot; value. Using such transient memory for the control value is potentially dangerous. Perhaps you intended to declare the variable as &apos;static&apos;?</string>
634 // CHECK-NEXT: <key>description</key><string>Call to &apos;pthread_once&apos; uses the local variable &apos;pred&apos; for the &quot;control&quot; value. Using such transient memory for the control value is potentially dangerous. Perhaps you intended to declare the variable as &apos;static&apos;?</string>
636 // CHECK-NEXT: <key>type</key><string>Improper use of &apos;pthread_once&apos;</string>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DataLog.cpp 77 pthread_once(&initializeLogFileOnceKey, initializeLogFileOnce);
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
vpx_once.h 108 pthread_once(&lock, func);
  /external/chromium_org/third_party/skia/src/core/
SkUtilsArm.cpp 136 // called through pthread_once()
142 pthread_once(&sOnce, sk_cpu_arm_probe_features);
  /external/chromium_org/third_party/mesa/src/src/glx/
glxcurrent.c 116 * \c pthread_once mechanism.
130 pthread_once(&once_control, init_thread_data);
139 pthread_once(&once_control, init_thread_data);

Completed in 735 milliseconds

1 2 3