Lines Matching refs:InstrumentationRuntimeTSan
38 LLDB_PLUGIN_DEFINE(InstrumentationRuntimeTSan) in LLDB_PLUGIN_DEFINE() argument
41 InstrumentationRuntimeTSan::CreateInstance(const lldb::ProcessSP &process_sp) { in LLDB_PLUGIN_DEFINE()
42 return InstrumentationRuntimeSP(new InstrumentationRuntimeTSan(process_sp)); in LLDB_PLUGIN_DEFINE()
45 void InstrumentationRuntimeTSan::Initialize() { in Initialize()
51 void InstrumentationRuntimeTSan::Terminate() { in Terminate()
55 lldb_private::ConstString InstrumentationRuntimeTSan::GetPluginNameStatic() { in GetPluginNameStatic()
59 lldb::InstrumentationRuntimeType InstrumentationRuntimeTSan::GetTypeStatic() { in GetTypeStatic()
63 InstrumentationRuntimeTSan::~InstrumentationRuntimeTSan() { Deactivate(); } in ~InstrumentationRuntimeTSan()
304 StructuredData::ObjectSP InstrumentationRuntimeTSan::RetrieveReportData( in RetrieveReportData()
491 InstrumentationRuntimeTSan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription()
584 addr_t InstrumentationRuntimeTSan::GetFirstNonInternalFramePc( in GetFirstNonInternalFramePc()
613 InstrumentationRuntimeTSan::GenerateSummary(StructuredData::ObjectSP report) { in GenerateSummary()
699 addr_t InstrumentationRuntimeTSan::GetMainRacyAddress( in GetMainRacyAddress()
715 std::string InstrumentationRuntimeTSan::GetLocationDescription( in GetLocationDescription()
795 bool InstrumentationRuntimeTSan::NotifyBreakpointHit( in NotifyBreakpointHit()
802 InstrumentationRuntimeTSan *const instance = in NotifyBreakpointHit()
803 static_cast<InstrumentationRuntimeTSan *>(baton); in NotifyBreakpointHit()
880 InstrumentationRuntimeTSan::GetPatternForRuntimeLibrary() { in GetPatternForRuntimeLibrary()
885 bool InstrumentationRuntimeTSan::CheckIfRuntimeIsValid( in CheckIfRuntimeIsValid()
893 void InstrumentationRuntimeTSan::Activate() { in Activate()
923 breakpoint->SetCallback(InstrumentationRuntimeTSan::NotifyBreakpointHit, this, in Activate()
931 void InstrumentationRuntimeTSan::Deactivate() { in Deactivate()
1050 InstrumentationRuntimeTSan::GetBacktracesFromExtendedStopInfo( in GetBacktracesFromExtendedStopInfo()