Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_phase.h44 static jvmtiError GetPhase(jvmtiEnv* env, jvmtiPhase* phase_ptr);
61 static jvmtiPhase GetPhaseUnchecked();
64 static jvmtiPhase current_phase_;
Dti_phase.cc47 jvmtiPhase PhaseUtil::current_phase_ = static_cast<jvmtiPhase>(0);
100 jvmtiError PhaseUtil::GetPhase(jvmtiEnv* env ATTRIBUTE_UNUSED, jvmtiPhase* phase_ptr) { in GetPhase()
104 jvmtiPhase now = PhaseUtil::current_phase_; in GetPhase()
115 jvmtiPhase now = PhaseUtil::current_phase_; in IsLivePhase()
155 jvmtiPhase PhaseUtil::GetPhaseUnchecked() { in GetPhaseUnchecked()
Dti_search.cc274 jvmtiPhase phase = PhaseUtil::GetPhaseUnchecked(); in AddToDexClassLoaderInMemory()
277 if (phase != jvmtiPhase::JVMTI_PHASE_LIVE) { in AddToDexClassLoaderInMemory()
333 jvmtiPhase phase = PhaseUtil::GetPhaseUnchecked(); in AddToDexClassLoader()
336 if (phase != jvmtiPhase::JVMTI_PHASE_LIVE) { in AddToDexClassLoader()
383 jvmtiPhase phase = PhaseUtil::GetPhaseUnchecked(); in AddToSystemClassLoaderSearch()
385 if (phase == jvmtiPhase::JVMTI_PHASE_ONLOAD) { in AddToSystemClassLoaderSearch()
390 } else if (phase != jvmtiPhase::JVMTI_PHASE_LIVE) { in AddToSystemClassLoaderSearch()
Dti_class.cc182 jvmtiPhase phase = PhaseUtil::GetPhaseUnchecked(); in ClassPreDefine()
DOpenjdkJvmTi.cc1271 static jvmtiError GetPhase(jvmtiEnv* env, jvmtiPhase* phase_ptr) { in GetPhase()
/art/test/901-hello-ti-agent/
Dbasics.cc41 static jvmtiPhase getPhase(jvmtiEnv* jenv) { in getPhase()
42 jvmtiPhase out = static_cast<jvmtiPhase>(-1); in getPhase()
143 jvmtiPhase current_phase; in OnLoad()
168 jvmtiPhase current_phase; in Java_art_Test901_checkLivePhase()
/art/openjdkjvmti/include/
Djvmti.h284 } jvmtiPhase; typedef
1682 jvmtiPhase* phase_ptr);
2491 jvmtiError GetPhase(jvmtiPhase* phase_ptr) { in GetPhase()