Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_timers.cc59 jvmtiError TimerUtil::GetTimerInfo(jvmtiEnv* env ATTRIBUTE_UNUSED, jvmtiTimerInfo* info_ptr) { in GetTimerInfo() argument
60 if (info_ptr == nullptr) { in GetTimerInfo()
64 info_ptr->max_value = static_cast<jlong>(std::numeric_limits<uint64_t>::max()); in GetTimerInfo()
65 info_ptr->may_skip_forward = JNI_TRUE; in GetTimerInfo()
66 info_ptr->may_skip_backward = JNI_TRUE; in GetTimerInfo()
67 info_ptr->kind = jvmtiTimerKind::JVMTI_TIMER_ELAPSED; in GetTimerInfo()
Dti_timers.h44 static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr);
Dti_threadgroup.cc92 jvmtiThreadGroupInfo* info_ptr) { in GetThreadGroupInfo() argument
127 info_ptr->name = copy.release(); in GetThreadGroupInfo()
136 info_ptr->parent = parent_group == nullptr in GetThreadGroupInfo()
145 info_ptr->max_priority = static_cast<jint>(prio_field->GetInt(obj.Get())); in GetThreadGroupInfo()
152 info_ptr->is_daemon = daemon_field->GetBoolean(obj.Get()) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
Dti_threadgroup.h48 jvmtiThreadGroupInfo* info_ptr);
Dti_thread.cc261 jvmtiError ThreadUtil::GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { in GetThreadInfo() argument
262 if (info_ptr == nullptr) { in GetThreadInfo()
289 info_ptr->name = name_uptr.get(); in GetThreadInfo()
291 info_ptr->priority = target->GetNativePriority(); in GetThreadInfo()
293 info_ptr->is_daemon = target->IsDaemon(); in GetThreadInfo()
302 info_ptr->thread_group = group == nullptr in GetThreadInfo()
306 info_ptr->thread_group = nullptr; in GetThreadInfo()
314 info_ptr->context_class_loader = ccl == nullptr in GetThreadInfo()
340 info_ptr->name = name_uptr.get(); in GetThreadInfo()
347 info_ptr->priority = static_cast<jint>(f->GetInt(peer)); in GetThreadInfo()
[all …]
Dti_stack.h77 jvmtiMonitorStackDepthInfo** info_ptr);
DOpenjdkJvmTi.cc202 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { in GetThreadInfo() argument
204 return ThreadUtil::GetThreadInfo(env, thread, info_ptr); in GetThreadInfo()
267 jvmtiThreadGroupInfo* info_ptr) { in GetThreadGroupInfo() argument
269 return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); in GetThreadGroupInfo()
806 jvmtiMonitorUsage* info_ptr) { in GetObjectMonitorUsage() argument
809 return ObjectUtil::GetObjectMonitorUsage(env, object, info_ptr); in GetObjectMonitorUsage()
1204 jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { in GetCurrentThreadCpuTimerInfo()
1217 jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { in GetThreadCpuTimerInfo()
1231 static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr) { in GetTimerInfo() argument
1233 return TimerUtil::GetTimerInfo(env, info_ptr); in GetTimerInfo()
Dti_thread.h102 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr);
Dti_stack.cc966 jvmtiMonitorStackDepthInfo** info_ptr) { in GetOwnedMonitorStackDepthInfo() argument
967 if (info_cnt == nullptr || info_ptr == nullptr) { in GetOwnedMonitorStackDepthInfo()
985 err = env->Allocate(nbytes, reinterpret_cast<unsigned char**>(info_ptr)); in GetOwnedMonitorStackDepthInfo()
991 (*info_ptr)[i] = { in GetOwnedMonitorStackDepthInfo()
/art/openjdkjvmti/include/
Djvmti.h1042 jvmtiThreadInfo* info_ptr);
1070 jvmtiThreadGroupInfo* info_ptr);
1315 jvmtiMonitorUsage* info_ptr);
1686 jvmtiTimerInfo* info_ptr);
1694 jvmtiTimerInfo* info_ptr);
1703 jvmtiTimerInfo* info_ptr);
1844 jvmtiThreadInfo* info_ptr) { in GetThreadInfo()
1845 return functions->GetThreadInfo(this, thread, info_ptr); in GetThreadInfo()
1888 jvmtiThreadGroupInfo* info_ptr) { in GetThreadGroupInfo()
1889 return functions->GetThreadGroupInfo(this, group, info_ptr); in GetThreadGroupInfo()
[all …]