Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_suppressions.h41 void GetMatched(InternalMmapVector<Suppression *> *matched);
48 InternalMmapVector<Suppression> suppressions_;
HDsanitizer_common.h515 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
517 explicit InternalMmapVector(uptr initial_capacity) { in InternalMmapVector() function
520 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); } in ~InternalMmapVector()
522 InternalMmapVector(const InternalMmapVector&);
523 void operator=(const InternalMmapVector&);
HDsanitizer_stoptheworld.h49 InternalMmapVector<SuspendedThreadID> thread_ids_;
HDsanitizer_stackdepot.h62 InternalMmapVector<IdDescPair> map_;
HDsanitizer_symbolizer.h131 InternalMmapVector<const char*> storage_;
HDsanitizer_suppressions.cc165 InternalMmapVector<Suppression *> *matched) { in GetMatched()
HDsanitizer_symbolizer_posix_libcdep.cc271 InternalMmapVector<Addr2LineProcess*> addr2line_pool_;
HDsanitizer_deadlock_detector2.cc113 InternalMmapVector<u32> free_id;
HDsanitizer_coverage_libcdep.cc742 InternalMmapVector<uptr> offsets(0); in DumpOffsets()
/NextBSD/contrib/compiler-rt/lib/lsan/
HDlsan_common.h93 InternalMmapVector<Leak> leaks_;
94 InternalMmapVector<LeakedObject> leaked_objects_;
97 typedef InternalMmapVector<uptr> Frontier;
HDlsan_common.cc86 InternalMmapVector<RootRegion> *root_regions;
90 ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)]; in InitializeRootRegions()
91 root_regions = new(placeholder) InternalMmapVector<RootRegion>(1); in InitializeRootRegions()
369 InternalMmapVector<Suppression *> matched(1); in PrintMatchedSuppressions()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_common_test.cc105 TEST(SanitizerCommon, InternalMmapVector) { in TEST() argument
106 InternalMmapVector<uptr> vector(1); in TEST()
119 InternalMmapVector<uptr> empty_vector(0); in TEST()
/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_globals.cc46 typedef InternalMmapVector<DynInitGlobal> VectorOfGlobals;
55 typedef InternalMmapVector<GlobalRegistrationSite> GlobalRegistrationSiteVector;
HDasan_report.h47 InternalMmapVector<StackVarDescr> *vars);
HDasan_debugging.cc34 InternalMmapVector<StackVarDescr> vars(16); in GetInfoForStackVar()
HDasan_report.cc415 InternalMmapVector<StackVarDescr> *vars) { in ParseFrameDescription()
477 InternalMmapVector<StackVarDescr> vars(16); in DescribeAddressIfStack()
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_suppressions.cc150 InternalMmapVector<Suppression *> matched(1); in PrintMatchedSuppressions()
HDtsan_rtl.h486 InternalMmapVector<FiredSuppression> fired_suppressions;