HomeSort by: relevance | last modified time | path
    Searched refs:ScopedReport (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers.cpp 112 ScopedReport R(Opts, Loc, ET);
164 ScopedReport R(Opts, Loc, ET);
225 ScopedReport R(Opts, Loc, ET);
262 ScopedReport R(Opts, Loc, ET);
303 ScopedReport R(Opts, Loc, ET);
347 ScopedReport R(Opts, Loc, ET);
389 ScopedReport R(Opts, Loc, ET);
411 ScopedReport R(Opts, Data->Loc, ET);
424 ScopedReport R(Opts, Data->Loc, ET);
444 ScopedReport R(Opts, Loc, ET)
    [all...]
ubsan_diag.cpp 353 ScopedReport::CheckLocked();
388 ScopedReport::Initializer::Initializer() { InitAsStandaloneIfNecessary(); }
390 ScopedReport::ScopedReport(ReportOptions Opts, Location SummaryLoc,
394 ScopedReport::~ScopedReport() {
ubsan_diag.h 240 class ScopedReport {
252 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
253 ~ScopedReport();
ubsan_handlers_cxx.cpp 50 ScopedReport R(Opts, Loc, ET);
106 ScopedReport R(Opts, Loc, ET);
174 ScopedReport R(Opts, CallLoc, ET);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers.cpp 112 ScopedReport R(Opts, Loc, ET);
164 ScopedReport R(Opts, Loc, ET);
225 ScopedReport R(Opts, Loc, ET);
262 ScopedReport R(Opts, Loc, ET);
303 ScopedReport R(Opts, Loc, ET);
347 ScopedReport R(Opts, Loc, ET);
389 ScopedReport R(Opts, Loc, ET);
411 ScopedReport R(Opts, Data->Loc, ET);
424 ScopedReport R(Opts, Data->Loc, ET);
444 ScopedReport R(Opts, Loc, ET)
    [all...]
ubsan_diag.cpp 347 ScopedReport::CheckLocked();
382 ScopedReport::Initializer::Initializer() { InitAsStandaloneIfNecessary(); }
384 ScopedReport::ScopedReport(ReportOptions Opts, Location SummaryLoc,
388 ScopedReport::~ScopedReport() {
ubsan_diag.h 240 class ScopedReport {
252 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
253 ~ScopedReport();
ubsan_handlers_cxx.cpp 50 ScopedReport R(Opts, Loc, ET);
106 ScopedReport R(Opts, Loc, ET);
174 ScopedReport R(Opts, CallLoc, ET);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.cc 71 ScopedReport R(Opts, Loc, ET);
127 ScopedReport R(Opts, Loc, ET);
164 ScopedReport R(Opts, Loc, ET);
205 ScopedReport R(Opts, Loc, ET);
249 ScopedReport R(Opts, Loc, ET);
291 ScopedReport R(Opts, Loc, ET);
313 ScopedReport R(Opts, Data->Loc, ET);
326 ScopedReport R(Opts, Data->Loc, ET);
346 ScopedReport R(Opts, Loc, ET);
406 ScopedReport R(Opts, Loc, ET)
    [all...]
ubsan_diag.cc 340 ScopedReport::CheckLocked();
375 ScopedReport::Initializer::Initializer() { InitAsStandaloneIfNecessary(); }
377 ScopedReport::ScopedReport(ReportOptions Opts, Location SummaryLoc,
381 ScopedReport::~ScopedReport() {
ubsan_handlers_cxx.cc 51 ScopedReport R(Opts, Loc, ET);
107 ScopedReport R(Opts, Loc, ET);
ubsan_diag.h 244 class ScopedReport {
256 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
257 ~ScopedReport();
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_report.cpp 37 class ScopedReport {
39 ScopedReport(bool fatal = false) : error_message_(1), fatal(fatal) {
45 ~ScopedReport() {
89 InternalMmapVector<char> *ScopedReport::error_message_ptr_;
90 Mutex ScopedReport::error_message_lock_;
91 void (*ScopedReport::error_report_callback_)(const char *);
93 // If there is an active ScopedReport, append to its error message.
95 ScopedReport::MaybeAppendToErrorMessage(buffer);
566 ScopedReport R(flags()->halt_on_error);
618 ScopedReport R(flags()->halt_on_error)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_report.cpp 39 class ScopedReport {
41 explicit ScopedReport(bool fatal) : fatal(fatal) {
47 ~ScopedReport() {
87 Mutex ScopedReport::error_message_lock_;
88 InternalScopedString *ScopedReport::error_message_ptr_;
89 void (*ScopedReport::error_report_callback_)(const char *);
91 // If there is an active ScopedReport, append to its error message.
93 ScopedReport::MaybeAppendToErrorMessage(buffer);
474 const ScopedReport scoped_report;
1064 __hwasan::ScopedReport::SetErrorReportCallback(callback)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_report.cc 374 ScopedReport::ScopedReport(ReportType typ, uptr tag)
377 ScopedReport::~ScopedReport() {}
503 bool OutputReport(ThreadState *thr, const ScopedReport &srep) {
685 ScopedReport rep(typ, tag);
tsan_rtl.h 614 class ScopedReport : public ScopedReportBase {
616 explicit ScopedReport(ReportType typ, uptr tag = kExternalTagNone);
617 ~ScopedReport();
689 bool OutputReport(ThreadState *thr, const ScopedReport &srep);
tsan_rtl_mutex.cc 56 ScopedReport rep(typ);
113 ScopedReport rep(ReportTypeMutexDestroyLocked);
518 ScopedReport rep(ReportTypeDeadlock);
tsan_mman.cc 149 ScopedReport rep(ReportTypeSignalUnsafe);
tsan_rtl_thread.cc 218 ScopedReport rep(ReportTypeThreadLeak);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl_report.cpp 346 ScopedReport::ScopedReport(ReportType typ, uptr tag)
349 ScopedReport::~ScopedReport() {}
631 bool OutputReport(ThreadState *thr, const ScopedReport &srep) {
793 ScopedReport rep(rep_typ, tag);
tsan_rtl.h 437 class ScopedReport : public ScopedReportBase {
439 explicit ScopedReport(ReportType typ, uptr tag = kExternalTagNone);
440 ~ScopedReport();
498 bool OutputReport(ThreadState *thr, const ScopedReport &srep);
tsan_rtl_mutex.cpp 59 ScopedReport rep(typ);
532 ScopedReport rep(ReportTypeDeadlock);
561 ScopedReport rep(ReportTypeMutexDestroyLocked);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl_report.cpp 385 ScopedReport::ScopedReport(ReportType typ, uptr tag)
388 ScopedReport::~ScopedReport() {}
736 bool OutputReport(ThreadState *thr, const ScopedReport &srep) {
918 ScopedReport rep(typ, tag);
tsan_rtl.h 385 class ScopedReport : public ScopedReportBase {
387 explicit ScopedReport(ReportType typ, uptr tag = kExternalTagNone);
388 ~ScopedReport();
446 bool OutputReport(ThreadState *thr, const ScopedReport &srep);
tsan_rtl_mutex.cpp 57 ScopedReport rep(typ);
114 ScopedReport rep(ReportTypeMutexDestroyLocked);
533 ScopedReport rep(ReportTypeDeadlock);

Completed in 32 milliseconds

1 2