Home
last modified time | relevance | path

Searched refs:stack_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/binary_translation/guest_os_primitives/
Dguest_thread.cc175 MunmapOrDie(thread->stack_, thread->mmap_size_); in Destroy()
219 stack_ = nullptr; // Do not unmap in Destroy! in AllocStack()
231 stack_ = Mmap(mmap_size_); in AllocStack()
232 if (stack_ == MAP_FAILED) { in AllocStack()
234 stack_ = nullptr; // Do not unmap in Destroy! in AllocStack()
238 if (mprotect(stack_, guard_size_, PROT_NONE) != 0) { in AllocStack()
243 stack_top_ = ToGuestAddr(stack_) + stack_size_ - 16; in AllocStack()
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/
Dguest_thread.h82 *stack_base = ToGuestAddr(stack_); in GetAttr()
126 void* stack_ = nullptr; variable