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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/lsan/TestCases/
use_tls_pthread_specific_dynamic.cc 21 res = pthread_key_create(&dummy_keys[i], NULL);
25 res = pthread_key_create(&key, NULL);
use_tls_pthread_specific_static.cc 19 res = pthread_key_create(&key, NULL);
cleanup_in_tsd_destructor.c 35 int res = pthread_key_create(&key, &key_destructor);
disabler_in_tsd_destructor.c 31 int res = pthread_key_create(&key, &key_destructor);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
3-1.c 31 if (pthread_key_create(&key, NULL) != 0) {
32 printf("Error: pthread_key_create() failed\n");
1-1.c 11 * Calling pthread_getspecific() with a key value not obtained from pthread_key_create() or
37 if (pthread_key_create(&keys[i], NULL) != 0) {
38 printf("Error: pthread_key_create() failed\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_delete/
1-1.c 10 * Shall delete a thread-specific data key previously returned by pthread_key_create. The
39 if (pthread_key_create(&keys[i], NULL) != 0) {
40 printf("Error: pthread_key_create() failed\n");
1-2.c 10 * Shall delete a thread-specific data key previously returned by pthread_key_create. The
40 if (pthread_key_create(&keys[i], NULL) != 0) {
41 printf("Error: pthread_key_create() failed\n");
2-1.c 64 if (pthread_key_create(&key, dest_func) != 0) {
65 printf("Error: pthread_key_create() failed\n");
  /external/skia/src/ports/
SkTLS_pthread.cpp 19 once(pthread_key_create, &gSkTLSKey, SkTLS::Destructor);
  /prebuilts/ndk/r11/sources/android/support/src/locale/
uselocale.c 35 pthread_key_create(&s_locale_key, NULL);
  /prebuilts/ndk/r13/sources/android/support/src/locale/
uselocale.c 35 pthread_key_create(&s_locale_key, NULL);
  /bionic/libc/malloc_debug/
debug_disable.cpp 45 int error = pthread_key_create(&g_disable_key, nullptr);
47 error_log("pthread_key_create failed: %s", strerror(error));
  /external/libchrome/base/threading/
thread_local_posix.cc 19 int error = pthread_key_create(slot, NULL);
thread_local_storage_posix.cc 14 return !pthread_key_create(key,
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
2-1.c 8 * Test that pthread_key_create()
38 if (pthread_key_create(&key, NULL) != 0) {
39 printf("Error: pthread_key_create() failed\n");
1-1.c 8 * Test that pthread_key_create()
11 * provided by pthread_key_create() are opaque objects used to locate thread-specific data.
18 * 2. Use pthread_key_create() and create those keys
40 if (pthread_key_create(&keys[i], NULL) != 0) {
41 printf("Error: pthread_key_create() failed\n");
3-1.c 8 * Test that pthread_key_create()
18 * 2. Use pthread_key_create() and create those keys
62 if (pthread_key_create(&key, dest_func) != 0) {
63 printf("Error: pthread_key_create() failed\n");
  /external/swiftshader/src/OpenGL/compiler/
ossource_posix.cpp 34 if ((pthread_key_create(&pPoolIndex, NULL)) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/speculative/
5-1.c 10 * Test that pthread_key_create()
12 * If successful, the pthread_key_create() function shall store the newly
27 * 2. Use pthread_key_create() and create those keys
48 rc = pthread_key_create(&keys[i], NULL);
69 printf("Error: pthread_key_create() failed with %d\n", rc);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_android_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fatalf("pthread_key_create failed: %d", err);
gcc_android_arm64.c 15 // It finds the first available slot using pthread_key_create and uses
23 err = pthread_key_create(&k, nil);
25 fatalf("pthread_key_create failed: %d", err);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_android_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fatalf("pthread_key_create failed: %d", err);
gcc_android_arm64.c 15 // It finds the first available slot using pthread_key_create and uses
23 err = pthread_key_create(&k, nil);
25 fatalf("pthread_key_create failed: %d", err);
  /bionic/benchmarks/
pthread_benchmark.cpp 33 pthread_key_create(&key, NULL);
45 pthread_key_create(&key, NULL);
174 pthread_key_create(&key, NULL);
187 pthread_key_create(&key, NULL);

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>