Searched refs:stackBottom (Results 1 – 4 of 4) sorted by relevance
41 inline bool IsValidFrame(uintptr_t frame, uintptr_t stackTop, uintptr_t stackBottom) in IsValidFrame() argument43 return ((frame > stackBottom) && (frame < stackTop - sizeof(uintptr_t))); in IsValidFrame()
34 AT_SYMBOL_HIDDEN int GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop);
180 int GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() argument187 stackBottom = reinterpret_cast<uintptr_t>(base); in GetStackRange()
244 uintptr_t stackBottom = (uintptr_t)base; in UnwindWithContextByFramePointer() local250 if (stackBottom < prevFp && (prevFp + sizeof(uintptr_t)) < stackTop) { in UnwindWithContextByFramePointer()