Searched refs:Path (Results 1 - 25 of 102) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/BasePathLib/
H A DBasePathLib.c23 @param[in, out] Path The pointer to the path to modify.
31 IN OUT CHAR16 *Path
39 for ( Walker = Path, LastSlash = NULL
64 @param[in] Path The pointer to the string containing the path.
67 @return Path in all other instances.
72 IN CHAR16 *Path
77 if (Path==NULL) {
84 for (TempString = Path ; TempString != NULL && *TempString != CHAR_NULL ; TempString++) {
93 while ((TempString = StrStr(Path, L"\\..\\")) != NULL) {
96 PathRemoveLastItem(Path);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DPathLib.h24 @param[in, out] Path The pointer to the path to modify.
32 IN OUT CHAR16 *Path
45 @param[in] Path The pointer to the string containing the path.
48 @return Path in all other instances.
53 IN CHAR16 *Path
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DOsPath.c57 FilePath Path name of file to get the parent directory for.
114 IN CHAR8 *Path
130 Path Path name of file to normalize
147 Length = strlen (Path);
157 ((Offset > 0) || (Path[0] != '\\')) &&
158 IsDirSep (Path[Offset]) && IsDirSep (Path[Offset + 1])
160 memmove (&Path[Offset], &Path[Offse
[all...]
H A DOsPath.h55 FilePath Path name of file to get the parent directory for.
66 IN CHAR8 *Path
83 Path Path name of file to normalize
113 OldPath Path name of replace the final segment
H A DParseGuidedSectionTools.c41 CHAR8* Path; member in struct:_GUID_SEC_TOOL_ENTRY
65 InputFile Path name of file to read
152 NewGuidTool->Path = CloneString(Tool->Strings[2]);
204 return CloneString (GuidTool->Path);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Daccess.c28 the Path argument, for accessibility according to the bit pattern contained
34 If Path ends in '/' or '\\', the target must be a directory, otherwise it doesn't matter.
37 @param[in] Path Path or name of the file to be checked.
47 const char *Path,
57 if((Path == NULL) || ((Mode & ~GOOD_MODE) != 0)) {
61 PLength = strlen(Path);
66 retval = stat(Path, &FileStat);
68 /* Path exists. FileStat now holds valid information. */
69 WantDir = isDirSep(Path[PLengt
46 access( const char *Path, int Mode ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Utility/
H A DPath.c2 Device Abstraction: Path manipulation utilities.
25 /** Identify the type of path pointed to by Path.
28 ^\\ Absolute Path
29 ^\. Relative Path
30 ^[^:\\]: Mapping Path
31 .* Relative Path
34 is the Map Name, pointed to by Path, and the part to the right of the ':' is pointed
37 If Path was not a Mapping Path, then NewPath is set to Path
50 ClassifyPath( IN wchar_t * Path, OUT wchar_t ** NewPath, OUT int * const Length ) argument
154 PathInstance( const wchar_t *Path, int Length ) argument
230 PathAlias( wchar_t *Path, DeviceNode **Node ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Table/
H A DTableFile.py41 # @param Path: Path of a File
50 Path VARCHAR,
64 # @param Path: Path 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, Fil
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLibPrivateInternalFiles/Include/Device/
H A DDevice.h81 /** Identify the type of path pointed to by Path.
84 ^\\ Absolute Path
85 ^\. Relative Path
86 ^[^:\\]: Mapping Path
87 .* Relative Path
90 is the Map Name, pointed to by Path, and the part to the right of the ':' is pointed
93 If Path was not a Mapping Path, then NewPath is set to Path.
95 @param[in] Path Pointe
[all...]
H A DConsole.h57 IN CHAR16 *Path,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/
H A DRmPkg.py84 ## Remove Path
89 # @param Path: The Path to be removed
91 def RemovePath(Path):
92 Logger.Info(ST.MSG_REMOVE_FILE % Path)
93 if not os.access(Path, os.W_OK):
94 os.chmod(Path, S_IWUSR)
95 os.remove(Path)
97 os.removedirs(os.path.split(Path)[0])
179 for (Path, Md5Su
[all...]
H A DInstallPkg.py62 # @param Path: Package Path
65 def InstallNewPackage(WorkspaceDir, Path, CustomPath = False):
66 if os.path.isabs(Path):
67 Logger.Info(ST.MSG_RELATIVE_PATH_ONLY%Path)
71 Path = ConvertPath(Path)
72 Path = os.path.normpath(Path)
73 FullPath = os.path.normpath(os.path.join(WorkspaceDir, Path))
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/
H A DGnuGenBootSector.c94 CHAR8 *Path; member in struct:_PATH_INFO
138 if (strncmp(PathInfo->Path, "/dev/", 5) == 0) {
144 if (PathInfo->Path[5] == 'f' && PathInfo->Path[6] == 'd' && PathInfo->Path[8] == '\0') {
146 strcpy (PathInfo->PhysicalPath, PathInfo->Path);
156 f = fopen(PathInfo->Path,"r");
169 printf("Path = %s\n",PathInfo->Path);
170 f = fopen (PathInfo->Path, "
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/UnitTest/
H A DDecParserTest.py58 Path = os.path.join(os.getcwd(), 'test.dec')
59 Path = os.path.normpath(Path)
61 f = open(Path, 'w')
69 print 'Can not create temporary file [%s]!' % Path
73 Ret = TestFunc(Path, TestString)
76 os.remove(Path)
83 def TestOK(Path, TestString):
85 Parser = Dec(Path)
92 def TestError(Path, TestStrin
[all...]
/vbox/src/VBox/HostDrivers/win/
H A Dload.sh18 if test -n "$Path" -a -z "$PATH"; then
19 export PATH="$Path"
H A Dloadall.sh18 if test -n "$Path" -a -z "$PATH"; then
19 export PATH="$Path"
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DDecParserMisc.py85 # @param Path: Path to be stripped
87 def StripRoot(Root, Path):
88 OrigPath = Path
90 Path = os.path.normpath(Path)
93 if Path.startswith(Root):
94 Path = Path[len(Root):]
95 if Path an
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DParserValidate.py229 # @param Path: Absolute path or relative path to be checked
232 def IsValidPath(Path, Root):
233 Path = Path.strip()
234 OrigPath = Path.replace('\\', '/')
236 Path = os.path.normpath(Path).replace('\\', '/')
238 FullPath = os.path.normpath(os.path.join(Root, Path)).replace('\\', '/')
244 # If Path is absolute path.
247 if os.path.isabs(Path)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenBootSector/
H A DGenBootSector.c116 CHAR *Path; member in struct:_PATH_INFO
590 if (IsLetter(PathInfo->Path[0]) && (PathInfo->Path[1] == ':') && (PathInfo->Path[2] == '\0')) {
591 VolumeLetter = PathInfo->Path[0];
615 fprintf (stderr, "ERROR, Invalid disk path - %s", PathInfo->Path);
627 f = fopen (PathInfo->Path, "r");
634 strcpy(PathInfo->PhysicalPath, PathInfo->Path);
682 InputPathInfo.Path = argv[Index + 1];
684 if (InputPathInfo.Path
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Core/
H A DDistributionPackageClass.py94 # {(Guid, Version, Path) : PackageObj}
98 # {(Guid, Version, Name, Path) : ModuleObj}
199 for Guid, Version, Path in self.PackageSurfaceArea:
200 Package = self.PackageSurfaceArea[Guid, Version, Path]
203 MetaDataFileList.append(Path)
212 for Guid, Version, Name, Path in ModuleDict:
213 Module = ModuleDict[Guid, Version, Name, Path]
217 MetaDataFileList.append(Path)
220 for Guid, Version, Name, Path in self.ModuleSurfaceArea:
221 Module = self.ModuleSurfaceArea[Guid, Version, Name, Path]
[all...]
H A DIpiDb.py210 for (Path, Md5Sum) in ModObj.FileList:
213 Path, Md5Sum)
218 for (Path, Md5Sum) in DpObj.FileList:
220 DpObj.Header.GetVersion(), Path, Md5Sum)
265 # @param Path: A Path
266 # @param Path: A Md5Sum
268 def _AddDpFilePathList(self, DpGuid, DpVersion, Path, Md5Sum):
271 (self.DpFileListTable, Path, DpGuid, DpVersion, Md5Sum)
281 # @param Path
[all...]
H A DDependencyRules.py58 def CheckModuleExists(self, Guid, Version, Name, Path, ReturnCode=DEPEX_CHECK_SUCCESS):
62 ModuleList = self.IpiDb.GetModInPackage(Guid, Version, Name, Path)
63 ModuleList.extend(self.IpiDb.GetStandaloneModule(Guid, Version, Name, Path))
263 # @param Path: a module path
266 def CheckModuleDependFromInf(Path, DpPackagePathList):
276 PomAli = InfPomAlignment(Path, WorkSP, Skip=True)
280 Logger.Info(ST.MSG_MODULE_DEPEND_ON % (Path, Item.GetPackageFilePath()))
287 ST.WRN_EDK1_INF_FOUND%Path)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DUefiShellLevel2CommandsLib.c157 If Path is already fully qualified this will return a duplicat otherwise this
163 @param[in] Path The unknown Path Value
172 IN CONST CHAR16* Path
186 if (StrStr(Path, L":") == NULL) {
189 if (*Path == L'\\') {
190 Path++;
193 StrnCatGrow(&PathToReturn, &Size, Path, 0);
211 @param[in] Path The pointer to the path to fix.
218 IN CONST CHAR16 *Path
[all...]
H A DCd.c33 CHAR16 *Path; local
200 Path = StrStr(Drive, L":");
201 ASSERT(Path != NULL);
202 if (*(Path+1) == CHAR_NULL) {
206 *(Path+1) = CHAR_NULL;
207 if (Path == Drive + StrLen(Drive)) {
211 Status = gEfiShellProtocol->SetCurDir(Drive, Path+2);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A DEfiSysCall.h187 @param[in] Path Path to the directory to be deleted.
193 int rmdir (const char *Path);
244 @param[in] Path The name of the file to create.
249 int creat (const char *Path, mode_t Mode);

Completed in 61 milliseconds

12345