Lines Matching refs:java_thread

1258 JavaThread* java_lang_Thread::thread(oop java_thread) {
1259 return (JavaThread*)java_thread->address_field(_eetop_offset);
1263 void java_lang_Thread::set_thread(oop java_thread, JavaThread* thread) {
1264 java_thread->address_field_put(_eetop_offset, (address)thread);
1268 oop java_lang_Thread::name(oop java_thread) {
1269 return java_thread->obj_field(_name_offset);
1273 void java_lang_Thread::set_name(oop java_thread, oop name) {
1274 java_thread->obj_field_put(_name_offset, name);
1278 ThreadPriority java_lang_Thread::priority(oop java_thread) {
1279 return (ThreadPriority)java_thread->int_field(_priority_offset);
1283 void java_lang_Thread::set_priority(oop java_thread, ThreadPriority priority) {
1284 java_thread->int_field_put(_priority_offset, priority);
1288 oop java_lang_Thread::threadGroup(oop java_thread) {
1289 return java_thread->obj_field(_group_offset);
1293 bool java_lang_Thread::is_stillborn(oop java_thread) {
1294 return java_thread->bool_field(_stillborn_offset) != 0;
1299 void java_lang_Thread::set_stillborn(oop java_thread) {
1300 java_thread->bool_field_put(_stillborn_offset, true);
1304 bool java_lang_Thread::is_alive(oop java_thread) {
1305 JavaThread* thr = java_lang_Thread::thread(java_thread);
1310 bool java_lang_Thread::is_daemon(oop java_thread) {
1311 return java_thread->bool_field(_daemon_offset) != 0;
1315 void java_lang_Thread::set_daemon(oop java_thread) {
1316 java_thread->bool_field_put(_daemon_offset, true);
1319 oop java_lang_Thread::context_class_loader(oop java_thread) {
1320 return java_thread->obj_field(_contextClassLoader_offset);
1323 oop java_lang_Thread::inherited_access_control_context(oop java_thread) {
1324 return java_thread->obj_field(_inheritedAccessControlContext_offset);
1328 jlong java_lang_Thread::stackSize(oop java_thread) {
1330 return java_thread->long_field(_stackSize_offset);
1337 void java_lang_Thread::set_thread_status(oop java_thread,
1341 java_thread->int_field_put(_thread_status_offset, status);
1346 java_lang_Thread::ThreadStatus java_lang_Thread::get_thread_status(oop java_thread) {
1354 return (java_lang_Thread::ThreadStatus)java_thread->int_field(_thread_status_offset);
1360 JavaThread* thr = java_lang_Thread::thread(java_thread);
1370 jlong java_lang_Thread::thread_id(oop java_thread) {
1373 return java_thread->long_field(_tid_offset);
1379 oop java_lang_Thread::park_blocker(oop java_thread) {
1384 return java_thread->obj_field(_park_blocker_offset);
1390 jlong java_lang_Thread::park_event(oop java_thread) {
1392 return java_thread->long_field(_park_event_offset);
1397 bool java_lang_Thread::set_park_event(oop java_thread, jlong ptr) {
1399 java_thread->long_field_put(_park_event_offset, ptr);
1406 const char* java_lang_Thread::thread_status_name(oop java_thread) {
1408 ThreadStatus status = (java_lang_Thread::ThreadStatus)java_thread->int_field(_thread_status_offset);