Home
last modified time | relevance | path

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

123

/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_common_test.cpp91 InternalMmapVector<uptr> v; in TEST()
97 InternalMmapVector<uptr> v; in TEST()
119 TEST(SanitizerCommon, InternalMmapVector) { in TEST() argument
120 InternalMmapVector<uptr> vector; in TEST()
133 InternalMmapVector<uptr> empty_vector; in TEST()
139 InternalMmapVector<uptr> vector1; in TEST()
140 InternalMmapVector<uptr> vector2; in TEST()
162 InternalMmapVector<uptr> vector1; in TEST()
163 InternalMmapVector<uptr> vector2; in TEST()
164 InternalMmapVector<uptr> vector3; in TEST()
[all …]
Dsanitizer_procmaps_test.cpp39 InternalMmapVector<LoadedModule> modules; in TEST()
59 InternalMmapVector<LoadedModule> modules; in TEST()
/external/llvm-project/compiler-rt/lib/lsan/
Dlsan_common.h114 InternalMmapVector<Leak> leaks_;
115 InternalMmapVector<LeakedObject> leaked_objects_;
118 typedef InternalMmapVector<uptr> Frontier;
140 InternalMmapVector<RootRegion> const *GetRootRegions();
227 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
Dlsan_common.cpp101 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>(); in InitializeRootRegions()
227 InternalMmapVector<uptr> registers; in ProcessThreads()
536 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions()
551 const InternalMmapVector<tid_t> &suspended_threads = in ReportIfNotSuspended()
552 *(const InternalMmapVector<tid_t> *)arg; in ReportIfNotSuspended()
572 InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount()); in ReportUnsuspendedThreads()
Dlsan_common_mac.cpp123 InternalMmapVector<LoadedModule> modules; in ProcessGlobalRegions()
152 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions(); in ProcessPlatformSpecificAllocations()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h578 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
580 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(0); } in InternalMmapVector() function
581 explicit InternalMmapVector(uptr cnt) { in InternalMmapVector() function
585 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector()
587 InternalMmapVector(const InternalMmapVector &) = delete;
588 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
589 InternalMmapVector(InternalMmapVector &&) = delete;
590 InternalMmapVector &operator=(InternalMmapVector &&) = delete;
593 class InternalScopedString : public InternalMmapVector<char> {
596 : InternalMmapVector<char>(max_length), length_(0) { in InternalScopedString()
Dsanitizer_suppressions.h42 void GetMatched(InternalMmapVector<Suppression *> *matched);
49 InternalMmapVector<Suppression> suppressions_;
Dsanitizer_stoptheworld_mac.cpp41 InternalMmapVector<uptr> *buffer,
45 InternalMmapVector<SuspendedThreadInfo> threads_;
145 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
Dsanitizer_stoptheworld_netbsd_libcdep.cpp61 InternalMmapVector<uptr> *buffer,
65 InternalMmapVector<tid_t> thread_ids_;
199 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
338 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
Dsanitizer_stoptheworld_linux_libcdep.cpp98 InternalMmapVector<uptr> *buffer,
102 InternalMmapVector<tid_t> thread_ids_;
212 InternalMmapVector<tid_t> threads; in SuspendAllThreads()
298 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
556 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
Dsanitizer_linux.h86 Result ListThreads(InternalMmapVector<tid_t> *threads);
93 InternalMmapVector<char> buffer_;
Dsanitizer_symbolizer.h103 InternalMmapVector<LocalInfo> locals;
169 InternalMmapVector<const char*> storage_;
Dsanitizer_symbolizer_report.cpp99 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportMmapWriteExec()
181 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportStackOverflowImpl()
220 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportDeadlySignalImpl()
Dsanitizer_fuchsia.h29 InternalMmapVector<zx_info_maps_t> data;
Dsanitizer_stoptheworld.h36 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
Dsanitizer_stackdepot.h63 InternalMmapVector<IdDescPair> map_;
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_suppressions.h43 void GetMatched(InternalMmapVector<Suppression *> *matched);
50 InternalMmapVector<Suppression> suppressions_;
Dsanitizer_common.h580 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
582 explicit InternalMmapVector(uptr initial_capacity) { in InternalMmapVector() function
585 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector()
587 InternalMmapVector(const InternalMmapVector&);
588 void operator=(const InternalMmapVector&);
698 InternalMmapVector<LoadedModule> modules_;
Dsanitizer_stackdepot.h63 InternalMmapVector<IdDescPair> map_;
Dsanitizer_stoptheworld.h49 InternalMmapVector<SuspendedThreadID> thread_ids_;
Dsanitizer_coverage_libcdep.cc124 InternalMmapVector<uptr>* offsets) const;
764 InternalMmapVector<uptr>* offsets) const { in GetRangeOffsets()
786 static void GenerateHtmlReport(const InternalMmapVector<char *> &cov_files) { in GenerateHtmlReport()
795 InternalMmapVector<char *> sancov_argv(cov_files.size() * 2 + 3); in GenerateHtmlReport()
832 InternalMmapVector<uptr> offsets(0); in DumpOffsets()
835 InternalMmapVector<char *> cov_files(module_name_vec.size()); in DumpOffsets()
/external/compiler-rt/lib/lsan/
Dlsan_common.h94 InternalMmapVector<Leak> leaks_;
95 InternalMmapVector<LeakedObject> leaked_objects_;
98 typedef InternalMmapVector<uptr> Frontier;
/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_thread_list.h183 InternalMmapVector<Thread *> free_list_;
184 InternalMmapVector<Thread *> live_list_;
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_common_test.cc105 TEST(SanitizerCommon, InternalMmapVector) { in TEST() argument
106 InternalMmapVector<uptr> vector(1); in TEST()
119 InternalMmapVector<uptr> empty_vector(0); in TEST()
Dsanitizer_procmaps_test.cc40 InternalMmapVector<LoadedModule> modules(kMaxModules); in TEST()

123