Lines Matching refs:status
672 NTSTATUS status = (NTSTATUS)pep->ExceptionRecord->ExceptionInformation[3];
673 *perror = pRtlNtStatusToDosError(status);
1079 NTSTATUS status;
1131 status = pNtSetInformationFile(handle,
1136 if (!NT_SUCCESS(status)) {
1137 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1145 status = pNtSetInformationFile(handle,
1150 if (NT_SUCCESS(status)) {
1153 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1307 NTSTATUS status;
1337 status = pNtQueryDirectoryFile(dir_handle,
1352 if (status == (NTSTATUS)STATUS_INVALID_PARAMETER)
1355 while (NT_SUCCESS(status)) {
1436 status = pNtQueryDirectoryFile(dir_handle,
1452 if (status == STATUS_SUCCESS && iosb.Information == 0)
1453 status = STATUS_BUFFER_OVERFLOW;
1456 if (status != STATUS_NO_MORE_FILES)
1474 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1645 /* Buffer overflow (a warning status code) is expected here. */
1669 /* Buffer overflow (a warning status code) is expected here. */
1681 /* Buffer overflow (a warning status code) is expected here. */
1973 NTSTATUS status;
1994 status = pNtSetInformationFile(handle,
2000 if (NT_SUCCESS(status)) {
2003 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
2829 static void uv__fs_done(struct uv__work* w, int status) {
2835 if (status == UV_ECANCELED) {