OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pthread_t
(Results
126 - 150
of
1311
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/valgrind/helgrind/tests/
tc02_simple_tls.c
21
pthread_t
child;
/external/valgrind/none/tests/
pth_stackalign.c
18
pthread_t
t;
pth_blockedsig.c
11
static
pthread_t
main_thread;
35
pthread_t
child;
/external/valgrind/none/tests/solaris/
threads_exitall.c
21
pthread_t
thread;
/prebuilts/go/darwin-x86/misc/cgo/test/
issue5337.go
19
pthread_t
tid;
/prebuilts/go/linux-x86/misc/cgo/test/
issue5337.go
19
pthread_t
tid;
/system/extras/simpleperf/runtest/
function_pthread.cpp
20
pthread_t
thread;
/bionic/libc/bionic/
pthread_equal.cpp
31
int pthread_equal(
pthread_t
lhs,
pthread_t
rhs) {
pthread_self.cpp
31
pthread_t
pthread_self() {
32
return reinterpret_cast<
pthread_t
>(__get_thread());
pthread_internal.cpp
44
pthread_t
__pthread_internal_add(pthread_internal_t* thread) {
54
return reinterpret_cast<
pthread_t
>(thread);
82
pthread_internal_t* __pthread_internal_find(
pthread_t
thread_id) {
/external/compiler-rt/lib/tsan/benchmarks/
mini_bench_local.cc
39
pthread_t
*t = new
pthread_t
[n_threads];
mini_bench_shared.cc
41
pthread_t
*t = new
pthread_t
[n_threads];
/external/compiler-rt/test/tsan/
fork_multithreaded.cc
20
pthread_t
th;
28
pthread_t
th2;
signal_errno.cc
11
pthread_t
mainth;
41
pthread_t
th;
/external/curl/lib/
curl_threads.h
29
# define curl_thread_t
pthread_t
*
30
# define curl_thread_t_null (
pthread_t
*)0
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/
types.pass.cpp
17
// typedef
pthread_t
native_handle_type;
26
static_assert((std::is_same<std::thread::native_handle_type,
pthread_t
>::value), "");
/external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h
53
uint32_t sourceID; /*
pthread_t
= unsigned long int */
60
pthread_t
*pThread;
/external/valgrind/drd/tests/
std_atomic.cpp
33
pthread_t
thread1;
34
pthread_t
thread2;
/external/valgrind/none/tests/darwin/
bug228343.c
51
pthread_t
w_1;
52
pthread_t
w_2;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/
types.pass.cpp
15
// typedef
pthread_t
native_handle_type;
24
static_assert((std::is_same<std::thread::native_handle_type,
pthread_t
>::value), "");
/frameworks/wilhelm/src/
locks.c
20
// Use this macro to validate a
pthread_t
before passing it into pthread_gettid_np.
24
// we check that the
pthread_t
is probably valid. Note that it is theoretically
25
// possible for something to look like a valid
pthread_t
but not actually be valid.
27
#define LIKELY_VALID(ptr) (((ptr) != (
pthread_t
) 0) && ((((size_t) (ptr)) & 3) == 0))
82
pthread_t
me = pthread_self();
83
pthread_t
owner = thiz->mOwner;
99
pthread_t
zero;
100
memset(&zero, 0, sizeof(
pthread_t
));
101
if (0 != memcmp(&zero, &thiz->mOwner, sizeof(
pthread_t
))) {
102
pthread_t
me = pthread_self()
[
all
...]
/external/libavc/common/
ithread.c
68
return sizeof(
pthread_t
);
80
return pthread_create((
pthread_t
*)thread_handle, NULL,(void *(*)(void *)) strt, argument);
86
pthread_t
*pthread_handle = (
pthread_t
*)thread_handle;
180
pthread_t
cur_thread = pthread_self();
/external/libmpeg2/common/
ithread.c
62
return sizeof(
pthread_t
);
73
return pthread_create((
pthread_t
*)thread_handle, NULL,(void *(*)(void *)) strt, argument);
78
pthread_t
*pthread_handle = (
pthread_t
*)thread_handle;
162
pthread_t
cur_thread = pthread_self();
/bionic/benchmarks/
pthread_benchmark.cpp
22
/* Must not be static! */
pthread_t
(*pthread_self_fp)() = pthread_self;
130
pthread_t
thread;
147
pthread_t
thread;
164
pthread_t
thread;
/bionic/tests/
bug_26110743_test.cpp
49
pthread_t
t;
64
pthread_t
t;
93
pthread_t
t;
108
pthread_t
t;
Completed in 6736 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>