Lines Matching refs:PAGE_EXECUTE_WRITECOPY

345     ok(!VirtualProtect(addr1, 0x1000, PAGE_READWRITE | PAGE_EXECUTE_WRITECOPY, &old_prot),  in test_VirtualAlloc()
2909 { PAGE_EXECUTE_WRITECOPY, 0 }, /* 0x80 */ in test_VirtualProtect()
2910 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE, 0 }, /* 0x90 */ in test_VirtualProtect()
2911 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ, 0 }, /* 0xa0 */ in test_VirtualProtect()
2912 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ | PAGE_EXECUTE, 0 }, /* 0xb0 */ in test_VirtualProtect()
2913 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE, 0 }, /* 0xc0 */ in test_VirtualProtect()
2914 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE, 0 }, /* 0xd0 */ in test_VirtualProtect()
2915 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ, 0 }, /* 0xe0 */ in test_VirtualProtect()
2916 …{ PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ | PAGE_EXECUTE, 0 } /* 0xf0 … in test_VirtualProtect()
3020 if (prot & (PAGE_WRITECOPY | PAGE_EXECUTE_WRITECOPY)) in test_VirtualProtect()
3041 if (prot & (PAGE_WRITECOPY | PAGE_EXECUTE_WRITECOPY)) in test_VirtualProtect()
3066 case PAGE_EXECUTE_WRITECOPY: in is_mem_writable()
3106 { PAGE_EXECUTE_WRITECOPY, FALSE }, /* 0x80 */ in test_VirtualAlloc_protection()
3107 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE, FALSE }, /* 0x90 */ in test_VirtualAlloc_protection()
3108 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ, FALSE }, /* 0xa0 */ in test_VirtualAlloc_protection()
3109 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ | PAGE_EXECUTE, FALSE }, /* 0xb0 */ in test_VirtualAlloc_protection()
3110 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE, FALSE }, /* 0xc0 */ in test_VirtualAlloc_protection()
3111 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE, FALSE }, /* 0xd0 */ in test_VirtualAlloc_protection()
3112 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ, FALSE }, /* 0xe0 */ in test_VirtualAlloc_protection()
3113 …{ PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ | PAGE_EXECUTE, FALSE } /* 0… in test_VirtualAlloc_protection()
3200 { PAGE_EXECUTE_WRITECOPY, TRUE, PAGE_EXECUTE_READWRITE }, /* 0x80 */ in test_CreateFileMapping_protection()
3201 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE, FALSE, PAGE_NOACCESS }, /* 0x90 */ in test_CreateFileMapping_protection()
3202 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ, FALSE, PAGE_NOACCESS }, /* 0xa0 */ in test_CreateFileMapping_protection()
3203 … { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READ | PAGE_EXECUTE, FALSE, PAGE_NOACCESS }, /* 0xb0 */ in test_CreateFileMapping_protection()
3204 { PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE, FALSE, PAGE_NOACCESS }, /* 0xc0 */ in test_CreateFileMapping_protection()
3205 …{ PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE, FALSE, PAGE_NOACCESS }, /* 0xd0 … in test_CreateFileMapping_protection()
3206 …{ PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ, FALSE, PAGE_NOACCESS }, /* … in test_CreateFileMapping_protection()
3207 …{ PAGE_EXECUTE_WRITECOPY | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_READ | PAGE_EXECUTE, FALSE, PAGE_… in test_CreateFileMapping_protection()
3248 if (td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3285 todo_wine_if (td[i].prot == PAGE_WRITECOPY || td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3357 if (td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3369 if (prot == PAGE_EXECUTE_WRITECOPY) prot = PAGE_EXECUTE_READWRITE; in test_CreateFileMapping_protection()
3377 todo_wine_if (td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3392 todo_wine_if (td[i].prot == PAGE_WRITECOPY || td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3408 todo_wine_if (td[i].prot == PAGE_WRITECOPY || td[i].prot == PAGE_EXECUTE_WRITECOPY) in test_CreateFileMapping_protection()
3438 case PAGE_EXECUTE_WRITECOPY: in page_prot_to_access()
3480 case PAGE_EXECUTE_WRITECOPY: in map_prot_to_access()
3515 protect = PAGE_EXECUTE_WRITECOPY; in map_view_of_file()
3552 PAGE_EXECUTE_READ, PAGE_EXECUTE_READWRITE, PAGE_EXECUTE_WRITECOPY in test_mapping()
3576 { FILE_MAP_EXECUTE | FILE_MAP_COPY, PAGE_EXECUTE_WRITECOPY }, /* 0x21 */ in test_mapping()
3646 if (page_prot[i] == PAGE_EXECUTE_WRITECOPY) in test_mapping()
3698 … broken(view[j].prot == PAGE_EXECUTE_WRITECOPY && info.Protect == PAGE_NOACCESS), /* XP */ in test_mapping()
3709 …broken(nt_info.AllocationProtect == PAGE_EXECUTE_WRITECOPY && info.Protect == PAGE_NOACCESS), /* X… in test_mapping()
3712 …broken(nt_info.AllocationProtect == PAGE_EXECUTE_WRITECOPY && info.Protect == PAGE_NOACCESS), /* X… in test_mapping()
3741 if (!ret && page_prot[k] == PAGE_EXECUTE_WRITECOPY) in test_mapping()
3747 if (!ret && view[j].prot == PAGE_EXECUTE_WRITECOPY) in test_mapping()
3779 … todo_wine_if (page_prot[k] == PAGE_WRITECOPY || page_prot[k] == PAGE_EXECUTE_WRITECOPY) in test_mapping()