OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsanThread
(Results
1 - 11
of
11
) sorted by null
/external/compiler-rt/lib/asan/
asan_thread.h
30
class
AsanThread
;
44
AsanThread
*thread;
53
//
AsanThread
are stored in TSD and destroyed when the thread dies.
54
class
AsanThread
{
56
static
AsanThread
*Create(thread_callback_t start_routine, void *arg);
94
AsanThread
() {}
111
AsanThread
*thread;
122
AsanThread
*GetCurrentThread();
123
void SetCurrentThread(
AsanThread
*t);
125
AsanThread
*FindThreadByStackAddress(uptr addr)
[
all
...]
asan_thread.cc
38
// Drop the link to the
AsanThread
object.
72
//
AsanThread
implementation.
74
AsanThread
*
AsanThread
::Create(thread_callback_t start_routine,
77
uptr size = RoundUpTo(sizeof(
AsanThread
), PageSize);
78
AsanThread
*thread = (
AsanThread
*)MmapOrDie(size, __FUNCTION__);
86
void
AsanThread
::TSDDtor(void *tsd) {
94
void
AsanThread
::Destroy() {
106
uptr size = RoundUpTo(sizeof(
AsanThread
), GetPageSizeCached())
[
all
...]
asan_internal.h
73
class
AsanThread
;
asan_stack.h
40
AsanThread
*t; \
asan_stats.cc
91
if (
AsanThread
*t = tctx->thread)
131
AsanThread
*t = GetCurrentThread();
asan_interceptors.cc
92
AsanThread
*t = GetCurrentThread();
141
AsanThread
*t = (
AsanThread
*)arg;
161
AsanThread
*t =
AsanThread
::Create(start_routine, arg);
645
AsanThread
*t =
AsanThread
::Create(start_routine, arg);
asan_rtl.cc
411
AsanThread
*curr_thread = GetCurrentThread();
529
AsanTSDInit(
AsanThread
::TSDDtor);
541
// On Linux
AsanThread
::ThreadStart() calls malloc() that's why asan_inited
549
AsanThread
*main_thread =
AsanThread
::Create(0, 0);
asan_report.cc
268
AsanThread
*t = FindThreadByStackAddress(addr);
371
AsanThread
*t = GetCurrentThread();
482
AsanThread
*curr_thread = GetCurrentThread();
491
AsanThread
*curr_thread = GetCurrentThread();
asan_mac.cc
297
AsanThread
*t = GetCurrentThread();
299
t =
AsanThread
::Create(0, 0);
asan_fake_stack.cc
166
AsanThread
*t = GetCurrentThread();
asan_allocator2.cc
351
AsanThread
*t = GetCurrentThread();
466
AsanThread
*t = GetCurrentThread();
Completed in 1390 milliseconds