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()
110 ProcessSP process_sp = GetProcessSP(); in RetrieveReportData() local
111 if (!process_sp) in RetrieveReportData()
115 process_sp->GetThreadList().GetExpressionExecutionThread(); in RetrieveReportData()
126 options.SetTimeout(process_sp->GetUtilityExpressionTimeout()); in RetrieveReportData()
143 process_sp->GetTarget().GetDebugger().GetID()); in RetrieveReportData()
173 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
248 ProcessSP process_sp = instance->GetProcessSP(); in NotifyBreakpointHit() local
250 if (process_sp->GetModIDRef().IsLastResumeForUserExpression()) in NotifyBreakpointHit()
259 if (process_sp && process_sp == context->exe_ctx_ref.GetProcessSP()) { in NotifyBreakpointHit()
267 process_sp->GetTarget().GetDebugger().GetOutputStreamSP()); in NotifyBreakpointHit()
282 ProcessSP process_sp = GetProcessSP(); in Activate() local
283 if (!process_sp) in Activate()
296 Target &target = process_sp->GetTarget(); in Activate()
305 process_sp->GetTarget() in Activate()
318 ProcessSP process_sp = GetProcessSP(); in Deactivate() local
319 if (process_sp) { in Deactivate()
320 process_sp->GetTarget().RemoveBreakpointByID(GetBreakpointID()); in Deactivate()