Searched refs:stack_base (Results 1 – 5 of 5) sorted by relevance
/frameworks/libs/native_bridge_support/android_api/libc/proxy/ |
D | pthread_translation.cc | 63 void* guest_stack = attr.stack_base; in DoCustomTrampoline_pthread_create() 71 attr.stack_base = nullptr; in DoCustomTrampoline_pthread_create() 110 GuestAddr stack_base; in DoCustomTrampoline_pthread_getattr_np() local 115 if (GetGuestThreadAttr(tid, &stack_base, &stack_size, &guard_size, &error)) { in DoCustomTrampoline_pthread_getattr_np() 116 guest_attr->stack_base = ToHostAddr<void>(stack_base); in DoCustomTrampoline_pthread_getattr_np()
|
D | pthread_translation.h | 40 CHECK_FIELD_LAYOUT(pthread_attr_t, stack_base, 32, 32);
|
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/ |
D | guest_thread.h | 81 void GetAttr(GuestAddr* stack_base, size_t* stack_size, size_t* guard_size) const { in GetAttr() argument 82 *stack_base = ToGuestAddr(stack_); in GetAttr()
|
D | guest_thread_manager.h | 31 GuestAddr* stack_base,
|
/frameworks/libs/binary_translation/guest_os_primitives/ |
D | guest_thread_manager.cc | 82 GuestAddr* stack_base, in GetGuestThreadAttr() argument 88 thread->GetAttr(stack_base, stack_size, guard_size); in GetGuestThreadAttr()
|