Home
last modified time | relevance | path

Searched refs:single_step_control (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Ddebugger.cc3056 const SingleStepControl* single_step_control = thread->GetSingleStepControl(); in UpdateDebugger() local
3057 if (single_step_control != nullptr) { in UpdateDebugger()
3059 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { in UpdateDebugger()
3063 if (single_step_control->GetMethod() != m) { in UpdateDebugger()
3066 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { in UpdateDebugger()
3069 } else if (single_step_control->ContainsDexPc(dex_pc)) { in UpdateDebugger()
3073 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { in UpdateDebugger()
3082 if (stack_depth < single_step_control->GetStackDepth()) { in UpdateDebugger()
3086 } else if (stack_depth == single_step_control->GetStackDepth()) { in UpdateDebugger()
3088 if (single_step_control->GetStepSize() == JDWP::SS_MIN) { in UpdateDebugger()
[all …]
Dentrypoints_order_test.cc107 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, debug_invoke_req, single_step_control, sizeof(void*)); in CheckThreadOffsets()
108 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, single_step_control, stacked_shadow_frame_record, in CheckThreadOffsets()
Dthread.h750 return tlsPtr_.single_step_control; in GetSingleStepControl()
1141 instrumentation_stack(nullptr), debug_invoke_req(nullptr), single_step_control(nullptr), in tls_ptr_sized_values()
1218 SingleStepControl* single_step_control; member
Dthread.cc1444 if (tlsPtr_.single_step_control != nullptr) { in ~Thread()
1445 delete tlsPtr_.single_step_control; in ~Thread()
2560 tlsPtr_.single_step_control = ssc; in ActivateSingleStepControl()
2567 tlsPtr_.single_step_control = nullptr; in DeactivateSingleStepControl()