Searched refs:CheckedCall (Results 1 – 10 of 10) sorted by relevance
/art/runtime/jit/ |
D | jit_scoped_code_cache_write.h | 45 CheckedCall(mprotect, "Cache +W", updatable_pages->Begin(), updatable_pages->Size(), prot); in ScopedCodeCacheWrite() 54 CheckedCall(mprotect, "Cache -W", updatable_pages->Begin(), updatable_pages->Size(), prot); in ~ScopedCodeCacheWrite()
|
D | jit_memory_region.cc | 288 CheckedCall(mprotect, "create code heap", code_heap->Begin(), code_heap->Size(), kProtRW); in Initialize() 294 CheckedCall(mprotect, "protect code heap", code_heap->Begin(), code_heap->Size(), kProtR); in Initialize()
|
/art/runtime/gc/space/ |
D | malloc_space.cc | 160 CheckedCall(mprotect, GetName(), original_end, increment, PROT_READ | PROT_WRITE); in MoreCore() 171 CheckedCall(madvise, GetName(), new_end, size, MADV_DONTNEED); in MoreCore() 172 CheckedCall(mprotect, GetName(), new_end, size, PROT_NONE); in MoreCore() 220 CheckedCall(mprotect, alloc_space_name, end, capacity - initial_size_, PROT_NONE); in CreateZygoteSpace()
|
D | region_space.cc | 417 CheckedCall(mprotect, __FUNCTION__, begin, end - begin, PROT_NONE); in ZeroAndProtectRegion() 776 CheckedCall(mprotect, __FUNCTION__, Begin(), Size(), PROT_NONE); in Protect() 782 CheckedCall(mprotect, __FUNCTION__, Begin(), Size(), PROT_READ | PROT_WRITE); in Unprotect() 1067 CheckedCall(mprotect, __FUNCTION__, Begin(), kRegionSize, PROT_READ | PROT_WRITE); in MarkAsAllocated()
|
D | large_object_space.cc | 441 CheckedCall(mprotect, __FUNCTION__, obj, allocation_size, PROT_READ); in Free() 550 CheckedCall(mprotect, __FUNCTION__, obj, allocation_size, PROT_READ | PROT_WRITE); in Alloc()
|
D | dlmalloc_space.cc | 81 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE); in CreateFromMemMap()
|
D | rosalloc_space.cc | 97 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE); in CreateFromMemMap()
|
/art/libartbase/base/ |
D | utils.h | 145 static inline void CheckedCall(const Func& function, const char* what, Args... args) { in CheckedCall() function
|
/art/runtime/ |
D | thread_pool.cc | 57 CheckedCall(mprotect, in ThreadPoolWorker()
|
D | oat_file.cc | 934 CheckedCall(mprotect, "protect relocations", reloc_begin, DataBimgRelRoSize(), PROT_READ); in Setup() 2209 CheckedCall(mprotect, in InitializeRelocations() 2218 CheckedCall(mprotect, in InitializeRelocations()
|