Searched defs:RetVal (Results 26 - 35 of 35) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Dp_App/
H A DDpUtilities.c126 BOOLEAN RetVal; local
128 RetVal = (BOOLEAN)( ( *Measurement->Module == '\0') &&
134 return RetVal;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/WebServer/
H A DHTTP.c401 int RetVal; local
414 RetVal = getsockname ( SocketFD, (struct sockaddr *)&LocalAddress, &LengthInBytes );
415 if ( 0 == RetVal ) {
416 RetVal = getpeername ( SocketFD, (struct sockaddr *)&RemoteAddress, &LengthInBytes );
417 if ( 0 == RetVal ) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DConsoleLogger.c250 EFI_STATUS RetVal; local
265 RetVal = EFI_SUCCESS;
327 RetVal = Status;
372 RetVal = Status;
381 return (RetVal);
H A DShellProtocol.c2894 CHAR16 *RetVal; local
2903 RetVal = NULL;
2923 ASSERT((RetVal == NULL && RetSize == 0) || (RetVal != NULL));
2924 RetVal = StrnCatGrow(&RetVal, &RetSize, VariableName, 0);
2925 RetVal = StrnCatGrow(&RetVal, &RetSize, L";", 0);
2930 return (RetVal);
2958 CHAR16 *RetVal; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiFileHandleLib/
H A DUefiFileHandleLib.c903 CHAR16 *RetVal; local
908 RetVal = NULL;
910 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
912 RetVal = AllocateZeroPool(Size);
913 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
916 if (EFI_ERROR(Status) && (RetVal != NULL)) {
917 FreePool(RetVal);
918 RetVal = NULL;
920 return (RetVal);
1137 BOOLEAN RetVal; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DDh.c172 CHAR16 *RetVal; local
177 RetVal = NULL;
189 ASSERT((RetVal == NULL && Size == 0) || (RetVal != NULL));
191 StrnCatGrow(&RetVal, &Size, Seperator, 0);
193 StrnCatGrow(&RetVal, &Size, L"%H", 0);
194 StrnCatGrow(&RetVal, &Size, Temp, 0);
195 StrnCatGrow(&RetVal, &Size, L"%N", 0);
201 ASSERT((RetVal == NULL && Size == 0) || (RetVal !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiHandleParsingLib/
H A DUefiHandleParsingLib.c185 CHAR16 *RetVal; local
194 RetVal = NULL;
206 RetVal = AllocateZeroPool(Size);
210 UnicodeSPrint(RetVal, Size, Temp, Dev, Dev->Mode->Attribute);
220 NewSize = Size - StrSize(RetVal);
222 RetVal + StrLen(RetVal),
232 return (RetVal);
256 CHAR16 *RetVal; local
265 RetVal
615 CHAR16 *RetVal; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DUefiShellCommandLib.c430 @param[in, out] RetVal Pointer to the return vaule from the command handler.
444 IN OUT SHELL_STATUS *RetVal,
471 if (RetVal != NULL) {
472 *RetVal = Node->CommandHandler(NULL, gST);
1277 BOOLEAN RetVal; local
1294 RetVal = TRUE;
1296 RetVal = FALSE;
1301 return (RetVal);
442 ShellCommandRunCommandHandler( IN CONST CHAR16 *CommandString, IN OUT SHELL_STATUS *RetVal, IN OUT BOOLEAN *CanAffectLE OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/UndiRuntimeDxe/
H A DE100b.c1954 @retval RetVal The word read from the EEPROM.
1964 UINT16 RetVal; local
1973 RetVal = 0;
2001 RetVal = shift_bits_in (AdapterInfo);
2024 return RetVal;
2036 @retval RetVal The word read from the EEPROM.
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c1597 CHAR16 *RetVal; local
1603 RetVal = NULL;
1611 ASSERT(RetVal == NULL);
1612 RetVal = StrnCatGrow(&RetVal, NULL, FileName, 0);
1614 return (RetVal);
1633 ASSERT(RetVal == NULL);
1634 RetVal = StrnCatGrow(&RetVal, NULL, TestPath, 0);
1637 return (RetVal);
1714 CHAR16 *RetVal; local
2797 EFI_STATUS RetVal; local
2852 EFI_STATUS RetVal; local
3017 UINT64 RetVal; local
3773 UINT64 RetVal; local
3872 CHAR16 *RetVal; local
[all...]

Completed in 76 milliseconds

12