HomeSort by relevance Sort by last modified time
    Searched refs:FullPath (Results 1 - 25 of 46) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
FindFiles.c 80 char FullPath[MAX_PATH];
85 strcpy (FullPath, RootDirectory);
90 if (_getcwd (FullPath, sizeof (FullPath)) == NULL) {
97 if (FullPath[strlen (FullPath) - 1] != '\\') {
98 strcat (FullPath, "\\");
101 strcat (FullPath, RootDirectory);
104 if (FullPath[strlen (FullPath) - 1] == '\\') {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
Linker.cpp 122 sys::Path FullPath(Directory);
125 FullPath.appendComponent(("lib" + Name).str());
126 FullPath.appendSuffix("a");
127 if (FullPath.isArchive())
128 return FullPath;
131 FullPath.eraseSuffix();
132 FullPath.appendSuffix("bca");
133 if (FullPath.isArchive())
134 return FullPath;
137 FullPath.eraseSuffix()
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Cd.c 22 If FullPath begining with ':' is invalid path, then ASSERT.
23 If FullPath not include dirve identifier , then do nothing.
24 If FullPath likes "fs0:\xx" or "fs0:/xx" , then do nothing.
25 If FullPath likes "fs0:xxx" or "fs0:", the drive replaced by CWD.
27 @param[in, out] FullPath The pointer to the string containing the path.
35 IN OUT CHAR16 **FullPath,
47 if (FullPath == NULL || *FullPath == NULL) {
51 Splitter = StrStr (*FullPath, L":");
52 ASSERT(Splitter != *FullPath);
    [all...]
Ls.c 551 CHAR16 *FullPath;
557 FullPath = NULL;
665 ASSERT(FullPath == NULL);
667 StrnCatGrow(&FullPath, NULL, CurDir, 0);
668 Size = FullPath != NULL? StrSize(FullPath) : 0;
669 StrnCatGrow(&FullPath, &Size, L"\\", 0);
681 ASSERT((FullPath == NULL && Size == 0) || (FullPath != NULL));
683 StrnCatGrow(&FullPath, &Size, gEfiShellProtocol->GetCurDir(NULL), 0);
    [all...]
Vol.c 214 CHAR16 *FullPath;
224 FullPath = NULL;
281 StrnCatGrow(&FullPath, &Length, PathName, 0);
282 StrnCatGrow(&FullPath, &Length, L":\\", 0);
296 FullPath,
305 SHELL_FREE_NON_NULL(FullPath);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
TableFile.py 42 # @param FullPath: FullPath of a File
51 FullPath VARCHAR NOT NULL,
65 # @param FullPath: FullPath of a File
69 def Insert(self, Name, ExtName, Path, FullPath, Model, TimeStamp):
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)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfParser.py 113 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...]
InfDefineSectionParser.py 180 InfDefMemberObj.CurrentLine.SetFileName(self.FullPath)
InfParserMisc.py 204 self.FullPath = ''
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
SourceCoverageView.cpp 36 SmallString<256> FullPath;
39 FullPath.append(Opts.ShowOutputDirectory);
42 sys::path::append(FullPath, getCoverageDir());
46 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
49 sys::path::append(FullPath, PathFilename);
50 sys::path::native(FullPath);
52 return FullPath.str();
61 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
63 auto ParentDir = sys::path::parent_path(FullPath);
69 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write)
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 35 SmallString<256> FullPath;
38 FullPath.append(Opts.ShowOutputDirectory);
41 sys::path::append(FullPath, getCoverageDir());
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
48 sys::path::append(FullPath, PathFilename);
50 return FullPath.str();
59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
61 auto ParentDir = sys::path::parent_path(FullPath);
66 raw_ostream *RawStream = new raw_fd_ostream(FullPath, E, sys::fs::F_RW);
  /external/swiftshader/third_party/LLVM/lib/Support/
Path.cpp 199 sys::Path FullPath(LibPaths[i]);
200 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
201 if (FullPath.isDynamicLibrary())
202 return FullPath;
203 FullPath.eraseSuffix();
204 FullPath.appendSuffix("a");
205 if (FullPath.isArchive())
206 return FullPath;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DistributionPackageClass.py 209 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/MdeModulePkg/Library/UefiBootManagerLib/
BmBoot.c 139 @param FullPath Receive the updated FV Device Path pointint to the file.
147 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
170 *FullPath = DuplicateDevicePath (FilePath);
193 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
218 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
558 @param FullPath Return the full device path of the load option after
569 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
589 FileBuffer = EfiBootManagerGetLoadOptionBuffer (FullDevicePath, FullPath, FileSize);
605 @param FullPath Return the full device path of the load option after
615 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaDataTable.py 169 FullPath VARCHAR NOT NULL,
183 # @param FullPath: FullPath of a File
187 def Insert(self, Name, ExtName, Path, FullPath, Model, TimeStamp):
188 (Name, ExtName, Path, FullPath) = ConvertToSqlString((Name, ExtName, Path, FullPath))
194 FullPath,
225 QueryScript = "select ID from %s where FullPath = '%s'" % (self.Table, str(File))
272 RecordList = self.Exec("select FullPath from %s where Model=%s" % (self.Table, FileType))
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
Device.h 121 @param FullPath
130 ParsePath( const char *path, wchar_t **FullPath, DeviceNode **DevNode, int *Which, wchar_t **MapPath);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/CommonDataClass/
DataClass.py 335 # @param FullPath: FullPath of a File
346 # @var FullPath: FullPath of a File
354 def __init__(self, ID = -1, Name = '', ExtName = '', Path = '', FullPath = '', Model = MODEL_UNKNOWN, TimeStamp = '', \
360 self.FullPath = FullPath
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbCmdSymbol.c 21 @param FullPath - full file path
28 IN CHAR16 *FullPath
34 FileName = FullPath;
35 TempFileName = StrGetNewTokenLine (FullPath, L"\\");
50 @param FullPath - full file path
57 IN CHAR16 *FullPath
62 FileName = GetFileNameFromFullPath (FullPath);
63 if (FileName != FullPath) {
65 return FullPath;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
InfPomAlignment.py 73 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)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Eot.py 271 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)
Database.py 176 FileID = self.TblFile.Insert(File.Name, File.ExtName, File.Path, File.FullPath, Model = File.Model, TimeStamp = File.TimeStamp)
197 EdkLogger.verbose("Insert information from file %s ... DONE!" % File.FullPath)
  /external/libchrome/base/files/
scoped_temp_dir_unittest.cc 15 TEST(ScopedTempDir, FullPath) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
Path.c 251 It is the caller's responsibility to free() FullPath and MapPath when they
255 @param[out] FullPath
273 OUT wchar_t **FullPath,
354 *FullPath = WPath;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
InstallPkg.py 74 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):
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 188 def GetFiles(Root, SkipList=None, FullPath=True):
206 if not FullPath:
216 # @param FullPath: True if the returned file should be full path
220 def GetNonMetaDataFiles(Root, SkipList, FullPath, PrefixPath):
221 FileList = GetFiles(Root, SkipList, FullPath)
607 # @param Fullpath: a string of fullpath
610 def GetRelativePath(Fullpath, Workspace):
614 RelativePath = Fullpath[Fullpath.upper().find(Workspace.upper())+len(Workspace):]
    [all...]

Completed in 609 milliseconds

1 2