Lines Matching refs:status
137 int uv__ntstatus_to_winsock_error(NTSTATUS status) {
138 switch (status) {
241 if ((status & (FACILITY_NTWIN32 << 16)) == (FACILITY_NTWIN32 << 16) &&
242 (status & (ERROR_SEVERITY_ERROR | ERROR_SEVERITY_WARNING))) {
245 return (DWORD) (status & 0xffff);
273 NTSTATUS status;
306 status = pNtDeviceIoControlFile((HANDLE) socket,
320 switch (status) {
349 error = uv__ntstatus_to_winsock_error(status);
368 NTSTATUS status;
404 status = pNtDeviceIoControlFile((HANDLE) socket,
418 switch (status) {
447 error = uv__ntstatus_to_winsock_error(status);
467 NTSTATUS status;
494 status = pNtDeviceIoControlFile((HANDLE) socket,
507 * and then grab the real status from the io status block. */
508 if (status == STATUS_PENDING) {
518 status = iosb.Status;
524 switch (status) {
534 error = uv__ntstatus_to_winsock_error(status);