Home
last modified time | relevance | path

Searched refs:stack_base (Results 1 – 5 of 5) sorted by relevance

/frameworks/libs/native_bridge_support/android_api/libc/proxy/
Dpthread_translation.cc63 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()
Dpthread_translation.h40 CHECK_FIELD_LAYOUT(pthread_attr_t, stack_base, 32, 32);
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/
Dguest_thread.h81 void GetAttr(GuestAddr* stack_base, size_t* stack_size, size_t* guard_size) const { in GetAttr() argument
82 *stack_base = ToGuestAddr(stack_); in GetAttr()
Dguest_thread_manager.h31 GuestAddr* stack_base,
/frameworks/libs/binary_translation/guest_os_primitives/
Dguest_thread_manager.cc82 GuestAddr* stack_base, in GetGuestThreadAttr() argument
88 thread->GetAttr(stack_base, stack_size, guard_size); in GetGuestThreadAttr()