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

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 73 InternalScopedBuffer<char> buffer_;
sanitizer_unwind_linux_libcdep.cc 150 InternalScopedBuffer<backtrace_frame_t> frames(kStackTraceMax);
sanitizer_common.h 114 // InternalScopedBuffer can be used instead of large stack arrays to
119 class InternalScopedBuffer {
121 explicit InternalScopedBuffer(uptr cnt) {
123 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
125 ~InternalScopedBuffer() {
136 InternalScopedBuffer(const InternalScopedBuffer&);
137 void operator=(const InternalScopedBuffer&);
140 class InternalScopedString : public InternalScopedBuffer<char> {
143 : InternalScopedBuffer<char>(max_length), length_(0)
    [all...]
sanitizer_stoptheworld_linux_libcdep.cc 275 InternalScopedBuffer<char> handler_stack_memory(kHandlerStackSize);
sanitizer_coverage_libcdep.cc 558 InternalScopedBuffer<char> block(cov_max_block_size);
714 InternalScopedBuffer<u8> bitset(n);
737 InternalScopedBuffer<char> out(size());
    [all...]
sanitizer_common.cc 350 InternalScopedBuffer<char> buffer(kMaxPathLength);
sanitizer_win.cc 328 InternalScopedBuffer<ModuleInfo> module_infos(num_modules);
  /external/compiler-rt/lib/stats/
stats.cc 44 InternalScopedBuffer<char> path(kMaxPathLength);
  /external/compiler-rt/lib/esan/
esan_sideline_linux.cpp 71 InternalScopedBuffer<char> StackMap(SigAltStackSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 166 InternalScopedBuffer<u64> marker(kMarkerSize);
tsan_rtl.cc 140 InternalScopedBuffer<char> buf(4096);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 648 InternalScopedBuffer<int> int_buf(kSize);
651 InternalScopedBuffer<char> char_buf(kSize);
  /external/compiler-rt/lib/lsan/
lsan_common.cc 190 InternalScopedBuffer<uptr> registers(SuspendedThreadsList::RegisterCount());
  /external/compiler-rt/lib/asan/
asan_report.cc 696 InternalScopedBuffer<char> buffer_copy(kErrorMessageBufferSize);
    [all...]

Completed in 421 milliseconds