HomeSort by relevance Sort by last modified time
    Searched refs:AsanThreadContext (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/lib/asan/
asan_thread.h 35 class AsanThreadContext : public ThreadContextBase {
37 explicit AsanThreadContext(int tid)
50 // AsanThreadContext objects are never freed, so we need many of them.
51 COMPILER_CHECK(sizeof(AsanThreadContext) <= 256);
71 AsanThreadContext *context() { return context_; }
72 void set_context(AsanThreadContext *context) { context_ = context; }
125 AsanThreadContext *context_;
173 AsanThreadContext *GetThreadContextByTidLocked(u32 tid);
asan_thread.cc 28 // AsanThreadContext implementation.
35 void AsanThreadContext::OnCreated(void *arg) {
43 void AsanThreadContext::OnFinished() {
57 return new(allocator_for_thread_context) AsanThreadContext(tid);
65 // Never reuse ASan threads: we store pointer to AsanThreadContext
67 // be called. It would be wrong to reuse AsanThreadContext for another
76 AsanThreadContext *GetThreadContextByTidLocked(u32 tid) {
77 return static_cast<AsanThreadContext *>(
99 AsanThreadContext *context = (AsanThreadContext*)tsd
    [all...]
asan_posix.cc 107 AsanThreadContext *context = (AsanThreadContext*)tsd;
asan_stats.cc 77 AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base);
asan_report.h 49 void DescribeThread(AsanThreadContext *context);
asan_report.cc 359 const char *ThreadNameWithParenthesis(AsanThreadContext *t, char buff[],
374 AsanThreadContext *t = GetThreadContextByTidLocked(tid);
549 AsanThreadContext *alloc_thread =
554 AsanThreadContext *free_thread = nullptr;
595 void DescribeThread(AsanThreadContext *context) {
619 AsanThreadContext *parent_context =
    [all...]

Completed in 127 milliseconds