Lines Matching refs:status
738 NTSTATUS status = (NTSTATUS)pep->ExceptionRecord->ExceptionInformation[3];
739 *perror = pRtlNtStatusToDosError(status);
1145 NTSTATUS status;
1197 status = pNtSetInformationFile(handle,
1202 if (!NT_SUCCESS(status)) {
1203 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1211 status = pNtSetInformationFile(handle,
1216 if (NT_SUCCESS(status)) {
1219 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1373 NTSTATUS status;
1403 status = pNtQueryDirectoryFile(dir_handle,
1418 if (status == (NTSTATUS)STATUS_INVALID_PARAMETER)
1421 while (NT_SUCCESS(status)) {
1513 status = pNtQueryDirectoryFile(dir_handle,
1529 if (status == STATUS_SUCCESS && iosb.Information == 0)
1530 status = STATUS_BUFFER_OVERFLOW;
1533 if (status != STATUS_NO_MORE_FILES)
1551 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
1720 /* Buffer overflow (a warning status code) is expected here. */
1732 /* Buffer overflow (a warning status code) is expected here. */
1992 NTSTATUS status;
2013 status = pNtSetInformationFile(handle,
2019 if (NT_SUCCESS(status)) {
2022 SET_REQ_WIN32_ERROR(req, pRtlNtStatusToDosError(status));
2842 static void uv__fs_done(struct uv__work* w, int status) {
2848 if (status == UV_ECANCELED) {