HomeSort by: relevance | last modified time | path
    Searched refs:InternalMmapVector (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_suppressions.h 43 void GetMatched(InternalMmapVector<Suppression *> *matched);
50 InternalMmapVector<Suppression> suppressions_;
sanitizer_stackdepot.h 63 InternalMmapVector<IdDescPair> map_;
sanitizer_linux.h 87 Result ListThreads(InternalMmapVector<tid_t> *threads);
94 InternalMmapVector<char> buffer_;
sanitizer_common.h 516 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
542 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
544 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(1); }
545 explicit InternalMmapVector(uptr cnt) {
549 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); }
551 InternalMmapVector(const InternalMmapVector &) = delete;
552 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
553 InternalMmapVector(InternalMmapVector &&) = delete
    [all...]
sanitizer_symbolizer_report.cc 99 InternalMmapVector<BufferedStackTrace> stack_buffer(1);
178 InternalMmapVector<BufferedStackTrace> stack_buffer(1);
208 InternalMmapVector<BufferedStackTrace> stack_buffer(1);
sanitizer_symbolizer.h 142 InternalMmapVector<const char*> storage_;
sanitizer_unwind_linux_libcdep.cc 152 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax);
sanitizer_stoptheworld_linux_libcdep.cc 103 InternalMmapVector<tid_t> thread_ids_;
213 InternalMmapVector<tid_t> threads;
298 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize);
sanitizer_stoptheworld_mac.cc 46 InternalMmapVector<SuspendedThreadInfo> threads_;
sanitizer_suppressions.cc 165 InternalMmapVector<Suppression *> *matched) {
sanitizer_file.cc 182 InternalMmapVector<char> buffer(kMaxPathLength);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_procmaps_test.cc 40 InternalMmapVector<LoadedModule> modules;
60 InternalMmapVector<LoadedModule> modules;
sanitizer_common_test.cc 92 InternalMmapVector<uptr> v;
98 InternalMmapVector<uptr> v;
120 TEST(SanitizerCommon, InternalMmapVector) {
121 InternalMmapVector<uptr> vector;
134 InternalMmapVector<uptr> empty_vector;
140 InternalMmapVector<uptr> vector1;
141 InternalMmapVector<uptr> vector2;
163 InternalMmapVector<uptr> vector1;
164 InternalMmapVector<uptr> vector2;
165 InternalMmapVector<uptr> vector3
    [all...]
sanitizer_libc_test.cc 209 InternalMmapVector<char> buff;
215 InternalMmapVector<char> buff;
sanitizer_linux_test.cc 125 InternalMmapVector<tid_t> threads(128);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.h 112 InternalMmapVector<Leak> leaks_;
113 InternalMmapVector<LeakedObject> leaked_objects_;
116 typedef InternalMmapVector<uptr> Frontier;
128 InternalMmapVector<RootRegion> const *GetRootRegions();
lsan_common_mac.cc 124 InternalMmapVector<LoadedModule> modules;
153 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions();
lsan_common.cc 101 static InternalMmapVector<RootRegion> *root_regions;
103 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
107 ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
108 root_regions = new (placeholder) InternalMmapVector<RootRegion>(); // NOLINT
218 InternalMmapVector<uptr> registers(suspended_threads.RegisterCount());
511 InternalMmapVector<Suppression *> matched;
531 const InternalMmapVector<tid_t> &suspended_threads =
532 *(const InternalMmapVector<tid_t> *)arg;
544 InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount());
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_memory_profile.cc 84 InternalMmapVector<AllocationSite> allocations_;
asan_report.h 47 InternalMmapVector<StackVarDescr> *vars);
asan_debugging.cc 30 InternalMmapVector<StackVarDescr> vars;
asan_globals.cc 48 typedef InternalMmapVector<DynInitGlobal> VectorOfGlobals;
57 typedef InternalMmapVector<GlobalRegistrationSite> GlobalRegistrationSiteVector;
asan_report.cc 85 InternalMmapVector<StackVarDescr> *vars) {
159 InternalMmapVector<char> buffer_copy(kErrorMessageBufferSize);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 155 InternalMmapVector<Suppression *> matched;
tsan_platform_linux.cc 171 InternalMmapVector<u64> marker(kMarkerSize);

Completed in 23 milliseconds

1 2