/external/python/cpython3/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() 399 DWORD desired_access, BOOL inherit_handle, 409 DWORD desired_access; in _winapi_DuplicateHandle() local 415 …&source_process_handle, &source_handle, &target_process_handle, &desired_access, &inherit_handle, … in _winapi_DuplicateHandle() 418 …module, source_process_handle, source_handle, target_process_handle, desired_access, inherit_handl… in _winapi_DuplicateHandle() 660 DWORD desired_access, DWORD file_offset_high, 668 DWORD desired_access; in _winapi_MapViewOfFile() local [all …]
|
/external/v8/third_party/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()
|
/external/zlib/google/ |
D | zip_internal.cc | 40 DWORD desired_access = 0, creation_disposition = 0; in ZipOpenFunc() local 46 desired_access = GENERIC_READ; in ZipOpenFunc() 50 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 53 desired_access = GENERIC_WRITE | GENERIC_READ; in ZipOpenFunc() 58 if ((filename != NULL) && (desired_access != 0)) { in ZipOpenFunc() 59 file = CreateFile(filename16.c_str(), desired_access, share_mode, in ZipOpenFunc()
|
/external/webrtc/webrtc/modules/desktop_capture/win/ |
D | desktop.cc | 75 ACCESS_MASK desired_access = in GetDesktop() local 79 HDESK desktop = OpenDesktop(desktop_name, 0, FALSE, desired_access); in GetDesktop()
|
/external/python/cpython3/Modules/ |
D | _winapi.c | 456 DWORD desired_access, DWORD share_mode, in _winapi_CreateFile_impl() argument 465 file_name, desired_access, share_mode, in _winapi_CreateFile_impl() 471 handle = CreateFile(file_name, desired_access, in _winapi_CreateFile_impl() 1176 DWORD desired_access, BOOL inherit_handle, in _winapi_DuplicateHandle_impl() argument 1189 desired_access, in _winapi_DuplicateHandle_impl() 1372 DWORD desired_access, DWORD file_offset_high, in _winapi_MapViewOfFile_impl() argument 1379 address = MapViewOfFile(file_map, desired_access, file_offset_high, in _winapi_MapViewOfFile_impl() 1399 _winapi_OpenFileMapping_impl(PyObject *module, DWORD desired_access, in _winapi_OpenFileMapping_impl() argument 1406 handle = OpenFileMappingW(desired_access, inherit_handle, name); in _winapi_OpenFileMapping_impl() 1429 _winapi_OpenProcess_impl(PyObject *module, DWORD desired_access, in _winapi_OpenProcess_impl() argument [all …]
|
/external/python/cpython2/PC/ |
D | _subprocess.c | 223 int desired_access; in sp_DuplicateHandle() local 233 &desired_access, in sp_DuplicateHandle() 244 desired_access, in sp_DuplicateHandle()
|
/external/libchrome/base/process/ |
D | process.h | 73 static Process OpenWithAccess(ProcessId pid, DWORD desired_access);
|
/external/curl/tests/python_dependencies/impacket/ |
D | smb.py | 2760 def open(self, tid, filename, open_mode, desired_access): argument 2769 openFile['Parameters']['DesiredAccess'] = desired_access 2796 def open_andx(self, tid, filename, open_mode, desired_access): argument 2805 openFile['Parameters']['DesiredAccess'] = desired_access
|
D | smb3.py | 1623 def open_andx(self, tid, fileName, open_mode, desired_access): argument 1628 …fileId = self.create(tid,fileName,desired_access, open_mode, FILE_NON_DIRECTORY_FILE, open_mode, 0)
|