OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InternalScopedBuffer
(Results
1 - 16
of
16
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h
49
InternalScopedBuffer
<char> buffer_;
sanitizer_symbolizer_mac.cc
30
InternalScopedBuffer
<char> module_name(kMaxPathLength);
sanitizer_common.h
65
//
InternalScopedBuffer
can be used instead of large stack arrays to
70
class
InternalScopedBuffer
{
72
explicit
InternalScopedBuffer
(uptr cnt) {
74
ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "
InternalScopedBuffer
");
76
~
InternalScopedBuffer
() {
87
InternalScopedBuffer
(const
InternalScopedBuffer
&);
88
void operator=(const
InternalScopedBuffer
&);
sanitizer_common.cc
69
InternalScopedBuffer
<char> report_path_full(4096);
165
InternalScopedBuffer
<char> buff(kMaxSize);
sanitizer_symbolizer_linux_libcdep.cc
61
InternalScopedBuffer
<char> module_name(kMaxPathLength);
sanitizer_stacktrace.cc
69
InternalScopedBuffer
<char> buff(GetPageSizeCached() * 2);
70
InternalScopedBuffer
<AddressInfo> addr_frames(64);
sanitizer_stoptheworld_linux_libcdep.cc
222
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);
163
InternalScopedBuffer
<char> func(1024);
tsan_suppressions.cc
38
InternalScopedBuffer
<char> tmp(4*1024);
tsan_rtl.cc
105
InternalScopedBuffer
<char> buf(4096);
120
InternalScopedBuffer
<char> filename(4096);
tsan_platform_linux.cc
187
InternalScopedBuffer
<u64> marker(kMarkerSize);
tsan_rtl_report.cc
413
InternalScopedBuffer
<uptr> stack(1024); // FIXME: de-hardcode 1024
669
InternalScopedBuffer
<MutexSet> mset2(1);
/external/compiler-rt/lib/lsan/
lsan_common.cc
148
InternalScopedBuffer
<uptr> registers(SuspendedThreadsList::RegisterCount());
391
InternalScopedBuffer
<AddressInfo> addr_frames(kMaxAddrFrames);
488
InternalScopedBuffer
<char> summary(kMaxSummaryLength);
/external/compiler-rt/lib/asan/
asan_malloc_mac.cc
93
InternalScopedBuffer
<char> new_name(buflen);
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc
627
InternalScopedBuffer
<int> int_buf(kSize);
630
InternalScopedBuffer
<char> char_buf(kSize);
Completed in 285 milliseconds