Lines Matching refs:current_phase_
47 jvmtiPhase PhaseUtil::current_phase_ = static_cast<jvmtiPhase>(0); member in openjdkjvmti::PhaseUtil
63 PhaseUtil::current_phase_ = JVMTI_PHASE_PRIMORDIAL; in NextRuntimePhase()
67 PhaseUtil::current_phase_ = JVMTI_PHASE_START; in NextRuntimePhase()
74 PhaseUtil::current_phase_ = JVMTI_PHASE_LIVE; in NextRuntimePhase()
88 PhaseUtil::current_phase_ = JVMTI_PHASE_DEAD; in NextRuntimePhase()
104 jvmtiPhase now = PhaseUtil::current_phase_; in GetPhase()
115 jvmtiPhase now = PhaseUtil::current_phase_; in IsLivePhase()
125 DCHECK_EQ(0u, static_cast<size_t>(PhaseUtil::current_phase_)); in SetToOnLoad()
126 PhaseUtil::current_phase_ = JVMTI_PHASE_ONLOAD; in SetToOnLoad()
130 …DCHECK_EQ(static_cast<size_t>(JVMTI_PHASE_ONLOAD), static_cast<size_t>(PhaseUtil::current_phase_)); in SetToPrimordial()
131 PhaseUtil::current_phase_ = JVMTI_PHASE_ONLOAD; in SetToPrimordial()
135 DCHECK_EQ(static_cast<size_t>(0), static_cast<size_t>(PhaseUtil::current_phase_)); in SetToLive()
137 PhaseUtil::current_phase_ = JVMTI_PHASE_LIVE; in SetToLive()
156 return PhaseUtil::current_phase_; in GetPhaseUnchecked()