Searched defs:Intermediate (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DStall.c34 UINT64 Intermediate; local
67 Status = ShellConvertStringToUint64(ShellCommandLineGetRawValue(Package, 1), &Intermediate, FALSE, FALSE);
68 if (EFI_ERROR(Status) || ((UINT64)(UINTN)(Intermediate)) != Intermediate) {
72 Status = gBS->Stall((UINTN)Intermediate);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DSerMode.c189 UINT64 Intermediate; local
218 Status = ShellConvertStringToUint64(Temp, &Intermediate, TRUE, FALSE);
219 HandleIdx = (UINTN)Intermediate;
H A DBcfg.c737 UINT64 Intermediate; local
842 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
843 CurrentOperation.Number1 = (UINT16)Intermediate;
860 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
861 CurrentOperation.Number1 = (UINT16)Intermediate;
878 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
879 CurrentOperation.Number1 = (UINT16)Intermediate;
885 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
886 CurrentOperation.HandleIndex = (UINT16)Intermediate;
902 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRU
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DConnect.c251 UINT64 Intermediate; local
333 Status = ShellConvertStringToUint64(Param1, &Intermediate, TRUE, FALSE);
334 Handle1 = ConvertHandleIndexToHandle((UINTN)Intermediate);
344 Status = ShellConvertStringToUint64(Param2, &Intermediate, TRUE, FALSE);
345 Handle2 = ConvertHandleIndexToHandle((UINTN)Intermediate);
H A DDevTree.c171 UINT64 Intermediate; local
232 Status = ShellConvertStringToUint64(Lang, &Intermediate, TRUE, FALSE);
233 if (EFI_ERROR(Status) || ConvertHandleIndexToHandle((UINTN)Intermediate) == NULL) {
237 ShellStatus = DoDevTreeForHandle(ConvertHandleIndexToHandle((UINTN)Intermediate), Language, FlagD, 0, HiiString);
H A DOpenInfo.c158 UINT64 Intermediate; local
195 Status = ShellConvertStringToUint64(Param1, &Intermediate, TRUE, FALSE);
196 if (EFI_ERROR(Status) || Param1 == NULL || ConvertHandleIndexToHandle((UINTN)Intermediate) == NULL){
200 TheHandle = ConvertHandleIndexToHandle((UINTN)Intermediate);
202 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_OPENINFO_HEADER_LINE), gShellDriver1HiiHandle, (UINTN)Intermediate, TheHandle);
H A DDrvDiag.c363 UINT64 Intermediate; local
445 ShellConvertStringToUint64(DriverHandleStr, &Intermediate, TRUE, FALSE);
446 Handle1 = ConvertHandleIndexToHandle((UINTN)Intermediate);
451 ShellConvertStringToUint64(ControllerHandleStr, &Intermediate, TRUE, FALSE);
452 Handle2 = ConvertHandleIndexToHandle((UINTN)Intermediate);
457 ShellConvertStringToUint64(ChildHandleStr, &Intermediate, TRUE, FALSE);
458 Handle3 = ConvertHandleIndexToHandle((UINTN)Intermediate);
H A DDh.c870 UINT64 Intermediate; local
952 Status = ShellConvertStringToUint64(Temp2, &Intermediate, TRUE, FALSE);
953 if (EFI_ERROR(Status) || ConvertHandleIndexToHandle((UINTN)Intermediate) == NULL) {
961 ConvertHandleIndexToHandle((UINTN)Intermediate),
H A DDrvCfg.c1153 UINT64 Intermediate; local
1237 Status = ShellConvertStringToUint64(ForceTypeString, &Intermediate, FALSE, FALSE);
1243 ForceType = (UINT32)Intermediate;
1249 if (HandleIndex1 != NULL && !EFI_ERROR(ShellConvertStringToUint64(HandleIndex1, &Intermediate, TRUE, FALSE))) {
1250 Handle1 = ConvertHandleIndexToHandle((UINTN)Intermediate);
1251 if (Handle1 == NULL || (UINT64)(UINTN)Intermediate != Intermediate) {
1259 if (HandleIndex2 != NULL && !EFI_ERROR(ShellConvertStringToUint64(HandleIndex2, &Intermediate, TRUE, FALSE))) {
1260 Handle2 = ConvertHandleIndexToHandle((UINTN)Intermediate);
1261 if (Handle2 == NULL || (UINT64)(UINTN)Intermediate !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellInstall1CommandsLib/
H A DBcfg.c737 UINT64 Intermediate; local
842 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
843 CurrentOperation.Number1 = (UINT16)Intermediate;
860 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
861 CurrentOperation.Number1 = (UINT16)Intermediate;
878 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
879 CurrentOperation.Number1 = (UINT16)Intermediate;
885 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
886 CurrentOperation.HandleIndex = (UINT16)Intermediate;
902 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRU
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShell.c682 UINT64 Intermediate; local
756 if (TempConst != NULL && !EFI_ERROR(ShellConvertStringToUint64(TempConst, &Intermediate, FALSE, FALSE))) {
757 ShellInfoObject.ShellInitSettings.Delay = (UINTN)Intermediate;

Completed in 63 milliseconds