HomeSort by relevance Sort by last modified time
    Searched refs:InternalScopedBuffer (Results 1 - 13 of 13) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 64 // InternalScopedBuffer can be used instead of large stack arrays to
69 class InternalScopedBuffer {
71 explicit InternalScopedBuffer(uptr cnt) {
73 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
75 ~InternalScopedBuffer() {
86 InternalScopedBuffer(const InternalScopedBuffer&);
87 void operator=(const InternalScopedBuffer&);
sanitizer_common.cc 69 InternalScopedBuffer<char> report_path_full(4096);
199 InternalScopedBuffer<char> buff(kMaxSize);
sanitizer_stacktrace.cc 68 InternalScopedBuffer<char> buff(GetPageSizeCached() * 2);
69 InternalScopedBuffer<AddressInfo> addr_frames(64);
sanitizer_symbolizer_linux.cc 144 InternalScopedBuffer<char> module_name(kMaxPathLength);
sanitizer_printf.cc 178 InternalScopedBuffer<char> buffer(kLen);
sanitizer_stoptheworld_linux.cc 213 InternalScopedBuffer<char> handler_stack_memory(kHandlerStackSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 77 InternalScopedBuffer<AddressInfo> addr_frames(kMaxAddrFrames);
tsan_symbolize_addr2line_linux.cc 88 InternalScopedBuffer<char> tmp(128);
162 InternalScopedBuffer<char> func(1024);
tsan_suppressions.cc 36 InternalScopedBuffer<char> tmp(4*1024);
tsan_rtl.cc 101 InternalScopedBuffer<char> buf(4096);
117 InternalScopedBuffer<char> filename(4096);
tsan_rtl_report.cc 404 InternalScopedBuffer<uptr> stack(1024); // FIXME: de-hardcode 1024
632 InternalScopedBuffer<MutexSet> mset2(1);
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 83 InternalScopedBuffer<char> new_name(buflen);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 558 InternalScopedBuffer<int> int_buf(kSize);
561 InternalScopedBuffer<char> char_buf(kSize);

Completed in 384 milliseconds