Searched refs:stack_base (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | utils.cc | 82 void GetThreadStack(pthread_t thread, void*& stack_base, size_t& stack_size) { in GetThreadStack() argument 91 stack_base = reinterpret_cast<byte*>(stack_addr) - stack_size; in GetThreadStack() 93 stack_base = stack_addr; in GetThreadStack() 98 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, &stack_base, &stack_size), __FUNCTION__); in GetThreadStack()
|
D | utils.h | 326 void GetThreadStack(pthread_t thread, void*& stack_base, size_t& stack_size);
|
D | thread.cc | 418 void* stack_base; in InitStackHwm() local 420 GetThreadStack(pthread_self_, stack_base, stack_size); in InitStackHwm() 423 …VLOG(threads) << StringPrintf("Native stack is at %p (%s)", stack_base, PrettySize(stack_size).c_s… in InitStackHwm() 425 stack_begin_ = reinterpret_cast<byte*>(stack_base); in InitStackHwm()
|