Lines Matching refs:InstrumentationRuntimeASan
33 LLDB_PLUGIN_DEFINE(InstrumentationRuntimeASan) in LLDB_PLUGIN_DEFINE() argument
36 InstrumentationRuntimeASan::CreateInstance(const lldb::ProcessSP &process_sp) { in LLDB_PLUGIN_DEFINE()
37 return InstrumentationRuntimeSP(new InstrumentationRuntimeASan(process_sp)); in LLDB_PLUGIN_DEFINE()
40 void InstrumentationRuntimeASan::Initialize() { in Initialize()
46 void InstrumentationRuntimeASan::Terminate() { in Terminate()
50 lldb_private::ConstString InstrumentationRuntimeASan::GetPluginNameStatic() { in GetPluginNameStatic()
54 lldb::InstrumentationRuntimeType InstrumentationRuntimeASan::GetTypeStatic() { in GetTypeStatic()
58 InstrumentationRuntimeASan::~InstrumentationRuntimeASan() { Deactivate(); } in ~InstrumentationRuntimeASan()
61 InstrumentationRuntimeASan::GetPatternForRuntimeLibrary() { in GetPatternForRuntimeLibrary()
68 bool InstrumentationRuntimeASan::CheckIfRuntimeIsValid( in CheckIfRuntimeIsValid()
113 StructuredData::ObjectSP InstrumentationRuntimeASan::RetrieveReportData() { in RetrieveReportData()
194 InstrumentationRuntimeASan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription()
240 bool InstrumentationRuntimeASan::NotifyBreakpointHit( in NotifyBreakpointHit()
247 InstrumentationRuntimeASan *const instance = in NotifyBreakpointHit()
248 static_cast<InstrumentationRuntimeASan *>(baton); in NotifyBreakpointHit()
280 void InstrumentationRuntimeASan::Activate() { in Activate()
310 breakpoint->SetCallback(InstrumentationRuntimeASan::NotifyBreakpointHit, this, in Activate()
318 void InstrumentationRuntimeASan::Deactivate() { in Deactivate()