HomeSort by relevance Sort by last modified time
    Searched full:pthread_key_create (Results 51 - 75 of 636) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_darwin_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fprintf(stderr, "runtime/cgo: pthread_key_create failed: %d\n", err);
gcc_darwin_arm64.c 23 // It finds the first available slot using pthread_key_create and uses
31 err = pthread_key_create(&k, nil);
33 fprintf(stderr, "runtime/cgo: pthread_key_create failed: %d\n", err);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_darwin_386.c 26 * one of the early calls to pthread_key_create, so we
67 if(pthread_key_create(&k, nil) != 0) {
68 fprintf(stderr, "runtime/cgo: pthread_key_create failed\n");
gcc_darwin_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fprintf(stderr, "runtime/cgo: pthread_key_create failed: %d\n", err);
gcc_darwin_arm64.c 23 // It finds the first available slot using pthread_key_create and uses
31 err = pthread_key_create(&k, nil);
33 fprintf(stderr, "runtime/cgo: pthread_key_create failed: %d\n", err);
  /bionic/libc/upstream-netbsd/lib/libc/resolv/
mtctxres.c 38 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx);
  /build/kati/
thread_local.h 60 if (pthread_key_create(key, ThreadLocalDestructor<Type>))
  /external/deqp/framework/delibs/dethread/unix/
deThreadLocalUnix.c 52 if (pthread_key_create(&key, DE_NULL) != 0)
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
lockosthread.go 90 C.pthread_key_create(&key, (*[0]byte)(unsafe.Pointer(C.setExited)))
  /prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
lockosthread.go 90 C.pthread_key_create(&key, (*[0]byte)(unsafe.Pointer(C.setExited)))
  /system/core/libcutils/
threads.cpp 65 if (pthread_key_create( &store->tls, destroy) != 0) {
  /external/gemmlowp/profiling/
instrumentation.h 165 pthread_key_create(&key, ThreadExitCallback);
188 static int key_result = pthread_key_create(&key, DeleteThreadInfo);
  /external/swiftshader/third_party/LLVM/test/CodeGen/Generic/
2009-03-17-LSR-APInt.ll 42 @_ZL26__gthrw_pthread_key_createPjPFvPvE = alias weak i32 (i32*, void (i8*)*)* @pthread_key_create ; <i32 (i32*, void (i8*)*)*> [#uses=0]
84 declare i32 @pthread_key_create(i32*, void (i8*)*)
  /external/swiftshader/third_party/subzero/src/
IceTLS.h 67 // pthread_key_create() call, where a zero value indicates success, and a
85 FieldName##__initStatus = pthread_key_create(&FieldName##__key, nullptr); \
  /external/webrtc/talk/app/webrtc/java/jni/
jni_helpers.cc 65 // Oracle's http://goo.gl/eHApYT) also use the pthread_key_create mechanism,
80 RTC_CHECK(!pthread_key_create(&g_jni_ptr, &ThreadDestructor))
81 << "pthread_key_create";
  /external/boringssl/src/crypto/
thread_pthread.c 126 pthread_key_create(&g_thread_local_key, thread_local_destructor) != 0;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 54 ASSERT_EQ(0, pthread_key_create(&key, &destructor));
  /external/libunwind/tests/
Ltest-nocalloc.c 119 if (pthread_key_create (&key, NULL))
  /external/llvm/lib/Support/Unix/
ThreadLocal.inc 31 int errorcode = pthread_key_create(key, nullptr);
  /external/ltp/testcases/open_posix_testsuite/Documentation/
COVERAGE.threads 76 pthread_key_create YES MED
  /external/protobuf/src/google/protobuf/stubs/
platform_macros.h 119 // we use pthread_key_create()/pthread_getspecific()/... methods for
  /external/swiftshader/third_party/LLVM/lib/Support/
ThreadLocal.cpp 45 int errorcode = pthread_key_create(key, NULL);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
ThreadLocal.inc 31 int errorcode = pthread_key_create(key, nullptr);
  /frameworks/base/libs/hwui/debug/
nullegl.cpp 40 pthread_key_create(&ThreadStateKey, destroyThreadState);
  /frameworks/native/opengl/libs/EGL/
egl_tls.cpp 59 pthread_key_create(&sKey, (void (*)(void*))&eglReleaseThread);

Completed in 1266 milliseconds

1 23 4 5 6 7 8 91011>>