Home
last modified time | relevance | path

Searched refs:FullPath (Results 1 – 25 of 33) sorted by relevance

12

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
DFindFiles.c80 char FullPath[MAX_PATH]; in FindFiles() local
85 strcpy (FullPath, RootDirectory); in FindFiles()
90 if (_getcwd (FullPath, sizeof (FullPath)) == NULL) { in FindFiles()
97 if (FullPath[strlen (FullPath) - 1] != '\\') { in FindFiles()
98 strcat (FullPath, "\\"); in FindFiles()
101 strcat (FullPath, RootDirectory); in FindFiles()
104 if (FullPath[strlen (FullPath) - 1] == '\\') { in FindFiles()
105 FullPath[strlen (FullPath) - 1] = 0; in FindFiles()
110 return ProcessDirectory (FullPath, FileMask, Callback); in FindFiles()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
DCd.c35 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
47 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
51 Splitter = StrStr (*FullPath, L":"); in ReplaceDriveWithCwd()
52 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
65 FreePool(*FullPath); in ReplaceDriveWithCwd()
66 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
83 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
93 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
95 Splitter1 = StrStr (FullPath, L":"); in IsCurrentFileSystem()
102 if ((UINTN) (Splitter1 - FullPath) != (UINTN) (Splitter2 - Cwd)) { in IsCurrentFileSystem()
[all …]
DLs.c551 CHAR16 *FullPath; in ShellCommandRunLs() local
557 FullPath = NULL; in ShellCommandRunLs()
665 ASSERT(FullPath == NULL); in ShellCommandRunLs()
667 StrnCatGrow(&FullPath, NULL, CurDir, 0); in ShellCommandRunLs()
668 Size = FullPath != NULL? StrSize(FullPath) : 0; in ShellCommandRunLs()
669 StrnCatGrow(&FullPath, &Size, L"\\", 0); in ShellCommandRunLs()
681 ASSERT((FullPath == NULL && Size == 0) || (FullPath != NULL)); in ShellCommandRunLs()
683 StrnCatGrow(&FullPath, &Size, gEfiShellProtocol->GetCurDir(NULL), 0); in ShellCommandRunLs()
684 if (FullPath == NULL) { in ShellCommandRunLs()
688 Size = FullPath != NULL? StrSize(FullPath) : 0; in ShellCommandRunLs()
[all …]
DVol.c214 CHAR16 *FullPath; in ShellCommandRunVol() local
224 FullPath = NULL; in ShellCommandRunVol()
281 StrnCatGrow(&FullPath, &Length, PathName, 0); in ShellCommandRunVol()
282 StrnCatGrow(&FullPath, &Length, L":\\", 0); in ShellCommandRunVol()
296 FullPath, in ShellCommandRunVol()
305 SHELL_FREE_NON_NULL(FullPath); in ShellCommandRunVol()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
DInfParser.py113 self.FullPath = Filename
117 GlobalData.gINF_MODULE_NAME = self.FullPath
324 File=self.FullPath,
398 File=self.FullPath)
403 File=self.FullPath)
411 File=self.FullPath,
428 File=self.FullPath,
454 File=self.FullPath,
468 File=self.FullPath, Line=LineNo,
480 self.FullPath,
[all …]
DInfParserMisc.py204 self.FullPath = ''
DInfDefineSectionParser.py180 InfDefMemberObj.CurrentLine.SetFileName(self.FullPath)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
DTableFile.py69 def Insert(self, Name, ExtName, Path, FullPath, Model, TimeStamp): argument
71 (Name, ExtName, Path, FullPath) = ConvertToSqlString((Name, ExtName, Path, FullPath))
73 … % (self.Table, self.ID, Name, ExtName, Path, FullPath, Model, TimeStamp)
91 return self.Insert(File.Name, File.ExtName, File.Path, File.FullPath, File.Model, TimeStamp)
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
DBmBoot.c147 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath, in BmGetFileBufferByFvFilePath() argument
170 *FullPath = DuplicateDevicePath (FilePath); in BmGetFileBufferByFvFilePath()
193 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize); in BmGetFileBufferByFvFilePath()
218 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize); in BmGetFileBufferByFvFilePath()
569 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath, in BmExpandUsbDevicePath() argument
589 FileBuffer = EfiBootManagerGetLoadOptionBuffer (FullDevicePath, FullPath, FileSize); in BmExpandUsbDevicePath()
615 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath, in BmExpandFileDevicePath() argument
653 *FullPath = FullDevicePath; in BmExpandFileDevicePath()
666 *FullPath = NULL; in BmExpandFileDevicePath()
685 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath, in BmExpandUriDevicePath() argument
[all …]
DInternalBm.h435 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DDistributionPackageClass.py209 FullPath = Package.GetFullPath()
213 SearchPath = os.path.normpath(os.path.join(os.path.dirname(FullPath), IncludePath))
230 FullPath = Module.GetFullPath()
237 OriPath = os.path.normpath(os.path.dirname(FullPath))
244 … NonMetaDataFileList = GetNonMetaDataFiles(os.path.dirname(FullPath), SkipList, False, PkgRelPath)
251 FullPath = Module.GetFullPath()
257 OriPath = os.path.normpath(os.path.dirname(FullPath))
261 … NonMetaDataFileList = GetNonMetaDataFiles(os.path.dirname(FullPath), SkipList, False, ModulePath)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaDataTable.py187 def Insert(self, Name, ExtName, Path, FullPath, Model, TimeStamp): argument
188 (Name, ExtName, Path, FullPath) = ConvertToSqlString((Name, ExtName, Path, FullPath))
194 FullPath,
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
DEdbCmdSymbol.c28 IN CHAR16 *FullPath in GetFileNameFromFullPath() argument
34 FileName = FullPath; in GetFileNameFromFullPath()
35 TempFileName = StrGetNewTokenLine (FullPath, L"\\"); in GetFileNameFromFullPath()
57 IN CHAR16 *FullPath in GetDirNameFromFullPath() argument
62 FileName = GetFileNameFromFullPath (FullPath); in GetDirNameFromFullPath()
63 if (FileName != FullPath) { in GetDirNameFromFullPath()
65 return FullPath; in GetDirNameFromFullPath()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/CommonDataClass/
DDataClass.py354 …def __init__(self, ID = -1, Name = '', ExtName = '', Path = '', FullPath = '', Model = MODEL_UNKNO… argument
360 self.FullPath = FullPath
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
DInfPomAlignment.py73 self.FullPath = ''
101 self.FullPath = self.Parser.FullPath
145 self.SetFullPath(self.FullPath)
156 CombinePath = GetRelativePath(self.FullPath, self.WorkSpace)
191 … ST.ERR_INF_PARSER_DEFINE_SECTION_MUST_ITEM_NOT_EXIST % ("MODULE_TYPE"), File=self.FullPath)
204 File=self.FullPath,
210 … ST.ERR_INF_PARSER_DEFINE_SECTION_MUST_ITEM_NOT_EXIST % ("BASE_NAME"), File=self.FullPath)
219 … ST.ERR_INF_PARSER_DEFINE_SECTION_MUST_ITEM_NOT_EXIST % ("INF_VERSION"), File=self.FullPath)
224 … ST.ERR_INF_PARSER_DEFINE_SECTION_MUST_ITEM_NOT_EXIST % ("FILE_GUID"), File=self.FullPath)
248 …gger.Error("Parser", PARSER_ERROR, ST.ERR_INF_PARSER_NOT_SUPPORT_EDKI_INF, ExtraData=self.FullPath,
[all …]
DDecPomAlignment.py730 if self.FullPath:
751 if self.FullPath:
799 File=self.FullPath)
873 (PcdGuidName, DefaultValue), Message=Msg, File=self.FullPath)
876 Message=Msg, File=self.FullPath)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
DEot.py271 FullPath = os.path.normpath(os.path.join(Root, File))
272 if FullPath not in mSourceFileList and File[-2:].upper() == '.H':
273 mSourceFileList.append(FullPath)
274 EotGlobalData.gOP_SOURCE_FILES.write('%s\n' % FullPath)
275 if FullPath not in mDecFileList and File.upper().find('.DEC') > -1:
276 mDecFileList.append(FullPath)
DDatabase.py176 …FileID = self.TblFile.Insert(File.Name, File.ExtName, File.Path, File.FullPath, Model = File.Model…
197 EdkLogger.verbose("Insert information from file %s ... DONE!" % File.FullPath)
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
DPath.c273 OUT wchar_t **FullPath, in ParsePath() argument
354 *FullPath = WPath; in ParsePath()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
DInstallPkg.py74 FullPath = os.path.normpath(os.path.join(WorkspaceDir, Path))
75 if os.path.exists(FullPath):
76 Logger.Info(ST.ERR_DIR_ALREADY_EXIST%FullPath)
98 FullPath = os.path.normpath(os.path.join(WorkspaceDir, Path))
99 if os.path.exists(FullPath) and FullPath not in PathList:
101 elif Path == FullPath:
102 Logger.Info(ST.MSG_RELATIVE_PATH_ONLY%FullPath)
120 FullPath = os.path.normpath(os.path.join(WorkspaceDir, File))
121 if os.path.exists(FullPath):
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
DDevice.h130 ParsePath( const char *path, wchar_t **FullPath, DeviceNode **DevNode, int *Which, wchar_t **MapPat…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DMisc.py188 def GetFiles(Root, SkipList=None, FullPath=True): argument
206 if not FullPath:
220 def GetNonMetaDataFiles(Root, SkipList, FullPath, PrefixPath): argument
221 FileList = GetFiles(Root, SkipList, FullPath)
735 FullPath = os.path.normpath(os.path.join(Root, Path))
742 return FullPath[FullPath.find(Root) + len(Root) + 1:]
DParserValidate.py240 FullPath = mws.join(Root, Path)
242 if not os.path.exists(FullPath):
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/
DCommonObject.py394 self.FullPath = ''
419 def SetFullPath(self, FullPath): argument
420 self.FullPath = FullPath
423 return self.FullPath
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DDatabase.py173 …FileID = self.TblFile.Insert(File.Name, File.ExtName, File.Path, File.FullPath, Model = File.Model…
212 EdkLogger.verbose("Insert information from file %s ... DONE!" % File.FullPath)

12