OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_key_create
(Results
1 - 25
of
636
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
coverage.txt
1
This document defines the coverage for the
pthread_key_create
function:
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");
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-2.c
8
* Test that
pthread_key_create
()
11
* provided by
pthread_key_create
() are opaque objects used to locate thread-specific data.
52
if (
pthread_key_create
(&keys[i], NULL) != 0) {
53
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");
assertions.xml
4
int
pthread_key_create
(pthread_key_t *key, void (*destructor(void*));
7
provided by
pthread_key_create
() are opaque objects used to locate thread-specific data.
38
If successful, the
pthread_key_create
() function shall store the newly created key value
/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);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
1-1.c
11
*
pthread_key_create
. Different threads may bind different values to the same key.
12
* Calling pthread_setspecific with a key value not obtiained from
pthread_key_create
of after
38
if (
pthread_key_create
(&keys[i], NULL) != 0) {
39
printf("Error:
pthread_key_create
() failed\n");
assertions.xml
6
pthread_key_create
. Different threads may bind different values to the same key.
7
Calling pthread_setspecific with a key value not obtiained from
pthread_key_create
of after
1-2.c
11
*
pthread_key_create
. Different threads may bind different values to the same key.
12
* Calling pthread_setspecific with a key value not obtiained from
pthread_key_create
of after
62
if (
pthread_key_create
(&key, NULL) != 0) {
63
printf("Error:
pthread_key_create
() failed\n");
/prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_android_arm.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);
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
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);
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);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
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");
3-1.c
31
if (
pthread_key_create
(&key, NULL) != 0) {
32
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");
/external/skia/src/ports/
SkTLS_pthread.cpp
19
once(
pthread_key_create
, &gSkTLSKey, SkTLS::Destructor);
/external/skqp/src/ports/
SkTLS_pthread.cpp
19
once(
pthread_key_create
, &gSkTLSKey, SkTLS::Destructor);
/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);
/external/compiler-rt/test/tsan/
pthread_key.cc
13
int err =
pthread_key_create
(&keys_[i], 0);
15
fprintf(stderr, "
pthread_key_create
failed with %d\n", err);
/external/selinux/libselinux/src/
selinux_internal.h
116
#pragma weak
pthread_key_create
macro
133
(
pthread_key_create
!= NULL ?
pthread_key_create
(KEY, DESTRUCTOR) : -1)
/bionic/benchmarks/
pthread_benchmark.cpp
34
pthread_key_create
(&key, NULL);
46
pthread_key_create
(&key, NULL);
218
pthread_key_create
(&key, NULL);
231
pthread_key_create
(&key, NULL);
/external/libchrome/base/threading/
thread_local_storage_posix.cc
14
return !
pthread_key_create
(key,
Completed in 822 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>