Home | History | Annotate | Download | only in src

Lines Matching refs:is_executable

924                    bool is_executable) {
929 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
1517 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
1518 if (CommitRegion(address, size, is_executable)) {
1537 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
1538 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;