/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_common_test.cpp | 91 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 …]
|
D | sanitizer_procmaps_test.cpp | 39 InternalMmapVector<LoadedModule> modules; in TEST() 59 InternalMmapVector<LoadedModule> modules; in TEST()
|
/external/llvm-project/compiler-rt/lib/lsan/ |
D | lsan_common.h | 114 InternalMmapVector<Leak> leaks_; 115 InternalMmapVector<LeakedObject> leaked_objects_; 118 typedef InternalMmapVector<uptr> Frontier; 140 InternalMmapVector<RootRegion> const *GetRootRegions(); 227 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
|
D | lsan_common.cpp | 101 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()
|
D | lsan_common_mac.cpp | 123 InternalMmapVector<LoadedModule> modules; in ProcessGlobalRegions() 152 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions(); in ProcessPlatformSpecificAllocations()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common.h | 578 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()
|
D | sanitizer_suppressions.h | 42 void GetMatched(InternalMmapVector<Suppression *> *matched); 49 InternalMmapVector<Suppression> suppressions_;
|
D | sanitizer_stoptheworld_mac.cpp | 41 InternalMmapVector<uptr> *buffer, 45 InternalMmapVector<SuspendedThreadInfo> threads_; 145 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
|
D | sanitizer_stoptheworld_netbsd_libcdep.cpp | 61 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()
|
D | sanitizer_stoptheworld_linux_libcdep.cpp | 98 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()
|
D | sanitizer_linux.h | 86 Result ListThreads(InternalMmapVector<tid_t> *threads); 93 InternalMmapVector<char> buffer_;
|
D | sanitizer_symbolizer.h | 103 InternalMmapVector<LocalInfo> locals; 169 InternalMmapVector<const char*> storage_;
|
D | sanitizer_symbolizer_report.cpp | 99 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportMmapWriteExec() 181 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportStackOverflowImpl() 220 InternalMmapVector<BufferedStackTrace> stack_buffer(1); in ReportDeadlySignalImpl()
|
D | sanitizer_fuchsia.h | 29 InternalMmapVector<zx_info_maps_t> data;
|
D | sanitizer_stoptheworld.h | 36 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
|
D | sanitizer_stackdepot.h | 63 InternalMmapVector<IdDescPair> map_;
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_suppressions.h | 43 void GetMatched(InternalMmapVector<Suppression *> *matched); 50 InternalMmapVector<Suppression> suppressions_;
|
D | sanitizer_common.h | 580 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_;
|
D | sanitizer_stackdepot.h | 63 InternalMmapVector<IdDescPair> map_;
|
D | sanitizer_stoptheworld.h | 49 InternalMmapVector<SuspendedThreadID> thread_ids_;
|
D | sanitizer_coverage_libcdep.cc | 124 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/ |
D | lsan_common.h | 94 InternalMmapVector<Leak> leaks_; 95 InternalMmapVector<LeakedObject> leaked_objects_; 98 typedef InternalMmapVector<uptr> Frontier;
|
/external/llvm-project/compiler-rt/lib/hwasan/ |
D | hwasan_thread_list.h | 183 InternalMmapVector<Thread *> free_list_; 184 InternalMmapVector<Thread *> live_list_;
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_common_test.cc | 105 TEST(SanitizerCommon, InternalMmapVector) { in TEST() argument 106 InternalMmapVector<uptr> vector(1); in TEST() 119 InternalMmapVector<uptr> empty_vector(0); in TEST()
|
D | sanitizer_procmaps_test.cc | 40 InternalMmapVector<LoadedModule> modules(kMaxModules); in TEST()
|