Home | History | Annotate | Download | only in finder

Lines Matching defs:status_code

102   NTSTATUS status_code = NtOpenDirectoryObject(&file_handle,
105 if (status_code != 0)
108 status_code = NtQueryDirectoryObject(file_handle,
116 if (status_code != 0)
174 NTSTATUS status_code = 0;
177 status_code = NtGenericOpen(GENERIC_ALL, &path_attributes, func, &handle);
178 if (STATUS_SUCCESS == status_code) {
183 } else if (status_code != EXCEPTION_ACCESS_VIOLATION &&
184 status_code != STATUS_ACCESS_DENIED) {
185 Output(OBJ_ERR, status_code, path);
191 status_code = NtGenericOpen(GENERIC_WRITE, &path_attributes, func, &handle);
192 if (STATUS_SUCCESS == status_code) {
197 } else if (status_code != EXCEPTION_ACCESS_VIOLATION &&
198 status_code != STATUS_ACCESS_DENIED) {
199 Output(OBJ_ERR, status_code, path);
205 status_code = NtGenericOpen(GENERIC_READ, &path_attributes, func, &handle);
206 if (STATUS_SUCCESS == status_code) {
211 } else if (status_code != EXCEPTION_ACCESS_VIOLATION &&
212 status_code != STATUS_ACCESS_DENIED) {
213 Output(OBJ_ERR, status_code, path);