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_threadgroup.cc92 jvmtiThreadGroupInfo* info_ptr) { in GetThreadGroupInfo() argument
124 info_ptr->name = copy.release(); in GetThreadGroupInfo()
133 info_ptr->parent = parent_group == nullptr in GetThreadGroupInfo()
142 info_ptr->max_priority = static_cast<jint>(prio_field->GetInt(obj)); in GetThreadGroupInfo()
149 info_ptr->is_daemon = daemon_field->GetBoolean(obj) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
Dti_timers.h44 static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr);
Dti_threadgroup.h48 jvmtiThreadGroupInfo* info_ptr);
Dti_thread.cc199 jvmtiError ThreadUtil::GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { in GetThreadInfo() argument
200 if (info_ptr == nullptr) { in GetThreadInfo()
227 info_ptr->name = name_uptr.get(); in GetThreadInfo()
229 info_ptr->priority = target->GetNativePriority(); in GetThreadInfo()
231 info_ptr->is_daemon = target->IsDaemon(); in GetThreadInfo()
240 info_ptr->thread_group = group == nullptr in GetThreadInfo()
244 info_ptr->thread_group = nullptr; in GetThreadInfo()
252 info_ptr->context_class_loader = ccl == nullptr in GetThreadInfo()
278 info_ptr->name = name_uptr.get(); in GetThreadInfo()
285 info_ptr->priority = static_cast<jint>(f->GetInt(peer)); in GetThreadInfo()
[all …]
Dti_stack.h76 jvmtiMonitorStackDepthInfo** info_ptr);
Dti_thread.h72 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr);
DOpenjdkJvmTi.cc190 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { in GetThreadInfo() argument
192 return ThreadUtil::GetThreadInfo(env, thread, info_ptr); in GetThreadInfo()
255 jvmtiThreadGroupInfo* info_ptr) { in GetThreadGroupInfo() argument
257 return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); in GetThreadGroupInfo()
824 jvmtiMonitorUsage* info_ptr) { in GetObjectMonitorUsage() argument
827 return ObjectUtil::GetObjectMonitorUsage(env, object, info_ptr); in GetObjectMonitorUsage()
1235 jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { in GetCurrentThreadCpuTimerInfo()
1248 jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { in GetThreadCpuTimerInfo()
1262 static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr) { in GetTimerInfo() argument
1264 return TimerUtil::GetTimerInfo(env, info_ptr); in GetTimerInfo()
Dti_stack.cc950 jvmtiMonitorStackDepthInfo** info_ptr) { in GetOwnedMonitorStackDepthInfo() argument
951 if (info_cnt == nullptr || info_ptr == nullptr) { in GetOwnedMonitorStackDepthInfo()
969 err = env->Allocate(nbytes, reinterpret_cast<unsigned char**>(info_ptr)); in GetOwnedMonitorStackDepthInfo()
975 (*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 …]