| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_common.h | 116 InternalMmapVector<Leak> leaks_; 117 InternalMmapVector<LeakedObject> leaked_objects_; 120 typedef InternalMmapVector<uptr> Frontier; 142 InternalMmapVector<RootRegion> const *GetRootRegions(); 230 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
|
| H A D | lsan_common.cpp | 72 InternalMmapVector<u32> suppressed_stacks; 84 const InternalMmapVector<u32> &GetSortedSuppressedStacks() { in GetSortedSuppressedStacks() 133 static InternalMmapVector<RootRegion> *root_regions; 257 InternalMmapVector<uptr> ptrs; in ProcessThreadRegistry() 280 InternalMmapVector<uptr> registers; in ProcessThreads() 456 const InternalMmapVector<u32> &suppressed = in IgnoredSuppressedCb() 457 *static_cast<const InternalMmapVector<u32> *>(arg); in IgnoredSuppressedCb() 550 const InternalMmapVector<u32> &suppressed_stacks = in ClassifyAllChunks() 616 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() 633 const InternalMmapVector<tid_t> &suspended_threads = in ReportIfNotSuspended() [all …]
|
| H A D | lsan_common_mac.cpp | 123 InternalMmapVector<LoadedModule> modules; in ProcessGlobalRegions() 152 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions(); in ProcessPlatformSpecificAllocations()
|
| H A D | lsan_fuchsia.cpp | 70 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches) { in GetAllThreadAllocatorCachesLocked()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_suppressions.h | 42 void GetMatched(InternalMmapVector<Suppression *> *matched); 49 InternalMmapVector<Suppression> suppressions_;
|
| H A D | sanitizer_common.h | 597 class InternalMmapVector : public InternalMmapVectorNoCtor<T> { 599 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(0); } in InternalMmapVector() function 600 explicit InternalMmapVector(uptr cnt) { in InternalMmapVector() function 604 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector() 606 InternalMmapVector(const InternalMmapVector &) = delete; 607 InternalMmapVector &operator=(const InternalMmapVector &) = delete; 608 InternalMmapVector(InternalMmapVector &&) = delete; 609 InternalMmapVector &operator=(InternalMmapVector &&) = delete; 626 InternalMmapVector<char> buffer_;
|
| H A D | sanitizer_suppressions.cpp | 37 InternalMmapVector<char> exec(kMaxPathLength); in GetPathAssumingFileIsRelativeToExec() 72 InternalMmapVector<char> new_file_path(kMaxPathLength); in ParseFromFile() 175 InternalMmapVector<Suppression *> *matched) { in GetMatched()
|
| H A D | sanitizer_stoptheworld_mac.cpp | 41 InternalMmapVector<uptr> *buffer, 45 InternalMmapVector<SuspendedThreadInfo> threads_; 145 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
|
| H A 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()
|
| H A 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()
|
| H A D | sanitizer_linux.h | 88 Result ListThreads(InternalMmapVector<tid_t> *threads); 95 InternalMmapVector<char> buffer_;
|
| H A 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()
|
| H A D | sanitizer_symbolizer.h | 103 InternalMmapVector<LocalInfo> locals; 169 InternalMmapVector<const char*> storage_;
|
| H A D | sanitizer_fuchsia.h | 29 InternalMmapVector<zx_info_maps_t> data;
|
| H A D | sanitizer_stoptheworld.h | 36 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const { in GetRegistersAndSP()
|
| H A D | sanitizer_win.cpp | 484 InternalMmapVector<ModuleInfo> module_infos(num_modules); in DumpProcessMap() 641 InternalMmapVector<char> buf(4 + sizeof(IMAGE_FILE_HEADER) + in init() 643 InternalMmapVector<wchar_t> modname_utf16(kMaxPathLength); in init() 644 InternalMmapVector<char> module_name(kMaxPathLength); in init() 1066 InternalMmapVector<wchar_t> binname_utf16(kMaxPathLength); in ReadBinaryName() 1163 InternalMmapVector<wchar_t> filename; in LogFullErrorReport()
|
| H A D | sanitizer_stackdepot.h | 63 InternalMmapVector<IdDescPair> map_;
|
| H A D | sanitizer_linux_libcdep.cpp | 362 static_cast<InternalMmapVector<TlsBlock> *>(data)->push_back( in CollectStaticTlsBlocks() 372 InternalMmapVector<TlsBlock> ranges; in GetStaticTlsBoundary() 617 InternalMmapVector<char> module_name(kMaxPathLength); in dl_iterate_phdr_cb() 734 InternalMmapVector<u8> buffer(4096); in GetNumberOfCPUs()
|
| H A D | sanitizer_unwind_linux_libcdep.cpp | 161 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in UnwindSlow()
|
| H A D | sanitizer_libignore.cpp | 41 InternalMmapVector<char> buf(kMaxPathLength); in OnLibraryLoaded()
|
| H A D | sanitizer_procmaps_common.cpp | 123 InternalMmapVector<char> module_name(kMaxPathLength); in DumpListOfModules()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread_list.h | 194 InternalMmapVector<Thread *> free_list_; 196 InternalMmapVector<Thread *> live_list_;
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/stats/ |
| H A D | stats.cpp | 44 InternalMmapVector<char> path(kMaxPathLength); in OpenStatsFile()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_memory_profile.cpp | 83 InternalMmapVector<AllocationSite> allocations_;
|
| H A D | asan_report.h | 46 InternalMmapVector<StackVarDescr> *vars);
|