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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathSupport.py 23 def LongFilePath(FileName):
24 FileName = os.path.normpath(FileName)
26 if FileName.startswith('\\\\?\\'):
27 return FileName
28 if FileName.startswith('\\\\'):
29 return '\\\\?\\UNC\\' + FileName[2:]
30 if os.path.isabs(FileName):
31 return '\\\\?\\' + FileName
32 return FileName
    [all...]
Identification.py 19 # @var FileName: To store data for Filename
26 self.FileName = ''
42 def GetFileFullPath(self, FileName, FileRelativePath):
49 def GetFileRelativePath(self, FileName, FileFullPath):
EdkIIWorkspace.py 92 ## Convert to a workspace relative filename
94 # Convert a full path filename to a workspace relative filename.
96 # @param FileName: The filename to be Converted
99 # @retval string The relative filename
101 def WorkspaceRelativePath(self, FileName):
102 FileName = os.path.realpath(FileName)
103 if FileName.find(self.WorkspaceDir) != 0:
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/
FdtLoadLib.h 21 @param Filename Name of the file to load from semihosting
30 IN CONST CHAR16* FileName
36 @param Filename Guid of the FDT blob to load from firmware volume
45 IN CONST EFI_GUID *FileName
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
OptRomFileStatement.py 30 self.FileName = None
44 if self.FileName != None:
45 self.FileName = GenFdsGlobalVariable.ReplaceWorkspaceMacro(self.FileName)
47 return self.FileName
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
debug.c 33 IN CHAR8 *FileName,
38 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
  /external/swiftshader/third_party/LLVM/include/llvm/DebugInfo/
DIContext.h 28 const char *FileName;
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
33 DILineInfo(const char *fileName, uint32_t line, uint32_t column)
34 : FileName(fileName), Line(line), Column(column) {}
36 const char *getFileName() const { return FileName; }
42 std::strcmp(FileName, RHS.FileName) == 0;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
HiiPack.h 34 char *FileName
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
FWVolume.h 55 char *FileName
67 char *FileName
Common.h 63 char *FileName;
72 char *FileName
115 INT8 *FileName
120 INT8 *FileName
DscFile.h 28 char *FileName;
39 char *FileName;
62 DSC_FILE_NAME *FileName;
72 char *FileName
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
FileImage.h 56 @param[in] FileName filename to read.
65 IN CONST CHAR16 *FileName,
72 @param[in] FileName The file name.
80 IN CHAR16 *FileName
FileImage.c 74 SHELL_FREE_NON_NULL (HFileImageBackupVar.FileName);
75 HFileImageBackupVar.FileName = CatSPrint(NULL, L"%s", HFileImage.FileName);
76 if (HFileImageBackupVar.FileName == NULL) {
94 SHELL_FREE_NON_NULL (HFileImage.FileName);
95 SHELL_FREE_NON_NULL (HFileImageBackupVar.FileName);
101 Set FileName field in HFileImage
119 SHELL_FREE_NON_NULL (HFileImage.FileName);
123 HFileImage.FileName = AllocateZeroPool (2 * (Size + 1));
124 if (HFileImage.FileName == NULL) {
    [all...]
  /external/clang/test/CodeGen/
types.c 3 struct FileName {
4 struct FileName *next;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrError.cpp 101 INT8 *FileName = NULL;
111 FileName = ++Str;
113 while((Str = strstr (FileName, "\\\\")) != NULL) {
114 FileName = Str + 2;
116 if ((mFileName = new INT8[strlen(FileName)]) != NULL) {
117 for (Index = 0; FileName[Index] != '\"'; Index++) {
118 mFileName[Index] = FileName[Index];
163 OUT INT8 **FileName,
169 if ((FileName == NULL) || (FileLine == NULL)) {
173 *FileName = NULL;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfHeaderObject.py 23 # ## @file xxx.inf FileName
35 self.FileName = ''
43 # @param FileName: File Name
45 def SetFileName(self, FileName):
46 if not (FileName == '' or FileName == None):
47 self.FileName = FileName
55 return self.FileName
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
FileProfile.py 43 # @param FileName The file that to be parsed
45 def __init__(self, FileName):
49 fsock = open(FileName, "rb", 0)
56 raise Warning("Error when opening file %s" % FileName)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
FileProfile.py 46 # @param FileName: The file that to be parsed
48 def __init__(self, FileName):
52 fsock = open(FileName, "rb", 0)
59 raise Warning("Error when opening file %s" % FileName)
  /device/linaro/bootloader/edk2/ArmPkg/Library/SemihostLib/
SemihostLib.c 32 IN CHAR8 *FileName,
45 if (*FileName == '\\') {
46 FileName++;
49 OpenBlock.FileName = FileName;
51 OpenBlock.NameLength = AsciiStrLen(FileName);
217 IN CHAR8 *FileName
224 if (*FileName == '\\') {
225 FileName++;
228 RemoveBlock.FileName = FileName;
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.h 31 StringRef FileName);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/FileInfo/
FileInfo.h 44 CHAR16 FileName[1];
48 // The FileName field of the EFI_FILE_INFO data structure is variable length.
50 // be the size of the data structure without the FileName field. The following macro
51 // computes this size correctly no matter how big the FileName array is declared.
54 #define SIZE_OF_EFI_FILE_INFO EFI_FIELD_OFFSET (EFI_FILE_INFO, FileName)
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
FileInfo.h 27 /// The size of the EFI_FILE_INFO structure, including the Null-terminated FileName string.
57 CHAR16 FileName[1];
61 /// The FileName field of the EFI_FILE_INFO data structure is variable length.
63 /// be the size of the data structure without the FileName field. The following macro
64 /// computes this size correctly no matter how big the FileName array is declared.
67 #define SIZE_OF_EFI_FILE_INFO OFFSET_OF (EFI_FILE_INFO, FileName)
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
56 std::string FileName;
82 // probably belongs to the filename which menas the whole
89 if (Begin.FileName.empty())
95 return ParsedSourceRange{std::move(Begin.FileName),
106 /// Source locations are of the form filename:line:column
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
56 std::string FileName;
82 // probably belongs to the filename which menas the whole
89 if (Begin.FileName.empty())
95 return ParsedSourceRange{std::move(Begin.FileName),
106 /// Source locations are of the form filename:line:column
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
56 std::string FileName;
82 // probably belongs to the filename which menas the whole
89 if (Begin.FileName.empty())
95 return ParsedSourceRange{std::move(Begin.FileName),
106 /// Source locations are of the form filename:line:column
    [all...]

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>