HomeSort by relevance Sort by last modified time
    Searched full:object_attributes (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/sandbox/win/src/
registry_interception.h 19 POBJECT_ATTRIBUTES object_attributes, ULONG title_index,
26 POBJECT_ATTRIBUTES object_attributes);
32 POBJECT_ATTRIBUTES object_attributes, ULONG open_options);
interceptors_64.cc 92 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
97 return TargetNtCreateFile(orig_fn, file, desired_access, object_attributes,
105 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
109 return TargetNtOpenFile(orig_fn, file, desired_access, object_attributes,
114 POBJECT_ATTRIBUTES object_attributes,
118 return TargetNtQueryAttributesFile(orig_fn, object_attributes,
123 POBJECT_ATTRIBUTES object_attributes,
128 return TargetNtQueryFullAttributesFile(orig_fn, object_attributes,
158 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id) {
161 return TargetNtOpenThread(orig_fn, thread, desired_access, object_attributes,
    [all...]
filesystem_interception.h 18 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,
sync_interception.cc 56 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;
    [all...]
sync_policy.cc 40 OBJECT_ATTRIBUTES symbolic_link_directory_attributes = {};
56 OBJECT_ATTRIBUTES symbolic_link_attributes = {};
122 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
    [all...]
filesystem_interception.cc 20 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,
220 POBJECT_ATTRIBUTES object_attributes,
302 OBJECT_ATTRIBUTES object_attributes; local
    [all...]
sync_interception.h 32 POBJECT_ATTRIBUTES object_attributes,
40 POBJECT_ATTRIBUTES object_attributes);
registry_interception.cc 18 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,
    [all...]
process_thread_interception.cc 24 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,
    [all...]
sandbox_utils.h 23 OBJECT_ATTRIBUTES* obj_attr,
interceptors_64.h 62 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
69 POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status,
74 POBJECT_ATTRIBUTES object_attributes,
79 POBJECT_ATTRIBUTES object_attributes,
102 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
107 POBJECT_ATTRIBUTES object_attributes, PCLIENT_ID client_id);
140 POBJECT_ATTRIBUTES object_attributes, ULONG title_index,
146 POBJECT_ATTRIBUTES object_attributes);
151 POBJECT_ATTRIBUTES object_attributes, ULONG open_options);
159 POBJECT_ATTRIBUTES object_attributes, EVENT_TYPE event_type
    [all...]
process_thread_interception.h 52 ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes,
58 ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes,
registry_policy.cc 26 NTSTATUS TranslateMaximumAllowed(OBJECT_ATTRIBUTES* obj_attributes,
56 OBJECT_ATTRIBUTES* obj_attributes,
88 OBJECT_ATTRIBUTES* obj_attributes,
192 OBJECT_ATTRIBUTES obj_attributes = {0};
217 OBJECT_ATTRIBUTES obj_attributes = {0};
sandbox_utils.cc 25 OBJECT_ATTRIBUTES* obj_attr,
filesystem_policy.cc 22 OBJECT_ATTRIBUTES* obj_attributes,
250 OBJECT_ATTRIBUTES obj_attributes = {0};
281 OBJECT_ATTRIBUTES obj_attributes = {0};
310 OBJECT_ATTRIBUTES obj_attributes = {0};
335 OBJECT_ATTRIBUTES obj_attributes = {0};
process_thread_policy.cc 112 OBJECT_ATTRIBUTES attributes = {0};
147 OBJECT_ATTRIBUTES attributes = {0};
file_policy_test.cc 104 OBJECT_ATTRIBUTES obj_attributes = {0};
139 OBJECT_ATTRIBUTES obj_attributes = {0};
218 OBJECT_ATTRIBUTES obj_attributes = {0};
nt_internals.h 68 } OBJECT_ATTRIBUTES;
69 typedef OBJECT_ATTRIBUTES *POBJECT_ATTRIBUTES;
72 (p)->Length = sizeof(OBJECT_ATTRIBUTES);\
sandbox_nt_util.h 103 NTSTATUS AllocAndCopyName(const OBJECT_ATTRIBUTES* in_object,
sandbox_nt_util.cc 219 NTSTATUS AllocAndCopyName(const OBJECT_ATTRIBUTES* in_object,
  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 33 } OBJECT_ATTRIBUTES;
155 (p)->Length = sizeof( OBJECT_ATTRIBUTES ); \
178 #define POBJECT_ATTRIBUTES OBJECT_ATTRIBUTES*
192 OBJECT_ATTRIBUTES* );
242 OBJECT_ATTRIBUTES *,
finder_kernel.cc 83 OBJECT_ATTRIBUTES path_attributes;
166 OBJECT_ATTRIBUTES path_attributes;
222 OBJECT_ATTRIBUTES *object_attributes,
225 return func_to_call(handle, desired_access, object_attributes);
finder.h 120 // Calls func_to_call with the parameters desired_access, object_attributes
124 OBJECT_ATTRIBUTES *object_attributes,
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 399 OBJECT_ATTRIBUTES ObjectAttributes;

Completed in 149 milliseconds