Home | History | Annotate | Download | only in src

Lines Matching refs:is_executable

362                    bool is_executable) {
364 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
665 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
666 return CommitRegion(address, size, is_executable);
695 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
696 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);