Searched refs:InternalScopedBuffer (Results 1 - 22 of 22) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc30 InternalScopedBuffer<char> buff(GetPageSizeCached() * 2);
31 InternalScopedBuffer<AddressInfo> addr_frames(64);
H A Dsanitizer_libignore.cc45 InternalScopedBuffer<char> buf(4096);
58 InternalScopedBuffer<char> module(4096);
H A Dsanitizer_linux.h68 InternalScopedBuffer<char> buffer_;
H A Dsanitizer_common.h70 // InternalScopedBuffer can be used instead of large stack arrays to
75 class InternalScopedBuffer { class in namespace:__sanitizer
77 explicit InternalScopedBuffer(uptr cnt) { function in class:__sanitizer::InternalScopedBuffer
79 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
81 ~InternalScopedBuffer() {
92 InternalScopedBuffer(const InternalScopedBuffer&);
93 void operator=(const InternalScopedBuffer&);
96 class InternalScopedString : public InternalScopedBuffer<char> {
99 : InternalScopedBuffer<cha
[all...]
H A Dsanitizer_coverage_libcdep.cc219 InternalScopedBuffer<char> block(cov_max_block_size);
249 InternalScopedBuffer<char> path(1024);
285 InternalScopedBuffer<char> module(4096);
286 InternalScopedBuffer<char> path(4096 * 2);
H A Dsanitizer_coverage_mapping_libcdep.cc74 InternalScopedBuffer<char> modules_data(kMaxNumberOfModules *
H A Dsanitizer_procmaps_mac.cc163 InternalScopedBuffer<char> module_name(kMaxPathLength);
H A Dsanitizer_common.cc182 InternalScopedBuffer<char> buff(kMaxSummaryLength);
192 InternalScopedBuffer<char> buff(kMaxSummaryLength);
H A Dsanitizer_posix.cc267 InternalScopedBuffer<char> buffer(kMaxPathLength);
293 InternalScopedBuffer<char> report_path_full(4096);
H A Dsanitizer_linux_libcdep.cc258 InternalScopedBuffer<backtrace_frame_t> frames(kStackTraceMax);
488 InternalScopedBuffer<char> module_name(kMaxPathLength);
H A Dsanitizer_procmaps_linux.cc248 InternalScopedBuffer<char> module_name(kMaxPathLength);
H A Dsanitizer_stoptheworld_linux_libcdep.cc238 InternalScopedBuffer<char> handler_stack_memory(kHandlerStackSize);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc49 InternalScopedBuffer<char> tmp(4*1024);
H A Dtsan_symbolize.cc111 InternalScopedBuffer<AddressInfo> addr_frames(kMaxAddrFrames);
H A Dtsan_platform_linux.cc166 InternalScopedBuffer<u64> marker(kMarkerSize);
H A Dtsan_rtl.cc124 InternalScopedBuffer<char> buf(4096);
146 InternalScopedBuffer<char> filename(4096);
H A Dtsan_rtl_report.cc414 InternalScopedBuffer<uptr> stack(kShadowStackSize);
679 InternalScopedBuffer<MutexSet> mset2(1);
H A Dtsan_rtl_mutex.cc474 InternalScopedBuffer<StackTrace> stacks(2 * DDReport::kMaxLoopSize);
/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc206 InternalScopedBuffer<uptr> registers(SuspendedThreadsList::RegisterCount());
475 InternalScopedBuffer<AddressInfo> addr_frames(kMaxAddrFrames);
598 InternalScopedBuffer<char> summary(kMaxSummaryLength);
/external/compiler-rt/lib/asan/
H A Dasan_malloc_mac.cc93 InternalScopedBuffer<char> new_name(buflen);
H A Dasan_report.cc398 InternalScopedBuffer<StackVarDescr> vars(n_objects);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc640 InternalScopedBuffer<int> int_buf(kSize);
643 InternalScopedBuffer<char> char_buf(kSize);

Completed in 556 milliseconds