OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_stack
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h
130
bool
is_stack
; // does this region contain a thread's stack:
member in struct:MemoryRegionMap::Region
157
is_stack
= false; // not a stack till marked such
168
void set_is_stack() {
is_stack
= true; }
/external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h
142
bool
is_stack
; // does this region contain a thread's stack:
member in struct:MemoryRegionMap::Region
169
is_stack
= false; // not a stack till marked such
180
void set_is_stack() {
is_stack
= true; }
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc
248
ThreadContext *IsThreadStackOrTls(uptr addr, bool *
is_stack
) {
258
*
is_stack
= (addr >= thr->stk_addr && addr < thr->stk_addr + thr->stk_size);
351
bool
is_stack
= false;
local
352
if (ThreadContext *tctx = IsThreadStackOrTls(addr, &
is_stack
)) {
356
loc->type =
is_stack
? ReportLocationStack : ReportLocationTLS;
Completed in 45 milliseconds