Home
last modified time | relevance | path

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

/art/runtime/
Dutils.cc96 pthread_attr_t attributes; in GetThreadStack() local
97 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__); in GetThreadStack()
98 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
99 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()
101 pthread_attr_t attributes; in GetThreadStack()
102 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__); in GetThreadStack()
103 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__); in GetThreadStack()
104 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
105 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()