Lines Matching refs:status

117     int	status;  in mch_settmode()  local
129 status = sys$qiow(0, iochan, IO$_SETMODE, iosb, 0, 0, in mch_settmode()
131 if (status!=SS$_NORMAL || (iosb[0]&0xFFFF)!=SS$_NORMAL) in mch_settmode()
141 int status; in set_tty() local
158 status = sys$qiow(0, iochan, IO$_SETMODE, iosb, 0, 0, in set_tty()
160 if (status!=SS$_NORMAL || (iosb[0]&0xFFFF)!=SS$_NORMAL) in set_tty()
170 int status; in get_tty() local
174 status = sys$assign(&odsc,&iochan,0,0); in get_tty()
176 status = sys$qiow(0, iochan, IO$_SENSEMODE, iosb, 0, 0, in get_tty()
178 if (status != SS$_NORMAL || (iosb[0] & 0xFFFF) != SS$_NORMAL) in get_tty()
282 long status; in vms_sys() local
294 0, 0, 0, &status, 0, 0, 0, 0, 0, 0); in vms_sys()
295 return status; in vms_sys()
314 vms_sys_status(int status) in vms_sys_status() argument
316 if (status != SS$_NORMAL && (status & STS$M_SUCCESS) == 0) in vms_sys_status()
317 return status; // Command failed. in vms_sys_status()
330 int status, function, len; in vms_read() local
351 status = sys$qiow(0, iochan, function, &iosb, 0, 0, in vms_read()
357 status = sys$qiow(0, iochan, function, &iosb, 0, 0, in vms_read()
742 int status; in RealWaitForChar() local
758 status = sys$gettim(&time_curr); in RealWaitForChar()
759 if (status != SS$_NORMAL) in RealWaitForChar()
765 status = lib$cvts_to_internal_time( in RealWaitForChar()
769 status = lib$cvtf_to_internal_time( in RealWaitForChar()
772 if (status != LIB$_NORMAL) in RealWaitForChar()
775 status = lib$add_times( in RealWaitForChar()
779 if (status != LIB$_NORMAL) in RealWaitForChar()
785 status = sys$qiow(0, iochan, IO$_SENSEMODE | IO$M_TYPEAHDCNT, iosb, in RealWaitForChar()
787 if (status != SS$_NORMAL || (iosb[0] & 0xFFFF) != SS$_NORMAL) in RealWaitForChar()
802 status = sys$gettim(&time_curr); in RealWaitForChar()
803 if (status != SS$_NORMAL) in RealWaitForChar()
806 status = lib$sub_times( in RealWaitForChar()
810 if (status != LIB$_NORMAL) in RealWaitForChar()