Searched refs:object_attributes (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dregistry_interception.h19 POBJECT_ATTRIBUTES object_attributes, ULONG title_index,
26 POBJECT_ATTRIBUTES object_attributes);
32 POBJECT_ATTRIBUTES object_attributes, ULONG open_options);
H A Dsync_interception.h32 POBJECT_ATTRIBUTES object_attributes,
40 POBJECT_ATTRIBUTES object_attributes);
H A Dregistry_interception.cc18 POBJECT_ATTRIBUTES object_attributes,
22 NTSTATUS status = orig_CreateKey(key, desired_access, object_attributes,
54 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
97 POBJECT_ATTRIBUTES object_attributes) {
113 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
150 POBJECT_ATTRIBUTES object_attributes) {
152 NTSTATUS status = orig_OpenKey(key, desired_access, object_attributes);
156 return CommonNtOpenKey(status, key, desired_access, object_attributes);
161 POBJECT_ATTRIBUTES object_attributes,
164 NTSTATUS status = orig_OpenKeyEx(key, desired_access, object_attributes,
16 TargetNtCreateKey(NtCreateKeyFunction orig_CreateKey, PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, ULONG title_index, PUNICODE_STRING class_name, ULONG create_options, PULONG disposition) argument
95 CommonNtOpenKey(NTSTATUS status, PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes) argument
148 TargetNtOpenKey(NtOpenKeyFunction orig_OpenKey, PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes) argument
159 TargetNtOpenKeyEx(NtOpenKeyExFunction orig_OpenKeyEx, PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, ULONG open_options) argument
[all...]
H A Dinterceptors_64.cc76 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
81 return TargetNtCreateFile(orig_fn, file, desired_access, object_attributes,
89 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
93 return TargetNtOpenFile(orig_fn, file, desired_access, object_attributes,
98 POBJECT_ATTRIBUTES object_attributes,
102 return TargetNtQueryAttributesFile(orig_fn, object_attributes,
107 POBJECT_ATTRIBUTES object_attributes,
112 return TargetNtQueryFullAttributesFile(orig_fn, object_attributes,
142 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) {
145 return TargetNtOpenThread(orig_fn, thread, desired_access, object_attributes,
74 TargetNtCreateFile64( PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
87 TargetNtOpenFile64( PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, ULONG sharing, ULONG options) argument
97 TargetNtQueryAttributesFile64( POBJECT_ATTRIBUTES object_attributes, PFILE_BASIC_INFORMATION file_attributes) argument
106 TargetNtQueryFullAttributesFile64( POBJECT_ATTRIBUTES object_attributes, PFILE_NETWORK_OPEN_INFORMATION file_attributes) argument
140 TargetNtOpenThread64( PHANDLE thread, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) argument
149 TargetNtOpenProcess64( PHANDLE process, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) argument
206 TargetNtCreateKey64( PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, ULONG title_index, PUNICODE_STRING class_name, ULONG create_options, PULONG disposition) argument
217 TargetNtOpenKey64( PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes) argument
225 TargetNtOpenKeyEx64( PHANDLE key, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, ULONG open_options) argument
236 TargetNtCreateEvent64( PHANDLE event_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, EVENT_TYPE event_type, BOOLEAN initial_state) argument
246 TargetNtOpenEvent64( PHANDLE event_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes) argument
[all...]
H A Dfilesystem_interception.h18 ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes,
26 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
33 POBJECT_ATTRIBUTES object_attributes,
40 POBJECT_ATTRIBUTES object_attributes,
H A Dsync_interception.cc56 POBJECT_ATTRIBUTES object_attributes,
60 object_attributes, event_type,
62 if (status != STATUS_ACCESS_DENIED || !object_attributes)
77 OBJECT_ATTRIBUTES object_attribs_copy = *object_attributes;
112 POBJECT_ATTRIBUTES object_attributes) {
114 object_attributes);
115 if (status != STATUS_ACCESS_DENIED || !object_attributes)
130 OBJECT_ATTRIBUTES object_attribs_copy = *object_attributes;
53 TargetNtCreateEvent(NtCreateEventFunction orig_CreateEvent, PHANDLE event_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, EVENT_TYPE event_type, BOOLEAN initial_state) argument
109 TargetNtOpenEvent(NtOpenEventFunction orig_OpenEvent, PHANDLE event_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes) argument
H A Dfilesystem_interception.cc20 POBJECT_ATTRIBUTES object_attributes,
27 NTSTATUS status = orig_CreateFile(file, desired_access, object_attributes,
50 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
96 POBJECT_ATTRIBUTES object_attributes,
100 NTSTATUS status = orig_OpenFile(file, desired_access, object_attributes,
121 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
164 POBJECT_ATTRIBUTES object_attributes,
167 NTSTATUS status = orig_QueryAttributes(object_attributes, file_attributes);
185 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
223 POBJECT_ATTRIBUTES object_attributes,
18 TargetNtCreateFile(NtCreateFileFunction orig_CreateFile, PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
94 TargetNtOpenFile(NtOpenFileFunction orig_OpenFile, PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, ULONG sharing, ULONG options) argument
162 TargetNtQueryAttributesFile( NtQueryAttributesFileFunction orig_QueryAttributes, POBJECT_ATTRIBUTES object_attributes, PFILE_BASIC_INFORMATION file_attributes) argument
221 TargetNtQueryFullAttributesFile( NtQueryFullAttributesFileFunction orig_QueryFullAttributes, POBJECT_ATTRIBUTES object_attributes, PFILE_NETWORK_OPEN_INFORMATION file_attributes) argument
309 OBJECT_ATTRIBUTES object_attributes; local
[all...]
H A Dprocess_thread_interception.cc24 POBJECT_ATTRIBUTES object_attributes,
26 NTSTATUS status = orig_OpenThread(thread, desired_access, object_attributes,
45 if (!should_break && NULL != object_attributes) {
46 if (0 != object_attributes->Attributes ||
47 NULL != object_attributes->ObjectName ||
48 NULL != object_attributes->RootDirectory ||
49 NULL != object_attributes->SecurityDescriptor ||
50 NULL != object_attributes->SecurityQualityOfService) {
106 POBJECT_ATTRIBUTES object_attributes,
108 NTSTATUS status = orig_OpenProcess(process, desired_access, object_attributes,
22 TargetNtOpenThread(NtOpenThreadFunction orig_OpenThread, PHANDLE thread, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) argument
104 TargetNtOpenProcess(NtOpenProcessFunction orig_OpenProcess, PHANDLE process, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) argument
[all...]
H A Dinterceptors_64.h53 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
60 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
65 POBJECT_ATTRIBUTES object_attributes,
70 POBJECT_ATTRIBUTES object_attributes,
93 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
98 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
131 POBJECT_ATTRIBUTES object_attributes, ULONG title_index,
137 POBJECT_ATTRIBUTES object_attributes);
142 POBJECT_ATTRIBUTES object_attributes, ULONG open_options);
150 POBJECT_ATTRIBUTES object_attributes, EVENT_TYP
[all...]
H A Dsync_policy.cc122 OBJECT_ATTRIBUTES object_attributes = {}; local
124 &object_attributes, &directory_name);
127 &object_attributes);
199 OBJECT_ATTRIBUTES object_attributes = {}; local
201 &object_attributes, &unicode_event_name);
204 status = NtCreateEvent(&local_handle, EVENT_ALL_ACCESS, &object_attributes,
236 OBJECT_ATTRIBUTES object_attributes = {}; local
238 &object_attributes, &unicode_event_name);
241 status = NtOpenEvent(&local_handle, desired_access, &object_attributes);
H A Dprocess_thread_interception.h52 ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes,
58 ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes,
/external/chromium_org/chrome_elf/create_file/
H A Dchrome_create_file_unittest.cc37 OBJECT_ATTRIBUTES object_attributes; member in struct:__anon6049::ChromeCreateFileTest::NtCreateFileParams
56 POBJECT_ATTRIBUTES object_attributes,
67 object_attributes,
131 POBJECT_ATTRIBUTES object_attributes,
143 object_attributes,
157 object_attributes,
169 POBJECT_ATTRIBUTES object_attributes,
179 params->object_attributes.Length = object_attributes->Length;
180 params->object_attributes
53 FakeNtCreateFile( PHANDLE file_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status_block, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length) argument
129 HandleCreateFileCall(PHANDLE file_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status_block, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length, CallPath call_path) argument
168 SetParams(ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length, NtCreateFileParams* params) argument
[all...]
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder.h120 // Calls func_to_call with the parameters desired_access, object_attributes
124 OBJECT_ATTRIBUTES *object_attributes,
H A Dfinder_kernel.cc222 OBJECT_ATTRIBUTES *object_attributes,
225 return func_to_call(handle, desired_access, object_attributes);
221 NtGenericOpen(ACCESS_MASK desired_access, OBJECT_ATTRIBUTES *object_attributes, NTGENERICOPEN func_to_call, HANDLE *handle) argument

Completed in 168 milliseconds