Searched refs:InternalMmapVector (Results 1 - 25 of 114) sorted by relevance

12345

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_suppressions.h43 void GetMatched(InternalMmapVector<Suppression *> *matched);
50 InternalMmapVector<Suppression> suppressions_;
H A Dsanitizer_stackdepot.h63 InternalMmapVector<IdDescPair> map_;
H A Dsanitizer_linux.h87 Result ListThreads(InternalMmapVector<tid_t> *threads);
94 InternalMmapVector<char> buffer_;
H A Dsanitizer_common.h516 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
542 class InternalMmapVector : public InternalMmapVectorNoCtor<T> { class in namespace:__sanitizer
544 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(1); } function in class:__sanitizer::InternalMmapVector
545 explicit InternalMmapVector(uptr cnt) { function in class:__sanitizer::InternalMmapVector
549 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); }
551 InternalMmapVector(const InternalMmapVector &) = delete;
552 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
553 InternalMmapVector(InternalMmapVecto
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_suppressions.h41 void GetMatched(InternalMmapVector<Suppression *> *matched);
48 InternalMmapVector<Suppression> suppressions_;
H A Dsanitizer_stackdepot.h61 InternalMmapVector<IdDescPair> map_;
H A Dsanitizer_linux.h91 Result ListThreads(InternalMmapVector<tid_t> *threads);
98 InternalMmapVector<char> buffer_;
H A Dsanitizer_common.h512 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
538 class InternalMmapVector : public InternalMmapVectorNoCtor<T> { class in namespace:__sanitizer
540 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(1); } function in class:__sanitizer::InternalMmapVector
541 explicit InternalMmapVector(uptr cnt) { function in class:__sanitizer::InternalMmapVector
545 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); }
547 InternalMmapVector(const InternalMmapVector &) = delete;
548 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
549 InternalMmapVector(InternalMmapVecto
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_suppressions.h42 void GetMatched(InternalMmapVector<Suppression *> *matched);
49 InternalMmapVector<Suppression> suppressions_;
H A Dsanitizer_fuchsia.h29 InternalMmapVector<zx_info_maps_t> data;
H A Dsanitizer_stoptheworld.h36 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const {
H A Dsanitizer_stoptheworld_mac.cpp41 InternalMmapVector<uptr> *buffer,
45 InternalMmapVector<SuspendedThreadInfo> threads_;
145 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const {
H A Dsanitizer_suppressions.cpp37 InternalMmapVector<char> exec(kMaxPathLength);
72 InternalMmapVector<char> new_file_path(kMaxPathLength);
175 InternalMmapVector<Suppression *> *matched) {
H A Dsanitizer_linux.h98 Result ListThreads(InternalMmapVector<tid_t> *threads);
105 InternalMmapVector<char> buffer_;
H A Dsanitizer_symbolizer.h103 InternalMmapVector<LocalInfo> locals;
169 InternalMmapVector<const char*> storage_;
H A Dsanitizer_common.h570 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
596 class InternalMmapVector : public InternalMmapVectorNoCtor<T> { class in namespace:__sanitizer
598 InternalMmapVector() { InternalMmapVectorNoCtor<T>::Initialize(0); } function in class:__sanitizer::InternalMmapVector
599 explicit InternalMmapVector(uptr cnt) { function in class:__sanitizer::InternalMmapVector
603 ~InternalMmapVector() { InternalMmapVectorNoCtor<T>::Destroy(); }
605 InternalMmapVector(const InternalMmapVector &) = delete;
606 InternalMmapVector &operator=(const InternalMmapVector &) = delete;
607 InternalMmapVector(InternalMmapVecto
[all...]
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp61 InternalMmapVector<uptr> *buffer,
65 InternalMmapVector<tid_t> thread_ids_;
199 InternalMmapVector<char> handler_stack_memory(kHandlerStackSize);
338 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc40 InternalMmapVector<LoadedModule> modules;
60 InternalMmapVector<LoadedModule> modules;
H A Dsanitizer_common_test.cc92 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<upt
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_common.h112 InternalMmapVector<Leak> leaks_;
113 InternalMmapVector<LeakedObject> leaked_objects_;
116 typedef InternalMmapVector<uptr> Frontier;
128 InternalMmapVector<RootRegion> const *GetRootRegions();
H A Dlsan_common_mac.cc124 InternalMmapVector<LoadedModule> modules;
153 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions();
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_common.h112 InternalMmapVector<Leak> leaks_;
113 InternalMmapVector<LeakedObject> leaked_objects_;
116 typedef InternalMmapVector<uptr> Frontier;
128 InternalMmapVector<RootRegion> const *GetRootRegions();
H A Dlsan_common_mac.cc120 InternalMmapVector<LoadedModule> modules;
149 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions();
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_common.h117 InternalMmapVector<Leak> leaks_;
118 InternalMmapVector<LeakedObject> leaked_objects_;
121 typedef InternalMmapVector<uptr> Frontier;
231 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_thread_list.h194 InternalMmapVector<Thread *> free_list_;
196 InternalMmapVector<Thread *> live_list_;

Completed in 255 milliseconds

12345