Searched refs:stack_begin (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_thread.cc | 63 uptr stack_begin, stack_end, member 71 stack_begin_ = args->stack_begin; in OnStarted() 94 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size, in ThreadStart() 96 args.stack_end = args.stack_begin + stack_size; in ThreadStart() 139 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument 145 *stack_begin = context->stack_begin(); in GetThreadRangesLocked()
|
D | lsan_common.cc | 196 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local 198 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads() 213 sp = stack_begin; in ProcessThreads() 221 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp); in ProcessThreads() 222 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads() 229 while (stack_begin < stack_end && in ProcessThreads() 230 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads() 232 stack_begin += page_size; in ProcessThreads() 235 skipped, stack_begin, stack_end); in ProcessThreads() 238 stack_begin = sp; in ProcessThreads() [all …]
|
D | lsan.h | 25 stack_bottom = t->stack_begin(); \
|
D | lsan_thread.h | 31 uptr stack_begin() { return stack_begin_; } in stack_begin() function
|
D | lsan_common.h | 154 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
|
/external/libchrome/base/debug/ |
D | stack_trace.cc | 164 uintptr_t stack_begin = 0; in GetStackEnd() local 170 &attributes, reinterpret_cast<void**>(&stack_begin), &stack_size); in GetStackEnd() 175 uintptr_t stack_end = stack_begin + stack_size; in GetStackEnd()
|
/external/cronet/base/debug/ |
D | stack_trace.cc | 183 uintptr_t stack_begin = 0; in GetStackEnd() local 189 &attributes, reinterpret_cast<void**>(&stack_begin), &stack_size); in GetStackEnd() 194 uintptr_t stack_end = stack_begin + stack_size; in GetStackEnd()
|
/external/google-breakpad/src/processor/ |
D | stackwalk_common.cc | 124 uint64_t stack_begin = 0, stack_end = 0; in PrintStackContents() local 132 stack_begin = frame_x86->context.esp; in PrintStackContents() 144 stack_begin = frame_amd64->context.rsp; in PrintStackContents() 154 stack_begin = frame_arm->context.iregs[13]; in PrintStackContents() 166 stack_begin = frame_arm64->context.iregs[31]; in PrintStackContents() 170 if (!word_length || !stack_begin || !stack_end) in PrintStackContents() 175 for(uint64_t address = stack_begin; address < stack_end; ) { in PrintStackContents() 202 for (uint64_t address = stack_begin; address < stack_end; in PrintStackContents()
|
/external/compiler-rt/lib/asan/ |
D | asan_thread.cc | 398 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument 403 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()
|