Searched refs:MmapOrDie (Results 1 - 25 of 25) sorted by relevance

/external/compiler-rt/lib/msan/
H A Dmsan_thread.cc14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_persistent_allocator.h58 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
H A Dsanitizer_procmaps_freebsd.cc41 void *VmMap = MmapOrDie(MmapedSize, "ReadProcMaps()");
H A Dsanitizer_allocator.cc119 (char*)MmapOrDie(size_to_allocate, __func__);
H A Dsanitizer_common.h70 void *MmapOrDie(uptr size, const char *mem_type);
93 // FIXME: use InternalAlloc instead of MmapOrDie once
100 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
441 data_ = (T *)MmapOrDie(capacity_ * sizeof(T), "InternalMmapVectorNoCtor");
490 T *new_data = (T *)MmapOrDie(new_capacity * sizeof(T),
H A Dsanitizer_posix_libcdep.cc142 void* base = MmapOrDie(kAltStackSize, __func__);
H A Dsanitizer_tls_get_addr.cc58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize");
H A Dsanitizer_common.cc149 *buff = (char*)MmapOrDie(size, __func__);
192 uptr map_res = (uptr)MmapOrDie(map_size, mem_type);
H A Dsanitizer_posix.cc114 void *MmapOrDie(uptr size, const char *mem_type) { function in namespace:__sanitizer
307 char *filename = (char*)MmapOrDie(kBufSize, __func__);
H A Dsanitizer_deadlock_detector2.cc119 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
130 DDPhysicalThread *pt = (DDPhysicalThread*)MmapOrDie(sizeof(DDPhysicalThread),
184 mutex[id_gen / kL2Size] = (Mutex*)MmapOrDie(kL2Size * sizeof(Mutex),
H A Dsanitizer_win.cc84 void *MmapOrDie(uptr size, const char *mem_type) { function in namespace:__sanitizer
125 return MmapOrDie(size, mem_type);
336 hmodules = (HMODULE *)MmapOrDie(modules_buffer_size, __FUNCTION__);
H A Dsanitizer_deadlock_detector1.cc64 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
H A Dsanitizer_printf.cc250 buffer = (char*)MmapOrDie(kLen, "Report");
H A Dsanitizer_stoptheworld_linux_libcdep.cc311 guard_start_ = (uptr)MmapOrDie(stack_size_ + guard_size_,
H A Dsanitizer_thread_registry.cc102 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]),
H A Dsanitizer_addrhashmap.h151 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap");
H A Dsanitizer_allocator.h651 res = (u8*)MmapOrDie(kSize2, "TwoLevelByteMap");
669 // be returned by MmapOrDie().
703 void *res = MmapOrDie(size, "SizeClassAllocator32");
1028 MmapOrDie(map_size, "LargeMmapAllocator"));
H A Dsanitizer_linux.cc410 *arr = (char **)MmapOrDie(arr_size * sizeof(char *), "NullSepFileArray");
/external/compiler-rt/lib/lsan/
H A Dlsan_thread.cc30 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc47 mapping = MmapOrDie(2 * ps, "FastUnwindTest");
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h107 T *batch = (T*)MmapOrDie(kL2Size * sizeof(T), "DenseSlabAllocator");
H A Dtsan_interceptors.cc206 ctx = (ThreadSignalContext*)MmapOrDie(sizeof(*ctx), "ThreadSignalContext");
/external/compiler-rt/lib/asan/
H A Dasan_fake_stack.cc50 : MmapOrDie(size, "FakeStack"));
H A Dasan_thread.cc88 AsanThread *thread = (AsanThread*)MmapOrDie(size, __func__);
H A Dasan_report.cc1047 (char*)MmapOrDie(error_message_buffer_size, __func__);

Completed in 502 milliseconds