Home
last modified time | relevance | path

Searched refs:desired_access (Results 1 – 25 of 826) sorted by last modified time

12345678910>>...34

/dports/sysutils/e2fsprogs/e2fsprogs-1.46.5/lib/ext2fs/
H A Dwindows_io.c566 DWORD desired_access = GENERIC_READ | ((open_flags & O_RDWR) ? GENERIC_WRITE : 0);
575 data->handle = CreateFile(data->cf_device, desired_access, share_mode, NULL, OPEN_EXISTING,
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/winexe/
H A Dservice.c88 r.in.desired_access = SERVICE_ALL_ACCESS; in svc_CreateService()
/dports/net/py-impacket/impacket-0.9.17/impacket/
H A Dsmb3.py1690 def open_andx(self, tid, fileName, open_mode, desired_access): argument
1695 …fileId = self.create(tid,fileName,desired_access, open_mode, FILE_NON_DIRECTORY_FILE, open_mode, 0)
H A Dsmb.py2795 def open(self, tid, filename, open_mode, desired_access): argument
2804 openFile['Parameters']['DesiredAccess'] = desired_access
2828 def open_andx(self, tid, filename, open_mode, desired_access): argument
2837 openFile['Parameters']['DesiredAccess'] = desired_access
/dports/misc/e2fsprogs-libuuid/e2fsprogs-1.46.5/lib/ext2fs/
H A 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()
/dports/misc/e2fsprogs-libblkid/e2fsprogs-1.46.5/lib/ext2fs/
H A 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()
/dports/games/flightgear/flightgear-2020.3.11/3rdparty/hidapi/windows/
H A Dhid.c236 DWORD desired_access = (enumerate)? 0: (GENERIC_WRITE | GENERIC_READ); in open_device() local
240 desired_access, in open_device()
/dports/devel/libserialport/libserialport-0.1.1/
H A Dserialport.c458 DWORD desired_access = 0, flags_and_attributes = 0, errors; in sp_open() local
470 desired_access |= GENERIC_READ; in sp_open()
472 desired_access |= GENERIC_WRITE; in sp_open()
474 port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0, in sp_open()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/desktop_capture/win/
H A Ddesktop.cc75 ACCESS_MASK desired_access = in GetDesktop() local
79 HDESK desktop = OpenDesktop(desktop_name, 0, FALSE, desired_access); in GetDesktop()
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium/sandbox/win/src/
H A Dtarget_services.h51 DWORD desired_access,
H A Dfilesystem_dispatcher.cc89 uint32_t desired_access, in NtCreateFile() argument
105 params[OpenFile::ACCESS] = ParamPickerMake(desired_access); in NtCreateFile()
121 desired_access, create_disposition)) { in NtCreateFile()
129 result, *ipc->client_info, *name, attributes, desired_access, in NtCreateFile()
145 uint32_t desired_access, in NtOpenFile() argument
160 params[OpenFile::ACCESS] = ParamPickerMake(desired_access); in NtOpenFile()
176 desired_access, create_disposition)) { in NtOpenFile()
184 result, *ipc->client_info, *name, attributes, desired_access, in NtOpenFile()
H A Dfilesystem_policy.cc25 ACCESS_MASK desired_access, in NtCreateFileInTarget() argument
40 NtCreateFile(&local_handle, desired_access, obj_attributes, in NtCreateFileInTarget()
250 uint32_t desired_access, in CreateFileAction() argument
273 NtCreateFileInTarget(handle, desired_access, &obj_attributes, &io_block, in CreateFileAction()
285 uint32_t desired_access, in OpenFileAction() argument
308 handle, desired_access, &obj_attributes, &io_block, 0, share_access, in OpenFileAction()
H A Dfilesystem_policy.h45 uint32_t desired_access,
63 uint32_t desired_access,
H A Dpolicy_target.cc114 ACCESS_MASK desired_access, in TargetNtOpenThreadToken() argument
120 return orig_OpenThreadToken(thread, desired_access, open_as_self, token); in TargetNtOpenThreadToken()
127 ACCESS_MASK desired_access, in TargetNtOpenThreadTokenEx() argument
134 return orig_OpenThreadTokenEx(thread, desired_access, open_as_self, in TargetNtOpenThreadTokenEx()
H A Dprocess_thread_dispatcher.h30 bool NtOpenThread(IPCInfo* ipc, uint32_t desired_access, uint32_t thread_id);
34 uint32_t desired_access,
40 uint32_t desired_access);
45 uint32_t desired_access,
H A Dprocess_thread_interception.cc28 ACCESS_MASK desired_access, in TargetNtOpenThread() argument
32 orig_OpenThread(thread, desired_access, object_attributes, client_id); in TargetNtOpenThread()
78 ResultCode code = CrossCall(ipc, IpcTag::NTOPENTHREAD, desired_access, in TargetNtOpenThread()
112 ACCESS_MASK desired_access, in TargetNtOpenProcess() argument
157 ResultCode code = CrossCall(ipc, IpcTag::NTOPENPROCESS, desired_access, in TargetNtOpenProcess()
181 ACCESS_MASK desired_access, in TargetNtOpenProcessToken() argument
183 NTSTATUS status = orig_OpenProcessToken(process, desired_access, token); in TargetNtOpenProcessToken()
205 desired_access, &answer); in TargetNtOpenProcessToken()
229 ACCESS_MASK desired_access, in TargetNtOpenProcessTokenEx() argument
232 NTSTATUS status = orig_OpenProcessTokenEx(process, desired_access, in TargetNtOpenProcessTokenEx()
[all …]
H A Dregistry_dispatcher.h34 uint32_t desired_access,
43 uint32_t desired_access);
H A Dregistry_policy.cc58 ACCESS_MASK desired_access, in NtCreateKeyInTarget() argument
69 if (MAXIMUM_ALLOWED & desired_access) { in NtCreateKeyInTarget()
70 NTSTATUS status = TranslateMaximumAllowed(obj_attributes, &desired_access); in NtCreateKeyInTarget()
77 NtCreateKey(&local_handle, desired_access, obj_attributes, title_index, in NtCreateKeyInTarget()
91 ACCESS_MASK desired_access, in NtOpenKeyInTarget() argument
98 if (MAXIMUM_ALLOWED & desired_access) { in NtOpenKeyInTarget()
105 NTSTATUS status = NtOpenKey(&local_handle, desired_access, obj_attributes); in NtOpenKeyInTarget()
177 uint32_t desired_access, in CreateKeyAction() argument
200 *nt_status = NtCreateKeyInTarget(handle, desired_access, &obj_attributes, in CreateKeyAction()
211 uint32_t desired_access, in OpenKeyAction() argument
[all …]
H A Dsandbox.h181 DWORD desired_access,
H A Dsigned_interception.cc24 ACCESS_MASK desired_access, in TargetNtCreateSection() argument
35 if (!(desired_access & SECTION_MAP_EXECUTE)) in TargetNtCreateSection()
92 return orig_CreateSection(section_handle, desired_access, object_attributes, in TargetNtCreateSection()
H A Dsync_dispatcher.cc65 uint32_t desired_access) { in OpenEvent() argument
70 params[OpenEventParams::ACCESS] = ParamPickerMake(desired_access); in OpenEvent()
77 result, *ipc->client_info, *name, desired_access, &handle); in OpenEvent()
H A Dsync_policy.h43 uint32_t desired_access,
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium-shim/patches/after_update/
H A Dadd_interception_logging.patch73 ACCESS_MASK desired_access,
249 DWORD desired_access,
351 ACCESS_MASK desired_access,
389 ACCESS_MASK desired_access,
423 ACCESS_MASK desired_access,
550 ACCESS_MASK desired_access,
595 ACCESS_MASK desired_access,
615 ACCESS_MASK desired_access,
633 ACCESS_MASK desired_access,
674 ACCESS_MASK desired_access,
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium-shim/patches/with_update/
H A Dallow_read_only_all_paths_rule.patch33 ACCESS_MASK desired_access,
44 file, desired_access, object_attributes, io_status, allocation_size,
58 ACCESS_MASK desired_access,
64 NTSTATUS status = orig_OpenFile(file, desired_access, object_attributes,
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium/base/process/
H A Dprocess.h73 static Process OpenWithAccess(ProcessId pid, DWORD desired_access);

12345678910>>...34