OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_stack
(Results
1 - 1
of
1
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc
237
ThreadContext *IsThreadStackOrTls(uptr addr, bool *
is_stack
) {
247
*
is_stack
= (addr >= thr->stk_addr && addr < thr->stk_addr + thr->stk_size);
339
bool
is_stack
= false;
local
340
if (ThreadContext *tctx = IsThreadStackOrTls(addr, &
is_stack
)) {
344
loc->type =
is_stack
? ReportLocationStack : ReportLocationTLS;
Completed in 564 milliseconds