Home | History | Annotate | Download | only in src

Lines Matching refs:is_executable

367                    bool is_executable) {
369 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
670 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
671 return CommitRegion(address, size, is_executable);
700 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
701 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);