HomeSort by relevance Sort by last modified time
    Searched defs:protect_all (Results 1 - 3 of 3) sorted by null

  /bionic/linker/
linker_block_allocator.h 39 void protect_all(int prot);
75 void protect_all(int prot) { block_allocator_.protect_all(prot); } function in class:LinkerTypeAllocator
linker_block_allocator.cpp 95 void LinkerBlockAllocator::protect_all(int prot) { function in class:LinkerBlockAllocator
  /bionic/linker/tests/
linker_block_allocator_test.cpp 107 static void protect_all() { function
119 allocator.protect_all(PROT_READ);
120 allocator.protect_all(PROT_READ | PROT_WRITE);
125 allocator.protect_all(PROT_READ);
134 ASSERT_EXIT(protect_all(), testing::KilledBySignal(SIGSEGV), "trying to access protected page");

Completed in 70 milliseconds