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

  /external/compiler-rt/lib/lsan/
lsan_thread.h 31 uptr stack_begin() { return stack_begin_; } function in class:__lsan::ThreadContext
lsan_thread.cc 63 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,
145 *stack_begin = context->stack_begin();
lsan_common.cc 196 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 = sp
    [all...]
  /external/libchrome/base/debug/
stack_trace.cc 164 uintptr_t stack_begin = 0; local
170 &attributes, reinterpret_cast<void**>(&stack_begin), &stack_size);
175 uintptr_t stack_end = stack_begin + stack_size;
  /external/google-breakpad/src/processor/
stackwalk_common.cc 124 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;
    [all...]
  /art/runtime/
thread.h 142 // +---------------------+ <- stack_begin
816 return tlsPtr_.stack_size - (tlsPtr_.stack_end - tlsPtr_.stack_begin);
1613 uint8_t* stack_begin; variable
    [all...]

Completed in 123 milliseconds