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

  /external/compiler-rt/lib/lsan/
lsan_thread.h 27 uptr stack_begin() { return stack_begin_; } function in class:__lsan::ThreadContext
lsan_thread.cc 61 uptr stack_begin, stack_end, member in struct:__lsan::OnStartedArgs
68 stack_begin_ = args->stack_begin;
89 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
91 args.stack_end = args.stack_begin + stack_size;
133 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
139 *stack_begin = context->stack_begin();
lsan_common.cc 212 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; local
213 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
228 sp = stack_begin;
236 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp);
237 if (sp < stack_begin || sp >= stack_end) {
244 stack_begin = sp;
246 ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK",
  /art/runtime/
thread.h 109 // +---------------------+ <- stack_begin
578 return tlsPtr_.stack_size - (tlsPtr_.stack_end - tlsPtr_.stack_begin);
602 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA);
609 return tlsPtr_.stack_end == tlsPtr_.stack_begin;
1066 byte* stack_begin; variable
    [all...]

Completed in 398 milliseconds