Searched refs:EINPROGRESS (Results 1 - 25 of 45) sorted by relevance

12

/vbox/include/iprt/
H A Derrno.h225 #ifndef EINPROGRESS
227 # define EINPROGRESS (36) macro
229 # define EINPROGRESS (115) macro
231 # define EINPROGRESS (150) macro
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_tftp.c169 pxe_tftp.rc = -EINPROGRESS;
255 while ( ( ( rc = pxe_tftp.rc ) == -EINPROGRESS ) &&
263 /* EINPROGRESS is normal; we don't wait for the whole transfer */
264 if ( rc == -EINPROGRESS )
368 while ( ( ( rc = pxe_tftp.rc ) == -EINPROGRESS ) &&
375 /* EINPROGRESS is normal if we haven't reached EOF yet */
376 if ( rc == -EINPROGRESS )
480 while ( ( rc = pxe_tftp.rc ) == -EINPROGRESS )
548 while ( ( ( rc = pxe_tftp.rc ) == -EINPROGRESS ) &&
555 /* EINPROGRESS i
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/syslinux/
H A Dcomboot_resolv.c47 comboot_resolver.rc = -EINPROGRESS;
53 while ( comboot_resolver.rc == -EINPROGRESS )
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dmonojob.c71 monojob_rc = -EINPROGRESS;
73 while ( monojob_rc == -EINPROGRESS ) {
H A Dposix_io.c50 * Set to -EINPROGRESS while data transfer is in progress.
187 file->rc = -EINPROGRESS;
200 if ( file->rc != -EINPROGRESS ) {
236 ( file->rc == -EINPROGRESS ) )
291 if ( file->rc != -EINPROGRESS ) {
/vbox/src/VBox/Devices/PC/ipxe/src/hci/tui/
H A Dlogin_ui.c57 int rc = -EINPROGRESS;
87 while ( rc == -EINPROGRESS ) {
/vbox/src/libs/libxml2-2.6.31/include/
H A Dwsockcompat.h40 #define EINPROGRESS WSAEINPROGRESS macro
/vbox/src/VBox/NetworkServices/NAT/
H A Dwinutils.h69 # undef EINPROGRESS macro
70 # define EINPROGRESS WSAEINPROGRESS macro
/vbox/src/VBox/Runtime/common/err/
H A DRTErrConvertFromErrno.cpp393 #ifdef EINPROGRESS
394 case EINPROGRESS: return VERR_NET_IN_PROGRESS;
H A DRTErrConvertToErrno.cpp397 #ifdef EINPROGRESS
398 case VERR_NET_IN_PROGRESS: return EINPROGRESS;
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Darch.h177 #define EINPROGRESS 115 /* Operation now in progress */ macro
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Darch.h195 #define EINPROGRESS 115 /* Operation now in progress */ macro
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dtest.c131 return -EINPROGRESS;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Derrno.h92 #define EINPROGRESS __EINPROGRESS /* 36 Operation now in progress */ macro
/vbox/src/VBox/Devices/Network/slirp/
H A Dsocket.h201 return ( iErrorCode == EINPROGRESS
H A Dslirp.h85 # undef EINPROGRESS macro
95 # define EINPROGRESS WSAEINPROGRESS macro
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k_desc.c260 return -EINPROGRESS;
312 return -EINPROGRESS;
401 return -EINPROGRESS;
467 return -EINPROGRESS;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_recv.c279 if (ret == -EINPROGRESS) {
305 if (ret == -EINPROGRESS)
H A Dath9k_ar9003_mac.c252 return -EINPROGRESS;
542 return -EINPROGRESS;
548 return -EINPROGRESS;
H A Dath9k_ar9002_mac.c219 return -EINPROGRESS;
/vbox/src/VBox/Runtime/r3/solaris/
H A Dfileaio-solaris.cpp262 Assert(rcSol != EINPROGRESS); /* Handled by our own state handling. */
398 else if (rcSol != EINPROGRESS)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbnet.c568 * EINPROGRESS. We first wait until the socket becomes writable.
600 if(!fd->secret->nonblocking && ((err == EINPROGRESS) || (err==EAGAIN) || (err==EALREADY))) {
618 if( fd->secret->nonblocking && ((err == EAGAIN) || (err == EINPROGRESS))) {
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2_errors.c768 case EINPROGRESS:
1071 case EINPROGRESS:
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dint13.c332 command->rc = -EINPROGRESS;
337 while ( ( command->rc == -EINPROGRESS ) &&
342 return ( ( command->rc == -EINPROGRESS ) ?
358 while ( command->rc == -EINPROGRESS )
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Derrno.h487 #define EINPROGRESS __einfo_error ( EINFO_EINPROGRESS ) macro

Completed in 2383 milliseconds

12