/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common.h | 70 void *MmapOrDie(uptr size, const char *mem_type); 100 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer"); in InternalScopedBuffer() 441 data_ = (T *)MmapOrDie(capacity_ * sizeof(T), "InternalMmapVectorNoCtor"); in Initialize() 490 T *new_data = (T *)MmapOrDie(new_capacity * sizeof(T), in Resize()
|
D | sanitizer_persistent_allocator.h | 58 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot"); in alloc()
|
D | sanitizer_procmaps_freebsd.cc | 41 void *VmMap = MmapOrDie(MmapedSize, "ReadProcMaps()"); in ReadProcMaps()
|
D | sanitizer_deadlock_detector2.cc | 119 void *mem = MmapOrDie(sizeof(DD), "deadlock detector"); in Create() 130 DDPhysicalThread *pt = (DDPhysicalThread*)MmapOrDie(sizeof(DDPhysicalThread), in CreatePhysicalThread() 184 mutex[id_gen / kL2Size] = (Mutex*)MmapOrDie(kL2Size * sizeof(Mutex), in allocateId()
|
D | sanitizer_win.cc | 84 void *MmapOrDie(uptr size, const char *mem_type) { in MmapOrDie() function 125 return MmapOrDie(size, mem_type); in MmapNoReserveOrDie() 336 hmodules = (HMODULE *)MmapOrDie(modules_buffer_size, __FUNCTION__); in GetListOfModules()
|
D | sanitizer_common.cc | 149 *buff = (char*)MmapOrDie(size, __func__); in ReadFileToBuffer() 192 uptr map_res = (uptr)MmapOrDie(map_size, mem_type); in MmapAlignedOrDie()
|
D | sanitizer_posix.cc | 114 void *MmapOrDie(uptr size, const char *mem_type) { in MmapOrDie() function 307 char *filename = (char*)MmapOrDie(kBufSize, __func__); in DumpProcessMap()
|
D | sanitizer_allocator.cc | 119 (char*)MmapOrDie(size_to_allocate, __func__); in Allocate()
|
D | sanitizer_tls_get_addr.cc | 58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize"); in DTLS_Resize()
|
D | sanitizer_posix_libcdep.cc | 142 void* base = MmapOrDie(kAltStackSize, __func__); in SetAlternateSignalStack()
|
D | sanitizer_deadlock_detector1.cc | 64 void *mem = MmapOrDie(sizeof(DD), "deadlock detector"); in Create()
|
D | sanitizer_printf.cc | 250 buffer = (char*)MmapOrDie(kLen, "Report"); in SharedPrintfCode()
|
D | sanitizer_thread_registry.cc | 102 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]), in ThreadRegistry()
|
D | sanitizer_stoptheworld_linux_libcdep.cc | 311 guard_start_ = (uptr)MmapOrDie(stack_size_ + guard_size_, in ScopedStackSpaceWithGuard()
|
D | sanitizer_addrhashmap.h | 151 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap"); in AddrHashMap()
|
D | sanitizer_allocator.h | 651 res = (u8*)MmapOrDie(kSize2, "TwoLevelByteMap"); in GetOrCreate() 703 void *res = MmapOrDie(size, "SizeClassAllocator32"); in MapWithCallback() 1028 MmapOrDie(map_size, "LargeMmapAllocator")); in Allocate()
|
D | sanitizer_linux.cc | 410 *arr = (char **)MmapOrDie(arr_size * sizeof(char *), "NullSepFileArray"); in ReadNullSepFileToArray()
|
/external/compiler-rt/lib/msan/ |
D | msan_thread.cc | 14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__); in Create()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_dense_alloc.h | 107 T *batch = (T*)MmapOrDie(kL2Size * sizeof(T), "DenseSlabAllocator"); in Refill()
|
D | tsan_interceptors.cc | 206 ctx = (ThreadSignalContext*)MmapOrDie(sizeof(*ctx), "ThreadSignalContext"); in SigCtx()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_thread.cc | 30 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext"); in CreateThreadContext()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_stacktrace_test.cc | 47 mapping = MmapOrDie(2 * ps, "FastUnwindTest"); in SetUp()
|
/external/compiler-rt/lib/asan/ |
D | asan_fake_stack.cc | 50 : MmapOrDie(size, "FakeStack")); in Create()
|
D | asan_thread.cc | 88 AsanThread *thread = (AsanThread*)MmapOrDie(size, __func__); in Create()
|
D | asan_report.cc | 1047 (char*)MmapOrDie(error_message_buffer_size, __func__); in __asan_set_error_report_callback()
|