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

  /art/runtime/gc/space/
malloc_space.cc 161 CheckedCall(mprotect, GetName(), original_end, increment, PROT_READ | PROT_WRITE);
172 CheckedCall(madvise, GetName(), new_end, size, MADV_DONTNEED);
173 CheckedCall(mprotect, GetName(), new_end, size, PROT_NONE);
221 CheckedCall(mprotect, alloc_space_name, end, capacity - initial_size_, PROT_NONE);
region_space.cc 413 CheckedCall(mprotect, __FUNCTION__, begin, end - begin, PROT_NONE);
    [all...]
dlmalloc_space.cc 81 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE);
rosalloc_space.cc 97 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE);
large_object_space.cc 476 CheckedCall(mprotect, __FUNCTION__, obj, allocation_size, PROT_READ);
542 CheckedCall(mprotect, __FUNCTION__, obj, allocation_size, PROT_READ | PROT_WRITE);
  /art/libartbase/base/
utils.h 142 static inline void CheckedCall(const Func& function, const char* what, Args... args) {
  /art/runtime/
thread_pool.cc 57 CheckedCall(mprotect,
oat_file.cc     [all...]
  /art/runtime/jit/
jit_code_cache.cc 470 CheckedCall(mprotect, "create code heap", code_heap->Begin(), code_heap->Size(), kProtRW);
476 CheckedCall(mprotect, "protect code heap", code_heap->Begin(), code_heap->Size(), kProtR);
580 CheckedCall(mprotect, "Cache +W", updatable_pages->Begin(), updatable_pages->Size(), prot);
589 CheckedCall(mprotect, "Cache -W", updatable_pages->Begin(), updatable_pages->Size(), prot);
    [all...]

Completed in 2298 milliseconds