Searched refs:iosb (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/apps/lib/ |
D | vms_term_sock.c | 46 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 …]
|
/third_party/openssl/crypto/ui/ |
D | ui_openssl.c | 144 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 …]
|
/third_party/libuv/src/win/ |
D | winsock.c | 275 IO_STATUS_BLOCK* iosb = (IO_STATUS_BLOCK*) &overlapped->Internal; in uv__wsarecv_workaround() local 303 iosb->Status = STATUS_PENDING; in uv__wsarecv_workaround() 304 iosb->Pointer = 0; in uv__wsarecv_workaround() 310 iosb, in uv__wsarecv_workaround() 318 *bytes = (DWORD) iosb->Information; in uv__wsarecv_workaround() 370 IO_STATUS_BLOCK* iosb = (IO_STATUS_BLOCK*) &overlapped->Internal; in uv__wsarecvfrom_workaround() local 401 iosb->Status = STATUS_PENDING; in uv__wsarecvfrom_workaround() 402 iosb->Pointer = 0; in uv__wsarecvfrom_workaround() 408 iosb, in uv__wsarecvfrom_workaround() 416 *bytes = (DWORD) iosb->Information; in uv__wsarecvfrom_workaround() [all …]
|
D | fs.c | 1144 IO_STATUS_BLOCK iosb; in fs__unlink() local 1198 &iosb, in fs__unlink() 1212 &iosb, in fs__unlink() 1372 IO_STATUS_BLOCK iosb; in fs__scandir() local 1407 &iosb, in fs__scandir() 1517 &iosb, in fs__scandir() 1529 if (status == STATUS_SUCCESS && iosb.Information == 0) in fs__scandir()
|
/third_party/openssl/providers/implementations/rands/seeding/ |
D | rand_vms.c | 390 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()
|
/third_party/pulseaudio/src/pulsecore/ |
D | poll-win32.c | 162 IO_STATUS_BLOCK iosb; in windows_compute_revents() local 197 memset (&iosb, 0, sizeof (iosb)); in windows_compute_revents() 201 || NtQueryInformationFile (h, &iosb, &fpli, sizeof (fpli), in windows_compute_revents()
|