Searched defs:bBlocking (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dconnect.c60 BOOLEAN bBlocking; local
76 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK ));
87 } while ( bBlocking && ( EFI_NOT_READY == Status ));
H A Daccept.c42 BOOLEAN bBlocking; local
64 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK ));
65 bBlocking &= bBlockingAllowed;
76 } while ( bBlocking && ( EFI_NOT_READY == Status ));
H A Dsendto.c57 BOOLEAN bBlocking; local
79 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK ));
105 } while (( 0 != length ) && ( EFI_NOT_READY == Status ) && bBlocking );

Completed in 42 milliseconds