Lines Matching refs:InstrumentationRuntimeUBSan

39 LLDB_PLUGIN_DEFINE(InstrumentationRuntimeUBSan)  in LLDB_PLUGIN_DEFINE()  argument
41 InstrumentationRuntimeUBSan::~InstrumentationRuntimeUBSan() { Deactivate(); } in LLDB_PLUGIN_DEFINE()
44 InstrumentationRuntimeUBSan::CreateInstance(const lldb::ProcessSP &process_sp) { in CreateInstance()
45 return InstrumentationRuntimeSP(new InstrumentationRuntimeUBSan(process_sp)); in CreateInstance()
48 void InstrumentationRuntimeUBSan::Initialize() { in Initialize()
55 void InstrumentationRuntimeUBSan::Terminate() { in Terminate()
59 lldb_private::ConstString InstrumentationRuntimeUBSan::GetPluginNameStatic() { in GetPluginNameStatic()
63 lldb::InstrumentationRuntimeType InstrumentationRuntimeUBSan::GetTypeStatic() { in GetTypeStatic()
109 StructuredData::ObjectSP InstrumentationRuntimeUBSan::RetrieveReportData( in RetrieveReportData()
202 bool InstrumentationRuntimeUBSan::NotifyBreakpointHit( in NotifyBreakpointHit()
209 InstrumentationRuntimeUBSan *const instance = in NotifyBreakpointHit()
210 static_cast<InstrumentationRuntimeUBSan *>(baton); in NotifyBreakpointHit()
235 InstrumentationRuntimeUBSan::GetPatternForRuntimeLibrary() { in GetPatternForRuntimeLibrary()
240 bool InstrumentationRuntimeUBSan::CheckIfRuntimeIsValid( in CheckIfRuntimeIsValid()
249 void InstrumentationRuntimeUBSan::Activate() { in Activate()
280 breakpoint->SetCallback(InstrumentationRuntimeUBSan::NotifyBreakpointHit, in Activate()
288 void InstrumentationRuntimeUBSan::Deactivate() { in Deactivate()
302 InstrumentationRuntimeUBSan::GetBacktracesFromExtendedStopInfo( in GetBacktracesFromExtendedStopInfo()