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

  /external/compiler-rt/lib/asan/
asan_thread.cc 33 AsanThread *thread = (AsanThread*)MmapOrDie(size, __FUNCTION__);
40 (AsanThreadSummary*)MmapOrDie(PageSize, "AsanThreadSummary");
asan_posix.cc 68 void* base = MmapOrDie(kAltStackSize, __FUNCTION__);
asan_fake_stack.cc 103 uptr new_mem = (uptr)MmapOrDie(
asan_report.cc 705 (char*)MmapOrDie(error_message_buffer_size, __FUNCTION__);
asan_allocator.cc 97 u8 *res = (u8*)MmapOrDie(size, __FUNCTION__);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 61 (char*)MmapOrDie(size_to_allocate, __FUNCTION__);
sanitizer_common.h 49 void *MmapOrDie(uptr size, const char *mem_type);
66 // FIXME: use InternalAlloc instead of MmapOrDie once
73 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
277 data_ = (T *)MmapOrDie(capacity_ * sizeof(T), "InternalVector");
310 T *new_data = (T *)MmapOrDie(new_capacity * sizeof(T),
sanitizer_common.cc 114 *buff = (char*)MmapOrDie(size, __FUNCTION__);
183 uptr map_res = (uptr)MmapOrDie(map_size, mem_type);
sanitizer_posix.cc 55 void *MmapOrDie(uptr size, const char *mem_type) {
167 char *filename = (char*)MmapOrDie(kBufSize, __FUNCTION__);
sanitizer_printf.cc 235 buffer = (char*)MmapOrDie(kLen, "Report");
sanitizer_stackdepot.cc 101 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
sanitizer_thread_registry.cc 102 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]),
sanitizer_win.cc 62 void *MmapOrDie(uptr size, const char *mem_type) {
sanitizer_linux.cc 268 *arr = (char **)MmapOrDie(arr_size * sizeof(char *), "NullSepFileArray");
sanitizer_allocator.h 568 // be returned by MmapOrDie().
599 void *res = MmapOrDie(size, "SizeClassAllocator32");
925 MmapOrDie(map_size, "LargeMmapAllocator"));
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 75 char *filename = (char*)MmapOrDie(kBufSize, __FUNCTION__);
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 55 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
tsan_interceptors.cc 132 ctx = (SignalContext*)MmapOrDie(sizeof(*ctx), "SignalContext");
    [all...]

Completed in 578 milliseconds