/third_party/python/Modules/clinic/ |
D | _winapi.c.h | 136 DWORD desired_access, DWORD share_mode, 146 DWORD desired_access; in _winapi_CreateFile() local 155 …&file_name, &desired_access, &share_mode, &security_attributes, &creation_disposition, &flags_and_… in _winapi_CreateFile() 158 …_return_value = _winapi_CreateFile_impl(module, file_name, desired_access, share_mode, security_at… in _winapi_CreateFile() 445 DWORD desired_access, BOOL inherit_handle, 455 DWORD desired_access; in _winapi_DuplicateHandle() local 461 …&source_process_handle, &source_handle, &target_process_handle, &desired_access, &inherit_handle, … in _winapi_DuplicateHandle() 464 …module, source_process_handle, source_handle, target_process_handle, desired_access, inherit_handl… in _winapi_DuplicateHandle() 706 DWORD desired_access, DWORD file_offset_high, 714 DWORD desired_access; in _winapi_MapViewOfFile() local [all …]
|
/third_party/skia/third_party/externals/zlib/google/ |
D | zip_internal.cc | 42 DWORD desired_access = 0, creation_disposition = 0; in ZipOpenFunc() local 48 desired_access = GENERIC_READ; in ZipOpenFunc() 52 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 55 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 60 if ((filename != NULL) && (desired_access != 0)) { in ZipOpenFunc() 61 file = CreateFile(filename16.c_str(), desired_access, share_mode, in ZipOpenFunc()
|
/third_party/node/deps/v8/third_party/zlib/google/ |
D | zip_internal.cc | 46 DWORD desired_access = 0, creation_disposition = 0; in ZipOpenFunc() local 52 desired_access = GENERIC_READ; in ZipOpenFunc() 56 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 59 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 63 if (filename != nullptr && desired_access != 0) { in ZipOpenFunc() 66 desired_access, share_mode, nullptr, creation_disposition, in ZipOpenFunc()
|
/third_party/node/deps/zlib/google/ |
D | zip_internal.cc | 46 DWORD desired_access = 0, creation_disposition = 0; in ZipOpenFunc() local 52 desired_access = GENERIC_READ; in ZipOpenFunc() 56 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 59 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 63 if (filename != nullptr && desired_access != 0) { in ZipOpenFunc() 66 desired_access, share_mode, nullptr, creation_disposition, in ZipOpenFunc()
|
/third_party/python/Doc/library/ |
D | audit_events.rst | 29 | _winapi.CreateFile | ``file_name``, ``desired_access``, | 42 | _winapi.OpenProcess | ``process_id``, ``desired_access`` |
|
/third_party/python/Modules/ |
D | _winapi.c | 465 DWORD desired_access, DWORD share_mode, in _winapi_CreateFile_impl() argument 474 file_name, desired_access, share_mode, in _winapi_CreateFile_impl() 480 handle = CreateFile(file_name, desired_access, in _winapi_CreateFile_impl() 1192 DWORD desired_access, BOOL inherit_handle, in _winapi_DuplicateHandle_impl() argument 1205 desired_access, in _winapi_DuplicateHandle_impl() 1388 DWORD desired_access, DWORD file_offset_high, in _winapi_MapViewOfFile_impl() argument 1395 address = MapViewOfFile(file_map, desired_access, file_offset_high, in _winapi_MapViewOfFile_impl() 1415 _winapi_OpenFileMapping_impl(PyObject *module, DWORD desired_access, in _winapi_OpenFileMapping_impl() argument 1422 handle = OpenFileMappingW(desired_access, inherit_handle, name); in _winapi_OpenFileMapping_impl() 1445 _winapi_OpenProcess_impl(PyObject *module, DWORD desired_access, in _winapi_OpenProcess_impl() argument [all …]
|