Home | History | Annotate | Download | only in runtime

Lines Matching refs:single_step_control

3072   const SingleStepControl* single_step_control = thread->GetSingleStepControl();
3073 if (single_step_control != nullptr) {
3075 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
3079 if (single_step_control->GetMethod() != m) {
3082 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
3085 } else if (single_step_control->ContainsDexPc(dex_pc)) {
3089 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
3098 if (stack_depth < single_step_control->GetStackDepth()) {
3102 } else if (stack_depth == single_step_control->GetStackDepth()) {
3104 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
3107 } else if (single_step_control->ContainsDexPc(dex_pc)) {
3113 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
3122 if (stack_depth < single_step_control->GetStackDepth()) {
3828 SingleStepControl* single_step_control =
3831 if (single_step_control == nullptr) {
3836 ArtMethod* m = single_step_control->GetMethod();
3842 DebugCallbackContext context(single_step_control, line_number, code_item);
3847 thread->ActivateSingleStepControl(single_step_control);
3851 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3852 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3854 << ArtMethod::PrettyMethod(single_step_control->GetMethod());
3856 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
3858 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {