reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_debugging.cpp
   29   InternalMmapVector<StackVarDescr> vars;
projects/compiler-rt/lib/asan/asan_descriptions.cpp
  380   InternalMmapVector<StackVarDescr> vars;
projects/compiler-rt/lib/asan/asan_globals.cpp
   47 typedef InternalMmapVector<DynInitGlobal> VectorOfGlobals;
   56 typedef InternalMmapVector<GlobalRegistrationSite> GlobalRegistrationSiteVector;
projects/compiler-rt/lib/asan/asan_memory_profile.cpp
   83   InternalMmapVector<AllocationSite> allocations_;
projects/compiler-rt/lib/asan/asan_report.cpp
   84                            InternalMmapVector<StackVarDescr> *vars) {
  158     InternalMmapVector<char> buffer_copy(kErrorMessageBufferSize);
projects/compiler-rt/lib/asan/asan_report.h
   46                            InternalMmapVector<StackVarDescr> *vars);
projects/compiler-rt/lib/hwasan/hwasan_linux.cpp
  426   InternalMmapVector<BufferedStackTrace> stack_buffer(1);
projects/compiler-rt/lib/hwasan/hwasan_report.cpp
   67   InternalMmapVector<char> error_message_;
   70   static InternalMmapVector<char> *error_message_ptr_;
   74 InternalMmapVector<char> *ScopedReport::error_message_ptr_;
projects/compiler-rt/lib/lsan/lsan_common.cpp
  100 static InternalMmapVector<RootRegion> *root_regions;
  102 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
  106   ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
  107   root_regions = new (placeholder) InternalMmapVector<RootRegion>();
  217   InternalMmapVector<uptr> registers(suspended_threads.RegisterCount());
  510   InternalMmapVector<Suppression *> matched;
  530   const InternalMmapVector<tid_t> &suspended_threads =
  543   InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount());
projects/compiler-rt/lib/lsan/lsan_common.h
  113   InternalMmapVector<Leak> leaks_;
  114   InternalMmapVector<LeakedObject> leaked_objects_;
  117 typedef InternalMmapVector<uptr> Frontier;
  129 InternalMmapVector<RootRegion> const *GetRootRegions();
projects/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  562   InternalMmapVector(const InternalMmapVector &) = delete;
  563   InternalMmapVector &operator=(const InternalMmapVector &) = delete;
  563   InternalMmapVector &operator=(const InternalMmapVector &) = delete;
  564   InternalMmapVector(InternalMmapVector &&) = delete;
  565   InternalMmapVector &operator=(InternalMmapVector &&) = delete;
  565   InternalMmapVector &operator=(InternalMmapVector &&) = delete;
  568 class InternalScopedString : public InternalMmapVector<char> {
projects/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
  181   InternalMmapVector<char> buffer(kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
  910     InternalMmapVector<tid_t> *threads) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
   85   Result ListThreads(InternalMmapVector<tid_t> *threads);
   92   InternalMmapVector<char> buffer_;
projects/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
   62   InternalMmapVector<IdDescPair> map_;
projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  102   InternalMmapVector<tid_t> thread_ids_;
  212   InternalMmapVector<tid_t> threads;
  298   InternalMmapVector<char> handler_stack_memory(kHandlerStackSize);
projects/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
  175     InternalMmapVector<Suppression *> *matched) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
   42   void GetMatched(InternalMmapVector<Suppression *> *matched);
   49   InternalMmapVector<Suppression> suppressions_;
projects/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
  103   InternalMmapVector<LocalInfo> locals;
  169     InternalMmapVector<const char*> storage_;
projects/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
  374                                       InternalMmapVector<LocalInfo> *locals) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
  307   InternalMmapVector<Addr2LineProcess*> addr2line_pool_;
projects/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
   98   InternalMmapVector<BufferedStackTrace> stack_buffer(1);
  180   InternalMmapVector<BufferedStackTrace> stack_buffer(1);
  219   InternalMmapVector<BufferedStackTrace> stack_buffer(1);
projects/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
  161   InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax);
projects/compiler-rt/lib/stats/stats.cpp
   44   InternalMmapVector<char> path(kMaxPathLength);
projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
  183   InternalMmapVector<u64> marker(kMarkerSize);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  142   InternalMmapVector<char> buf(4096);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  550   InternalMmapVector<FiredSuppression> fired_suppressions;
projects/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
  146   InternalMmapVector<Suppression *> matched;