Home | History | Annotate | Download | only in EfiSocketLib

Lines Matching refs:Status

48   EFI_STATUS Status;

55 Status = EslSocketAllocate ( pChildHandle,
60 // Return the operation status
62 DBG_EXIT_STATUS ( Status );
63 return Status;
95 EFI_STATUS Status;
103 Status = gBS->OpenProtocol (
111 if ( !EFI_ERROR ( Status )) {
115 Status = EslSocketFree ( pSocketProtocol, NULL );
119 "ERROR - Failed to open socket protocol on 0x%08x, Status; %r\r\n",
121 Status ));
125 // Return the operation status
127 DBG_EXIT_STATUS ( Status );
128 return Status;
152 EFI_STATUS Status;
157 Status = gBS->InstallMultipleProtocolInterfaces (
163 if ( !EFI_ERROR ( Status )) {
170 "ERROR - InstallMultipleProtocolInterfaces failed, Status: %r\r\n",
171 Status ));
175 // Return the operation status
177 return Status;
201 EFI_STATUS Status;
206 Status = gBS->UninstallMultipleProtocolInterfaces (
212 if ( !EFI_ERROR ( Status )) {
219 "ERROR - Failed to remove gEfiSocketServiceBindingProtocolGuid from 0x%08x, Status: %r\r\n",
221 Status ));
225 // Return the operation status
227 return Status;