Home
last modified time | relevance | path

Searched refs:InternalMmapVector (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h552 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
554 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(1); } in InternalMmapVector() function
555 explicit InternalMmapVector(uptr cnt) { in InternalMmapVector() function
559 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector()
561 InternalMmapVector(const InternalMmapVector &) = delete;
562 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
563 InternalMmapVector(InternalMmapVector &&) = delete;
564 InternalMmapVector &operator=(InternalMmapVector &&) = delete;
567 class InternalScopedString : public InternalMmapVector<char> {
570 : InternalMmapVector<char>(max_length), length_(0) { in InternalScopedString()
H A Dsanitizer_suppressions.h43 void GetMatched(InternalMmapVector<Suppression *> *matched);
50 InternalMmapVector<Suppression> suppressions_;
H A Dsanitizer_linux.h87 Result ListThreads(InternalMmapVector<tid_t> *threads);
94 InternalMmapVector<char> buffer_;
H A Dsanitizer_symbolizer_report.cc99 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportMmapWriteExec()
178 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportStackOverflowImpl()
208 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportDeadlySignalImpl()
H A Dsanitizer_stoptheworld_linux_libcdep.cc103 InternalMmapVector<tid_t> thread_ids_;
213 InternalMmapVector<tid_t> threads; in SuspendAllThreads()
298 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
H A Dsanitizer_stackdepot.h63 InternalMmapVector<IdDescPair> map_;
H A Dsanitizer_symbolizer.h142 InternalMmapVector<const char*> storage_;
H A Dsanitizer_unwind_linux_libcdep.cc152 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in SlowUnwindStackWithContext()
H A Dsanitizer_stoptheworld_mac.cc46 InternalMmapVector<SuspendedThreadInfo> threads_;
H A Dsanitizer_suppressions.cc165 InternalMmapVector<Suppression *> *matched) { in GetMatched()
H A Dsanitizer_file.cc182 InternalMmapVector<char> buffer(kMaxPathLength); in FindPathToBinary()
/freebsd-12.1/contrib/compiler-rt/lib/lsan/
H A Dlsan_common.h112 InternalMmapVector<Leak> leaks_;
113 InternalMmapVector<LeakedObject> leaked_objects_;
116 typedef InternalMmapVector<uptr> Frontier;
128 InternalMmapVector<RootRegion> const *GetRootRegions();
H A Dlsan_common.cc101 static InternalMmapVector<RootRegion> *root_regions;
103 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; } in GetRootRegions()
107 ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)]; in InitializeRootRegions()
108 root_regions = new (placeholder) InternalMmapVector<RootRegion>(); // NOLINT in InitializeRootRegions()
218 InternalMmapVector<uptr> registers(suspended_threads.RegisterCount()); in ProcessThreads()
511 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions()
531 const InternalMmapVector<tid_t> &suspended_threads = in ReportIfNotSuspended()
532 *(const InternalMmapVector<tid_t> *)arg; in ReportIfNotSuspended()
544 InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount()); in ReportUnsuspendedThreads()
H A Dlsan_common_mac.cc124 InternalMmapVector<LoadedModule> modules; in ProcessGlobalRegions()
153 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions(); in ProcessPlatformSpecificAllocations()
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_report.cc61 InternalMmapVector<char> error_message_;
64 static InternalMmapVector<char> *error_message_ptr_;
68 InternalMmapVector<char> *ScopedReport::error_message_ptr_;
H A Dhwasan_linux.cc377 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in HwasanOnSIGTRAP()
/freebsd-12.1/contrib/compiler-rt/lib/stats/
H A Dstats.cc45 InternalMmapVector<char> path(kMaxPathLength); in OpenStatsFile()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_memory_profile.cc84 InternalMmapVector<AllocationSite> allocations_;
H A Dasan_report.h47 InternalMmapVector<StackVarDescr> *vars);
H A Dasan_globals.cc48 typedef InternalMmapVector<DynInitGlobal> VectorOfGlobals;
57 typedef InternalMmapVector<GlobalRegistrationSite> GlobalRegistrationSiteVector;
H A Dasan_debugging.cc30 InternalMmapVector<StackVarDescr> vars; in FindInfoForStackVar()
H A Dasan_report.cc85 InternalMmapVector<StackVarDescr> *vars) { in ParseFrameDescription()
159 InternalMmapVector<char> buffer_copy(kErrorMessageBufferSize); in ~ScopedInErrorReport()
/freebsd-12.1/contrib/compiler-rt/lib/esan/
H A Desan_sideline_linux.cpp73 InternalMmapVector<char> StackMap(SigAltStackSize); in runSideline()
/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc147 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions()
H A Dtsan_platform_linux.cc171 InternalMmapVector<u64> marker(kMarkerSize); in MapRodata()

12