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.c46 unsigned short int iosb$w_status; /* Final I/O status */
49 unsigned short int iosb$w_bcnt; /* 16-bit byte count */
51 unsigned int iosb$l_dev_depend; /* 32-bit device dependent info */
52 unsigned int iosb$l_pid; /* 32-bit pid */
53 } iosb$r_l;
54 } iosb$r_bcnt_16;
56 unsigned int iosb$l_bcnt; /* 32-bit byte count (unaligned) */
57 unsigned short int iosb$w_dev_depend_high; /* 16-bit device dependent info */
58 } iosb$r_bcnt_32;
59 } 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
475 status = sys$qiow(0, channel, IO$_SENSEMODE, &iosb, 0, 0, tty_orig, 12, in open_console()
479 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) in open_console()
501 status = sys$qiow(0, channel, IO$_SETMODE, &iosb, 0, 0, tty_new, 12, in noecho_console()
503 if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL)) { in noecho_console()
506 status, iosb.iosb$w_value); in noecho_console()
533 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.c390 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()