Lines Matching refs:process_sp
36 InstrumentationRuntimeASan::CreateInstance(const lldb::ProcessSP &process_sp) { in LLDB_PLUGIN_DEFINE()
37 return InstrumentationRuntimeSP(new InstrumentationRuntimeASan(process_sp)); in LLDB_PLUGIN_DEFINE()
114 ProcessSP process_sp = GetProcessSP(); in RetrieveReportData() local
115 if (!process_sp) in RetrieveReportData()
119 process_sp->GetThreadList().GetExpressionExecutionThread(); in RetrieveReportData()
130 options.SetTimeout(process_sp->GetUtilityExpressionTimeout()); in RetrieveReportData()
143 process_sp->GetTarget().GetDebugger().GetAsyncOutputStream()->Printf( in RetrieveReportData()
175 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
250 ProcessSP process_sp = instance->GetProcessSP(); in NotifyBreakpointHit() local
252 if (process_sp->GetModIDRef().IsLastResumeForUserExpression()) in NotifyBreakpointHit()
261 if (process_sp && process_sp == context->exe_ctx_ref.GetProcessSP()) { in NotifyBreakpointHit()
269 process_sp->GetTarget().GetDebugger().GetOutputStreamSP()); in NotifyBreakpointHit()
284 ProcessSP process_sp = GetProcessSP(); in Activate() local
285 if (!process_sp) in Activate()
298 Target &target = process_sp->GetTarget(); in Activate()
307 process_sp->GetTarget() in Activate()
320 ProcessSP process_sp = GetProcessSP(); in Deactivate() local
321 if (process_sp) { in Deactivate()
322 process_sp->GetTarget().RemoveBreakpointByID(GetBreakpointID()); in Deactivate()