Home
last modified time | relevance | path

Searched refs:InternalScopedBuffer (Results 1 – 13 of 13) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h96 class InternalScopedBuffer {
98 explicit InternalScopedBuffer(uptr cnt) { in InternalScopedBuffer() function
102 ~InternalScopedBuffer() { in ~InternalScopedBuffer()
113 InternalScopedBuffer(const InternalScopedBuffer&);
114 void operator=(const InternalScopedBuffer&);
117 class InternalScopedString : public InternalScopedBuffer<char> {
120 : InternalScopedBuffer<char>(max_length), length_(0) { in InternalScopedString()
Dsanitizer_linux.h69 InternalScopedBuffer<char> buffer_;
Dsanitizer_coverage_mapping_libcdep.cc75 InternalScopedBuffer<LoadedModule> modules(kMaxNumberOfModules); in CovUpdateMapping()
Dsanitizer_unwind_posix_libcdep.cc140 InternalScopedBuffer<backtrace_frame_t> frames(kStackTraceMax); in SlowUnwindStackWithContext()
Dsanitizer_win.cc234 InternalScopedBuffer<LoadedModule> modules(kMaxNumberOfModules); in DumpProcessMap()
238 InternalScopedBuffer<ModuleInfo> module_infos(num_modules); in DumpProcessMap()
Dsanitizer_coverage_libcdep.cc532 InternalScopedBuffer<char> block(cov_max_block_size); in CovWritePacked()
686 InternalScopedBuffer<u8> bitset(n); in DumpCounters()
709 InternalScopedBuffer<char> out(size()); in DumpAsBitSet()
Dsanitizer_stoptheworld_linux_libcdep.cc271 InternalScopedBuffer<char> handler_stack_memory(kHandlerStackSize); in TracerThread()
Dsanitizer_posix.cc326 InternalScopedBuffer<char> buffer(kMaxPathLength); in FindPathToBinary()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_platform_linux.cc169 InternalScopedBuffer<u64> marker(kMarkerSize); in MapRodata()
Dtsan_rtl_report.cc392 InternalScopedBuffer<uptr> stack(kShadowStackSize); in RestoreStack()
616 InternalScopedBuffer<MutexSet> mset2(1); in ReportRace()
Dtsan_rtl.cc134 InternalScopedBuffer<char> buf(4096); in MemoryProfiler()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_test.cc638 InternalScopedBuffer<int> int_buf(kSize); in TEST()
641 InternalScopedBuffer<char> char_buf(kSize); in TEST()
/external/compiler-rt/lib/lsan/
Dlsan_common.cc178 InternalScopedBuffer<uptr> registers(SuspendedThreadsList::RegisterCount()); in ProcessThreads()