Home
last modified time | relevance | path

Searched refs:iosb (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssl/apps/lib/
H A Dvms_term_sock.c47 unsigned short int iosb$w_status; /* Final I/O status */
52 unsigned short int iosb$w_bcnt; /* 16-bit byte count */
55 unsigned int iosb$l_dev_depend; /* 32-bit device dependent info */
56 unsigned int iosb$l_pid; /* 32-bit pid */
58 iosb$r_l;
60 iosb$r_bcnt_16;
63 unsigned int iosb$l_bcnt; /* 32-bit byte count (unaligned) */
64 unsigned short int iosb$w_dev_depend_high; /* 16-bit device dependent info */
66 iosb$r_bcnt_32;
68 iosb$r_devdepend;
[all …]
/freebsd/crypto/openssl/crypto/ui/
H A Dui_openssl.c144 short iosb$w_value;
145 short iosb$w_count;
146 long iosb$l_info;
162 static struct IOSB iosb; variable
473 status = sys$qiow(0, channel, IO$_SENSEMODE, &iosb, 0, 0, tty_orig, 12, in open_console()
477 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) in open_console()
499 status = sys$qiow(0, channel, IO$_SETMODE, &iosb, 0, 0, tty_new, 12, in noecho_console()
501 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in noecho_console()
504 status, iosb.iosb$w_value); in noecho_console()
531 status = sys$qiow(0, channel, IO$_SETMODE, &iosb, 0, 0, tty_new, 12, in echo_console()
[all …]
/freebsd/crypto/openssl/providers/implementations/rands/seeding/
H A Drand_vms.c389 IOSB iosb; in data_collect_method() local
421 if ((status = sys$getrmi(efn, 0, 0, RMI_items_64bit, &iosb, 0, 0)) in data_collect_method()
426 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
430 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method()
431 lib$signal(iosb.iosb$l_getxxi_status); in data_collect_method()
434 if ((status = sys$getrmi(efn, 0, 0, RMI_items, &iosb, 0, 0)) in data_collect_method()
439 if ((status = sys$synch(efn, &iosb)) != SS$_NORMAL) { in data_collect_method()
443 if (iosb.iosb$l_getxxi_status != SS$_NORMAL) { in data_collect_method()
444 lib$signal(iosb.iosb$l_getxxi_status); in data_collect_method()