OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindThread
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc
96
// Test SetThreadName and
FindThread
.
99
EXPECT_EQ(7U, registry->
FindThread
(HasName, (void*)"seven"));
101
registry->
FindThread
(HasName, (void*)"none"));
102
EXPECT_EQ(0U, registry->
FindThread
(HasUid, (void*)get_uid(0)));
103
EXPECT_EQ(10U, registry->
FindThread
(HasUid, (void*)get_uid(10)));
105
registry->
FindThread
(HasUid, (void*)0x1234));
/external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h
104
u32
FindThread
(FindThreadCallback cb, void *arg);
sanitizer_thread_registry.cc
162
u32 ThreadRegistry::
FindThread
(FindThreadCallback cb, void *arg) {
/external/compiler-rt/lib/lsan/
lsan_thread.cc
118
return thread_registry->
FindThread
(FindThreadByUid, (void*)uid);
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc
269
int res = ctx->thread_registry->
FindThread
(FindThreadByUid, (void*)uid);
Completed in 38 milliseconds