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

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 30 InternalScopedBuffer<char> buff(GetPageSizeCached() * 2);
31 InternalScopedBuffer<AddressInfo> addr_frames(64);
sanitizer_libignore.cc 45 InternalScopedBuffer<char> buf(4096);
58 InternalScopedBuffer<char> module(4096);
sanitizer_linux.h 68 InternalScopedBuffer<char> buffer_;
sanitizer_common.h 70 // InternalScopedBuffer can be used instead of large stack arrays to
75 class InternalScopedBuffer {
77 explicit InternalScopedBuffer(uptr cnt) {
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<char>(max_length), length_(0)
    [all...]
sanitizer_coverage_libcdep.cc 219 InternalScopedBuffer<char> block(cov_max_block_size);
249 InternalScopedBuffer<char> path(1024);
285 InternalScopedBuffer<char> module(4096);
286 InternalScopedBuffer<char> path(4096 * 2);
sanitizer_coverage_mapping_libcdep.cc 74 InternalScopedBuffer<char> modules_data(kMaxNumberOfModules *
sanitizer_procmaps_mac.cc 163 InternalScopedBuffer<char> module_name(kMaxPathLength);
sanitizer_common.cc 182 InternalScopedBuffer<char> buff(kMaxSummaryLength);
192 InternalScopedBuffer<char> buff(kMaxSummaryLength);
sanitizer_posix.cc 267 InternalScopedBuffer<char> buffer(kMaxPathLength);
293 InternalScopedBuffer<char> report_path_full(4096);
sanitizer_linux_libcdep.cc 258 InternalScopedBuffer<backtrace_frame_t> frames(kStackTraceMax);
488 InternalScopedBuffer<char> module_name(kMaxPathLength);
sanitizer_procmaps_linux.cc 248 InternalScopedBuffer<char> module_name(kMaxPathLength);
sanitizer_stoptheworld_linux_libcdep.cc 238 InternalScopedBuffer<char> handler_stack_memory(kHandlerStackSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 49 InternalScopedBuffer<char> tmp(4*1024);
tsan_symbolize.cc 111 InternalScopedBuffer<AddressInfo> addr_frames(kMaxAddrFrames);
tsan_platform_linux.cc 166 InternalScopedBuffer<u64> marker(kMarkerSize);
tsan_rtl.cc 124 InternalScopedBuffer<char> buf(4096);
146 InternalScopedBuffer<char> filename(4096);
tsan_rtl_report.cc 414 InternalScopedBuffer<uptr> stack(kShadowStackSize);
679 InternalScopedBuffer<MutexSet> mset2(1);
tsan_rtl_mutex.cc 474 InternalScopedBuffer<StackTrace> stacks(2 * DDReport::kMaxLoopSize);
  /external/compiler-rt/lib/lsan/
lsan_common.cc 206 InternalScopedBuffer<uptr> registers(SuspendedThreadsList::RegisterCount());
475 InternalScopedBuffer<AddressInfo> addr_frames(kMaxAddrFrames);
598 InternalScopedBuffer<char> summary(kMaxSummaryLength);
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 93 InternalScopedBuffer<char> new_name(buflen);
asan_report.cc 398 InternalScopedBuffer<StackVarDescr> vars(n_objects);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 640 InternalScopedBuffer<int> int_buf(kSize);
643 InternalScopedBuffer<char> char_buf(kSize);

Completed in 540 milliseconds