HomeSort by: relevance | last modified time | path
    Searched refs:MmapOrDie (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_procmaps_bsd.cc 77 void *VmMap = MmapOrDie(MmapedSize, "ReadProcMaps()");
86 char *Mem = (char *)MmapOrDie(MmapedSize, "ReadProcMaps()");
sanitizer_persistent_allocator.h 59 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
sanitizer_flags.cc 85 char *buf = (char *)MmapOrDie(kMaxPathLength, "FlagHandlerInclude");
sanitizer_allocator_bytemap.h 96 res = (u8*)MmapOrDie(kSize2, "TwoLevelByteMap");
sanitizer_rtems.cc 148 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
185 return MmapOrDie(size, mem_type, false);
sanitizer_ring_buffer.h 27 void *Ptr = MmapOrDie(SizeInBytes(Size), "RingBuffer");
sanitizer_tls_get_addr.cc 58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize");
sanitizer_posix.cc 45 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
252 char *filename = (char*)MmapOrDie(kBufSize, __func__);
sanitizer_deadlock_detector2.cc 119 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
126 DDPhysicalThread *pt = (DDPhysicalThread*)MmapOrDie(sizeof(DDPhysicalThread),
180 mutex[id_gen / kL2Size] = (Mutex*)MmapOrDie(kL2Size * sizeof(Mutex),
sanitizer_allocator.cc 207 (char*)MmapOrDie(size_to_allocate, __func__);
sanitizer_deadlock_detector1.cc 64 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
sanitizer_file.cc 109 *buff = (char*)MmapOrDie(size, __func__);
sanitizer_fuchsia.cc 194 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
199 return MmapOrDie(size, mem_type);
sanitizer_printf.cc 262 buffer = (char*)MmapOrDie(kLen, "Report");
sanitizer_thread_registry.cc 117 threads_ = (ThreadContextBase **)MmapOrDie(max_threads_ * sizeof(threads_[0]),
sanitizer_common.h 84 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report = false);
86 return MmapOrDie(size, mem_type, /*raw_report*/ true);
89 // Behaves just like MmapOrDie, but tolerates out of memory condition, in that
516 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.cc 14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 96 AsanThread *thread = (AsanThread *)MmapOrDie(AsanThreadMmapSize(), __func__);
asan_rtems.cc 105 AsanThread *thread = (AsanThread *)MmapOrDie(sizeof(AsanThread), __func__);
asan_fake_stack.cc 55 : MmapOrDie(size, "FakeStack"));
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.cc 29 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 47 mapping = MmapOrDie(2 * ps, "FastUnwindTest");
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_dense_alloc.h 112 T *batch = (T*)MmapOrDie(kL2Size * sizeof(T), name_);
tsan_platform_linux.cc 386 thr = reinterpret_cast<ThreadState*>(MmapOrDie(sizeof(ThreadState),
391 MmapOrDie(sizeof(ThreadState), "ThreadState"));
  /src/sys/external/bsd/compiler_rt/dist/lib/safestack/
safestack.cc 103 void *addr = MmapOrDie(size + guard, "unsafe_stack_alloc");

Completed in 20 milliseconds

1 2