Searched refs:stack_begin (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/lsan/
H A Dlsan_thread.cc63 uptr stack_begin, stack_end, member in struct:__lsan::OnStartedArgs
71 stack_begin_ = args->stack_begin;
94 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
96 args.stack_end = args.stack_begin + stack_size;
139 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, argument
145 *stack_begin = context->stack_begin();
H A Dlsan.h25 stack_bottom = t->stack_begin(); \
H A Dlsan_thread.h31 uptr stack_begin() { return stack_begin_; } function in class:__lsan::ThreadContext
H A Dlsan_common.cc196 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; local
198 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
213 sp = stack_begin;
221 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp);
222 if (sp < stack_begin || sp >= stack_end) {
229 while (stack_begin < stack_end &&
230 !IsAccessibleMemoryRange(stack_begin, 1)) {
232 stack_begin += page_size;
235 skipped, stack_begin, stack_end);
238 stack_begin
[all...]
H A Dlsan_common.h154 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
/external/libchrome/base/debug/
H A Dstack_trace.cc66 uintptr_t stack_begin = 0; local
73 reinterpret_cast<void**>(&stack_begin),
79 uintptr_t stack_end = stack_begin + stack_size;
/external/google-breakpad/src/processor/
H A Dstackwalk_common.cc124 uint64_t stack_begin = 0, stack_end = 0; local
132 stack_begin = frame_x86->context.esp;
144 stack_begin = frame_amd64->context.rsp;
154 stack_begin = frame_arm->context.iregs[13];
166 stack_begin = frame_arm64->context.iregs[31];
170 if (!word_length || !stack_begin || !stack_end)
175 for(uint64_t address = stack_begin; address < stack_end; ) {
202 for (uint64_t address = stack_begin; address < stack_end;
/external/compiler-rt/lib/asan/
H A Dasan_thread.cc398 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, argument
403 *stack_begin = t->stack_bottom();

Completed in 217 milliseconds