Searched refs:FullName (Results 1 - 25 of 26) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DCheck.py98 # FullName = os.path.join(Dirpath, F)
99 # c.CheckFuncLayoutReturnType(FullName)
100 for FullName in EccGlobalData.gCFileList + EccGlobalData.gHFileList:
101 c.CheckFuncLayoutReturnType(FullName)
111 # FullName = os.path.join(Dirpath, F)
112 # c.CheckFuncLayoutModifier(FullName)
113 for FullName in EccGlobalData.gCFileList + EccGlobalData.gHFileList:
114 c.CheckFuncLayoutModifier(FullName)
125 # FullName = os.path.join(Dirpath, F)
126 # c.CheckFuncLayoutName(FullName)
[all...]
H A Dc.py518 FullName = os.path.normpath(os.path.join(dirpath, f))
521 EdkLogger.info("Parsing " + FullName)
523 collector = CodeFragmentCollector.CodeFragmentCollector(FullName)
527 ParseErrorFileList.append(FullName)
532 DirName = os.path.dirname(FullName)
534 ModifiedTime = os.path.getmtime(FullName)
535 FileObj = DataClass.FileClass(-1, BaseName, Ext, DirName, FullName, model, ModifiedTime, GetFunctionList(), GetIdentifierList(), [])
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DMv.c22 FullName, that the Current working Directory is not being moved, and that
27 @param FullName [in] The name of the file to move.
38 IN CONST CHAR16 *FullName,
49 if (Cwd != NULL && StrCmp(FullName, Cwd) == 0) {
67 ASSERT(FullName != NULL);
68 if (StrStr(FullName, TestWalker) != 0) {
69 TempLen = StrLen(FullName);
70 if (StrStr(FullName, TestWalker) != FullName // not the first items... (could below it)
72 && StrStr(FullName
37 IsValidMove( IN CONST CHAR16 *FullName, IN CONST CHAR16 *Cwd, IN CONST CHAR16 *DestPath, IN CONST UINT64 Attribute ) argument
[all...]
H A DRm.c86 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_RM_LOG_DETELE_RO), gShellLevel2HiiHandle, Node->FullName);
93 Status = ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN(STR_RM_LOG_DELETE_CONF), gShellLevel2HiiHandle, Node->FullName);
123 Node2->Status = gEfiShellProtocol->OpenFileByName (Node2->FullName, &Node2->Handle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE);
142 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_RM_LOG_DELETE), gShellLevel2HiiHandle, Node->FullName);
180 if (Node == NULL || Node->FullName == NULL) {
184 TempLocation = StrStr(Node->FullName, L":");
204 SearchString = StrnCatGrow(&SearchString, &Size, Node->FullName, 0);
321 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_RM_LOG_DELETE_ERR3), gShellLevel2HiiHandle, Node->FullName);
H A DCp.c284 NewSize += StrSize(Node->FullName);
293 if (!RecursiveMode && !EFI_ERROR(ShellIsDirectory(Node->FullName))) {
301 if (!EFI_ERROR(ShellIsDirectory(Node->FullName)) && EFI_ERROR(ShellIsDirectory(DestDir))) {
332 ASSERT(Node->FullName != NULL);
409 if ( !EFI_ERROR(ShellIsDirectory(Node->FullName))
411 && StrniCmp(Node->FullName, DestPath, StrLen(DestPath)) == NULL
417 if (StringNoCaseCompare(&Node->FullName, &DestPath) == 0) {
423 if ((TempLocation = StrniCmp(Node->FullName, DestPath, StrLen(Node->FullName))) == 0
424 && (DestPath[StrLen(Node->FullName)]
[all...]
H A DLs.c97 DirectoryName = GetFullyQualifiedPath(((EFI_SHELL_FILE_INFO *)GetFirstNode(&ListHead->Link))->FullName);
211 if (LongestPath < StrSize(Node->FullName)) {
212 LongestPath = StrSize(Node->FullName);
253 Node->FullName,
367 StrCpy(DirectoryName, Node->FullName);
H A DLoad.c251 LoadDriver(Node->FullName, (BOOLEAN)(ShellCommandLineGetFlag(Package, L"-nc")==FALSE));
253 Status = LoadDriver(Node->FullName, (BOOLEAN)(ShellCommandLineGetFlag(Package, L"-nc")==FALSE));
H A DMap.c57 @param[out] FullName Optional pointer to an allocated buffer containing
69 OUT CHAR16 **FullName OPTIONAL,
106 if (FullName != NULL) {
107 *FullName = TempList;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A Dc.py347 for FullName in FileNameList:
348 if os.path.splitext(FullName)[1] in ('.h', '.c'):
349 if FullName.lower() in ParsedFiles:
351 ParsedFiles[FullName.lower()] = 1
352 EdkLogger.info("Parsing " + FullName)
353 model = FullName.endswith('c') and DataClass.MODEL_FILE_C or DataClass.MODEL_FILE_H
354 collector = CodeFragmentCollector.CodeFragmentCollector(FullName)
358 ParseErrorFileList.append(FullName)
359 BaseName = os.path.basename(FullName)
360 DirName = os.path.dirname(FullName)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DTouch.c126 Status = gEfiShellProtocol->OpenFileByName (Walker->FullName, &Walker->Handle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE);
128 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NO_OPEN), gShellLevel3HiiHandle, Walker->FullName, Status);
131 Status = DoTouchByHandle(Walker->FullName, FS, Walker->Handle, TRUE);
258 Status = DoTouchByHandle(Node->FullName, NULL, Node->Handle, ShellCommandLineGetFlag(Package, L"-r"));
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DLoadPciRom.c138 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_OPEN_FAIL), gShellDebug1HiiHandle, Node->FullName);
143 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_NOT_DIR), gShellDebug1HiiHandle, Node->FullName);
152 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_READ_FAIL), gShellDebug1HiiHandle, Node->FullName);
158 Node->FullName
161 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_LOAD_PCI_ROM_RES), gShellDebug1HiiHandle, Node->FullName, Status);
H A DBcfg.c291 DevicePath = gEfiShellProtocol->GetDevicePathFromFilePath(Arg->FullName);
293 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_BCFG_FILE_DP), gShellDebug1HiiHandle, Arg->FullName);
314 for(StringWalker=Arg->FullName; *StringWalker != CHAR_NULL && *StringWalker != ':'; StringWalker++);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellProtocol.c1638 if (FileListNode->FullName != NULL) {
1639 FreePool((VOID*)FileListNode->FullName);
1712 (CHAR16*)ShellFileListItem->FullName,
1713 (CHAR16*)ShellFileListItem2->FullName) == 0
1744 NewNode->FullName = AllocateZeroPool(StrSize(Node->FullName));
1748 if ( NewNode->FullName == NULL
1759 StrCpy((CHAR16*)NewNode->FullName, Node->FullName);
1772 @param[in] FullName FullNam
1782 CreateAndPopulateShellFileInfo( IN CONST CHAR16 *BasePath, IN CONST EFI_STATUS Status, IN CONST CHAR16 *FullName, IN CONST CHAR16 *FileName, IN CONST SHELL_FILE_HANDLE Handle, IN CONST EFI_FILE_INFO *Info ) argument
[all...]
H A DShellProtocol.h591 @param[in] FullName FullName member initial value.
602 IN CONST CHAR16 *FullName,
H A DFileHandleWrappers.c551 ) && ((ShellIsDirectory(TempPos->FullName) != EFI_SUCCESS)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Protocol/
H A DEfiShell.h31 CONST CHAR16 *FullName; ///< Fully qualified filename. member in struct:__anon12769
H A DEfiShellEnvironment2.h88 CHAR16 *FullName; ///< Path and file name for this file. member in struct:__anon12770
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c1308 CHAR16 *FullName; member in struct:__anon12892
1363 ASSERT(OldInfo->FullName != NULL);
1388 NewInfo->FullName = AllocateZeroPool(StrSize(OldInfo->FullName));
1395 if (NULL == NewInfo->FullName || NewInfo->FileName == NULL || NewInfo->Info == NULL) {
1404 StrCpy(NewInfo->FullName, OldInfo->FullName);
1565 FreePool(((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->FullName);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Diads.idl535 HRESULT FullName([out, retval] BSTR* retval);
538 HRESULT FullName([in] BSTR retval);
H A Dexdisp.idl243 [id(400), propget] HRESULT FullName([out, retval] BSTR* FullName);
H A Dwincrypt.h506 CERT_ALT_NAME_INFO FullName; member in union:_CRL_DIST_POINT_NAME::__anon13925
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellInstall1CommandsLib/
H A DBcfg.c291 DevicePath = gEfiShellProtocol->GetDevicePathFromFilePath(Arg->FullName);
293 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_BCFG_FILE_DP), gShellInstall1HiiHandle, Arg->FullName);
314 for(StringWalker=Arg->FullName; *StringWalker != CHAR_NULL && *StringWalker != ':'; StringWalker++);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DFor.c369 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, Node->FullName, 0);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dexdisp.idl237 [id(400), propget] HRESULT FullName([out, retval] BSTR* FullName);
/vbox/
H A Dconfigure.vbs628 LogPrint "# Full Name: " & Wscript.FullName
2167 If UCase(Right(Wscript.FullName, 11)) = "WSCRIPT.EXE" Then

Completed in 161 milliseconds

12