Home
last modified time | relevance | path

Searched refs:desired_access (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Modules/clinic/
D_winapi.c.h136 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/boost/boost/beast/core/impl/
Dfile_win32.ipp123 boost::winapi::DWORD_ desired_access = 0;
140 desired_access = boost::winapi::GENERIC_READ_;
147 desired_access = boost::winapi::GENERIC_READ_;
154 desired_access = boost::winapi::GENERIC_READ_ |
161 desired_access = boost::winapi::GENERIC_READ_ |
168 desired_access = boost::winapi::GENERIC_READ_ |
175 desired_access = boost::winapi::GENERIC_READ_ |
183 desired_access = boost::winapi::GENERIC_READ_ |
195 desired_access,
/third_party/boost/libs/beast/include/boost/beast/core/impl/
Dfile_win32.ipp123 boost::winapi::DWORD_ desired_access = 0;
140 desired_access = boost::winapi::GENERIC_READ_;
147 desired_access = boost::winapi::GENERIC_READ_;
154 desired_access = boost::winapi::GENERIC_READ_ |
161 desired_access = boost::winapi::GENERIC_READ_ |
168 desired_access = boost::winapi::GENERIC_READ_ |
175 desired_access = boost::winapi::GENERIC_READ_ |
183 desired_access = boost::winapi::GENERIC_READ_ |
195 desired_access,
/third_party/skia/third_party/externals/zlib/google/
Dzip_internal.cc42 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/flutter/skia/third_party/externals/zlib/google/
Dzip_internal.cc40 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()
/third_party/node/deps/zlib/google/
Dzip_internal.cc40 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()
/third_party/boost/boost/process/detail/windows/
Dfile_descriptor.hpp26 static ::boost::winapi::DWORD_ desired_access(mode_t mode) in desired_access() function
65 desired_access(mode), in file_descriptor()
81 desired_access(mode), in file_descriptor()
/third_party/flutter/engine/flutter/fml/platform/win/
Dmapping_win.cc85 const DWORD desired_access = read_only ? FILE_MAP_READ : FILE_MAP_WRITE; in FileMapping() local
88 MapViewOfFile(mapping_handle_.get(), desired_access, 0, 0, mapping_size)); in FileMapping()
/third_party/python/Doc/library/
Daudit_events.rst29 | _winapi.CreateFile | ``file_name``, ``desired_access``, |
42 | _winapi.OpenProcess | ``process_id``, ``desired_access`` |
/third_party/python/Modules/
D_winapi.c465 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 …]
/third_party/e2fsprogs/lib/ext2fs/
Dwindows_io.c566 DWORD desired_access = GENERIC_READ | ((open_flags & O_RDWR) ? GENERIC_WRITE : 0); in windows_open_device() local
575 data->handle = CreateFile(data->cf_device, desired_access, share_mode, NULL, OPEN_EXISTING, in windows_open_device()