Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc1248 pthread_attr_t attributes; in GetThreadStack() local
1249 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__); in GetThreadStack()
1250 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
1251 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()
1253 pthread_attr_t attributes; in GetThreadStack()
1254 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__); in GetThreadStack()
1255 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__); in GetThreadStack()
1256 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
1257 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()