Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Daccept.c42 BOOLEAN bBlocking; in AcceptWork() local
64 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK )); in AcceptWork()
65 bBlocking &= bBlockingAllowed; in AcceptWork()
76 } while ( bBlocking && ( EFI_NOT_READY == Status )); in AcceptWork()
Dconnect.c60 BOOLEAN bBlocking; in connect() local
76 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK )); in connect()
87 } while ( bBlocking && ( EFI_NOT_READY == Status )); in connect()
Dsendto.c57 BOOLEAN bBlocking; in sendto() local
79 bBlocking = (BOOLEAN)( 0 == ( pDescriptor->Oflags & O_NONBLOCK )); in sendto()
105 } while (( 0 != length ) && ( EFI_NOT_READY == Status ) && bBlocking ); in sendto()