Home | History | Annotate | Download | only in src

Lines Matching refs:is_executable

758                    bool is_executable) {
763 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
1256 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
1257 return CommitRegion(address, size, is_executable);
1283 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
1284 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;