OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsanThread
(Results
1 - 13
of
13
) sorted by null
/external/compiler-rt/lib/asan/
asan_thread.h
30
class
AsanThread
;
46
AsanThread
*thread;
55
//
AsanThread
are stored in TSD and destroyed when the thread dies.
56
class
AsanThread
{
58
static
AsanThread
*Create(thread_callback_t start_routine, void *arg);
110
// NOTE: There is no
AsanThread
constructor. It is allocated
136
explicit ScopedUnwinding(
AsanThread
*t) : thread(t) {
142
AsanThread
*thread;
146
AsanThread
*thread;
157
AsanThread
*GetCurrentThread()
[
all
...]
asan_thread.cc
39
// Drop the link to the
AsanThread
object.
76
//
AsanThread
implementation.
78
AsanThread
*
AsanThread
::Create(thread_callback_t start_routine,
81
uptr size = RoundUpTo(sizeof(
AsanThread
), PageSize);
82
AsanThread
*thread = (
AsanThread
*)MmapOrDie(size, __func__);
89
void
AsanThread
::TSDDtor(void *tsd) {
96
void
AsanThread
::Destroy() {
109
uptr size = RoundUpTo(sizeof(
AsanThread
), GetPageSizeCached())
[
all
...]
asan_win.cc
59
AsanThread
::TSDDtor(tsd);
asan_posix.cc
83
AsanThread
::TSDDtor(tsd);
asan_stats.cc
82
if (
AsanThread
*t = tctx->thread)
122
AsanThread
*t = GetCurrentThread();
asan_internal.h
66
class
AsanThread
;
asan_stack.h
33
AsanThread
*t;
asan_interceptors.cc
87
AsanThread
*t = GetCurrentThread();
168
AsanThread
*t = (
AsanThread
*)arg;
186
AsanThread
*t =
AsanThread
::Create(start_routine, arg);
720
AsanThread
*t =
AsanThread
::Create(start_routine, arg);
asan_mac.cc
265
AsanThread
*t = GetCurrentThread();
267
t =
AsanThread
::Create(0, 0);
asan_rtl.cc
660
// On Linux
AsanThread
::ThreadStart() calls malloc() that's why asan_inited
677
AsanThread
*main_thread =
AsanThread
::Create(0, 0);
740
AsanThread
*curr_thread = GetCurrentThread();
asan_fake_stack.cc
180
AsanThread
*t = GetCurrentThread();
asan_allocator2.cc
321
AsanThread
*t = GetCurrentThread();
441
AsanThread
*t = GetCurrentThread();
asan_report.cc
180
static void DescribeThread(
AsanThread
*t) {
352
AsanThread
*t = FindThreadByStackAddress(addr);
[
all
...]
Completed in 5252 milliseconds