Searched refs:TestPath (Results 1 – 1 of 1) sorted by relevance
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/ |
D | UefiShellLib.c | 1711 CHAR16 *TestPath; in ShellFindFilePath() local 1737 TestPath = AllocateZeroPool(Size); in ShellFindFilePath() 1738 if (TestPath == NULL) { in ShellFindFilePath() 1741 StrCpyS(TestPath, Size/sizeof(CHAR16), Path); in ShellFindFilePath() 1742 StrCatS(TestPath, Size/sizeof(CHAR16), L"\\"); in ShellFindFilePath() 1743 StrCatS(TestPath, Size/sizeof(CHAR16), FileName); in ShellFindFilePath() 1744 Status = ShellOpenFileByName(TestPath, &Handle, EFI_FILE_MODE_READ, 0); in ShellFindFilePath() 1748 RetVal = StrnCatGrow(&RetVal, NULL, TestPath, 0); in ShellFindFilePath() 1750 FreePool(TestPath); in ShellFindFilePath() 1756 FreePool(TestPath); in ShellFindFilePath() [all …]
|