Home
last modified time | relevance | path

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

12345678910>>...75

/dports/multimedia/openh264/openh264-2.1.1/test/encoder_binary_comparison/Scripts/
H A Drun_SafeDelete.sh64 local FullPath=""
70 cd ${FullPath}
71 FullPath=`pwd`
78 cd ${FullPath}
79 FullPath=`pwd`
105 local FullPath=""
111 cd ${FullPath}
112 FullPath=`pwd`
119 FullPath=`pwd`
125 cd ${FullPath}
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/openh264/src/test/encoder_binary_comparison/Scripts/
H A Drun_SafeDelete.sh64 local FullPath=""
70 cd ${FullPath}
71 FullPath=`pwd`
78 cd ${FullPath}
79 FullPath=`pwd`
105 local FullPath=""
111 cd ${FullPath}
112 FullPath=`pwd`
119 FullPath=`pwd`
125 cd ${FullPath}
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openh264/src/test/encoder_binary_comparison/Scripts/
H A Drun_SafeDelete.sh64 local FullPath=""
70 cd ${FullPath}
71 FullPath=`pwd`
78 cd ${FullPath}
79 FullPath=`pwd`
105 local FullPath=""
111 cd ${FullPath}
112 FullPath=`pwd`
119 FullPath=`pwd`
125 cd ${FullPath}
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/io/
H A Dfilesysteminfo.cs115 return FullPath;
129 return FullPath;
138 int length = FullPath.Length;
140 char ch = FullPath[i];
142 return FullPath.Substring(i, length - i);
209 Directory.SetCreationTimeUtc(FullPath,value);
211 File.SetCreationTimeUtc(FullPath,value);
262 File.SetLastAccessTimeUtc(FullPath,value);
310 Directory.SetLastWriteTimeUtc(FullPath,value);
312 File.SetLastWriteTimeUtc(FullPath,value);
[all …]
H A Dfileinfo.cs116 FullPath = fullPath; in Init()
152 FullPath = fullPath; in FileInfo()
248 File.SetAccessControl(FullPath, fileSecurity); in SetAccessControl()
264 return new StreamWriter(FullPath,false); in CreateText()
271 return new StreamWriter(FullPath,true); in AppendText()
323 return File.Create(FullPath); in Create()
357 if (!MonoIO.DeleteFile (FullPath, out error)) { in Delete()
360 bool r = Win32Native.DeleteFile(FullPath); in Delete()
376 File.Decrypt(FullPath); in Delete()
384 File.Encrypt(FullPath); in Delete()
[all …]
H A Ddirectoryinfo.cs102 FullPath = fullPath; in Init()
103 DisplayPath = GetDisplayName(OriginalPath, FullPath); in Init()
117 FullPath = fullPath; in DirectoryInfo()
139 return GetDirName(FullPath);
150 return FullPath;
160 return FullPath;
174 string s = FullPath;
176 s = FullPath.Substring(0, FullPath.Length - 1);
234 …if (0!=String.Compare(FullPath,0,fullPath,0, FullPath.Length,StringComparison.OrdinalIgnoreCase)) { in CreateSubdirectoryHelper()
654 fullSourcePath = FullPath; in MoveTo()
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
H A 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()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/src/System/IO/
H A DFileInfo.cs59 return Path.GetDirectoryName(FullPath);
97 return new StreamWriter(FullPath, append: false); in CreateText()
102 return new StreamWriter(FullPath, append: true); in AppendText()
147 return File.Create(FullPath); in Create()
162 FileSystem.DeleteFile(FullPath); in Delete()
198 return new FileStream(FullPath, mode, access, share); in Open()
209 return new FileStream(FullPath, FileMode.OpenOrCreate, in OpenWrite()
242 FileSystem.MoveFile(FullPath, fullDestFileName); in MoveTo()
244 FullPath = fullDestFileName; in MoveTo()
271 File.Decrypt(FullPath); in Decrypt()
[all …]
H A DDirectoryInfo.cs40 FullPath = fullPath; in Init()
50 string s = FullPath;
82 string newDirs = Path.Combine(FullPath, path); in CreateSubdirectoryHelper()
85 … if (0 != string.Compare(FullPath, 0, fullPath, 0, FullPath.Length, PathInternal.StringComparison)) in CreateSubdirectoryHelper()
98 FileSystem.CreateDirectory(FullPath); in Create()
368 if (FullPath.Length > 0 && FullPath[FullPath.Length - 1] == Path.DirectorySeparatorChar) in MoveTo()
369 fullSourcePath = FullPath; in MoveTo()
385 if (!Exists && !FileSystem.FileExists(FullPath)) in MoveTo()
391 FileSystem.MoveDirectory(FullPath, destination); in MoveTo()
404 FileSystem.RemoveDirectory(FullPath, false); in Delete()
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/sysutils/edk2/edk2-edk2-stable202102/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCd.c30 IN OUT CHAR16 **FullPath, in ReplaceDriveWithCwd() argument
42 if (FullPath == NULL || *FullPath == NULL) { in ReplaceDriveWithCwd()
47 ASSERT(Splitter != *FullPath); in ReplaceDriveWithCwd()
60 FreePool(*FullPath); in ReplaceDriveWithCwd()
61 *FullPath = TempBuffer; in ReplaceDriveWithCwd()
78 IN CONST CHAR16 *FullPath, in IsCurrentFileSystem() argument
88 ASSERT(FullPath != NULL); in IsCurrentFileSystem()
129 ASSERT (FullPath != NULL); in ExtractDriveAndPath()
135 *Path = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
141 *Drive = AllocateCopyPool (StrSize (FullPath), FullPath); in ExtractDriveAndPath()
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/VectorCompiler/igcdeps/src/
H A DShaderOverride.cpp66 std::string const FullPath = path(LegalizedShaderName, Ext); in override() local
71 overrideShaderIGA(Platform, GenXBin, GenXBinSize, FullPath, Status); in override()
74 overrideShaderBinary(GenXBin, GenXBinSize, FullPath, Status); in override()
96 IGC::Debug::DumpName FullPath{composeShaderName(ShaderName)}; in path() local
100 FullPath = FullPath.Extension("visaasm"); in path()
103 FullPath = FullPath.Extension("asm"); in path()
106 FullPath = FullPath.Extension("dat"); in path()
109 FullPath = FullPath.Extension("ll"); in path()
115 return FullPath.AbsolutePath(Folder); in path()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.IO/
H A DDirectoryInfo.cs65 FullPath = Path.GetFullPath (path); in DirectoryInfo()
67 OriginalPath = Path.GetFileName (FullPath); in DirectoryInfo()
82 int len = FullPath.Length - 1; in Initialize()
87 current = FullPath; in Initialize()
94 parent = FullPath.Substring (0, last); in Initialize()
134 string root = Path.GetPathRoot (FullPath);
146 Directory.CreateDirectory (FullPath); in Create()
153 path = Path.Combine (FullPath, path); in CreateSubdirectory()
217 if (!Directory.Exists (FullPath)) in GetFileSystemInfos()
251 Directory.Delete (FullPath, recursive); in Delete()
[all …]
/dports/graphics/giflib/giflib-5.2.1/
H A Dgifinto.c79 char **FileName = NULL, FoutTmpName[STRLEN+1], FullPath[STRLEN+1], *p; in main() local
117 memset(FullPath, '\0', sizeof(FullPath)); in main()
118 strncpy(FullPath, *FileName, STRLEN); in main()
119 if ((p = strrchr(FullPath, '/')) != NULL || in main()
120 (p = strrchr(FullPath, '\\')) != NULL) in main()
122 else if ((p = strrchr(FullPath, ':')) != NULL) in main()
125 FullPath[0] = 0; /* No directory or disk specified. */ in main()
127 if ( strlen(FullPath) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main()
128 strncpy(FoutTmpName, FullPath, STRLEN); /* First setup the Path */ in main()
167 if ( (strlen(FullPath) + strlen(DEFAULT_OUT_NAME)) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Tasks.UnitTests/AssemblyDependency/
H A DReferenceTests.cs36 primaryReference1.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentAllParentsHaveMetadata()
42 primaryReference2.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentAllParentsHaveMetadata()
45 dependentReference.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentAllParentsHaveMetadata()
63 primaryReference1.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata()
69 primaryReference2.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata()
72 dependentReference.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata()
89 primaryReference1.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata2()
95 primaryReference2.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata2()
98 dependentReference.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata2()
116 primaryReference1.FullPath = "FullPath"; in CheckForSpecificMetadataOnParentNotAllParentsHaveMetadata3()
[all …]
/dports/devel/cdash/CDash-2-2-3/models/
H A Dcoveragefile2user.php24 var $FullPath; variable in CoverageFile2User
66 if($this->FullPath=='' || $this->ProjectId<1)
80 VALUES (".qnum($this->ProjectId).",'".$this->FullPath."',0)";
109 if($this->FullPath=='' || $this->ProjectId<1)
177 if($this->FullPath=='' || $this->ProjectId<1)
201 if($this->FullPath=='' || $this->ProjectId<1)
326 $this->FullPath = $fullpath;
368 $this->FullPath = $fullpath;
380 if($this->FullPath=='' || $this->ProjectId<1)
409 if($this->FullPath == '')
[all …]
/dports/sysutils/acpica-tools/acpica-unix-20210930/source/components/namespace/
H A Dnsnames.c366 char *FullPath, in AcpiNsBuildNormalizedPath() argument
393 if (!FullPath) in AcpiNsBuildNormalizedPath()
435 Left = FullPath; in AcpiNsBuildNormalizedPath()
436 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
536 char *FullPath = NULL; in AcpiNsBuildPrefixedPathname() local
562 FullPath = ACPI_ALLOCATE_ZEROED ( in AcpiNsBuildPrefixedPathname()
564 if (!FullPath) in AcpiNsBuildPrefixedPathname()
575 strcat (FullPath, PrefixPath); in AcpiNsBuildPrefixedPathname()
578 strcat (FullPath, "."); in AcpiNsBuildPrefixedPathname()
583 strcat (FullPath, ExternalPath); in AcpiNsBuildPrefixedPathname()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build.OM.UnitTests/Construction/
H A DElementLocationPublic_Tests.cs41 project.FullPath = "c:\\x"; in ShouldHaveFilePathLocationEvenIfNotLoadedNorSavedYet()
46 Assert.Equal(project.FullPath, target.Location.File); in ShouldHaveFilePathLocationEvenIfNotLoadedNorSavedYet()
47 Assert.Equal(project.FullPath, target.OutputsLocation.File); in ShouldHaveFilePathLocationEvenIfNotLoadedNorSavedYet()
58 project.FullPath = "c:\\x"; in XmlLocationReflectsRename()
63 Assert.Equal(project.FullPath, target.Location.File); in XmlLocationReflectsRename()
64 Assert.Equal(project.FullPath, target.OutputsLocation.File); in XmlLocationReflectsRename()
66 project.FullPath = "c:\\y"; in XmlLocationReflectsRename()
68 Assert.Equal(project.FullPath, target.Location.File); in XmlLocationReflectsRename()
69 Assert.Equal(project.FullPath, target.OutputsLocation.File); in XmlLocationReflectsRename()
79 project.FullPath = "c:\\x"; in XmlLocationsAreCached()
[all …]

12345678910>>...75