Searched defs:Path (Results 1 - 20 of 20) sorted by relevance

/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/ShellPkg/Library/UefiShellCommandLib/
H A DUefiShellCommandLib.h63 CHAR16 *Path; member in struct:__anon12789
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
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);
H A DVol.c22 @param[in] Path String with starting path.
31 IN CONST CHAR16 *Path,
71 Path,
76 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_OPEN_FAIL), gShellLevel2HiiHandle, Path);
136 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_AD), gShellLevel2HiiHandle, Path);
30 HandleVol( IN CONST CHAR16 *Path, IN CONST BOOLEAN Delete, IN CONST CHAR16 *Name OPTIONAL ) argument
H A DLs.c26 @param[in] Path String with starting path.
39 IN CONST CHAR16 *Path,
68 CorrectedPath = StrnCatGrow(&CorrectedPath, NULL, Path, 0);
35 PrintLsOutput( IN CONST BOOLEAN Rec, IN CONST UINT64 Attribs, IN CONST BOOLEAN Sfo, IN CONST CHAR16 *Path, IN CONST BOOLEAN First, IN CONST UINTN Count, IN CONST INT16 TimeZone ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
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/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/SecurityPkg/Library/DxeDeferImageLoadLib/
H A DDxeDeferImageLoadLib.c416 EFI_DEVICE_PATH_PROTOCOL *Path; local
426 Path = (EFI_DEVICE_PATH_PROTOCOL*)((UINT8*)(Access + 1) + OffSet);
427 if (CheckDevicePath (Path, DevicePath)) {
434 OffSet += GetDevicePathSize (Path);
561 // Now OptionPtr points to Device Path.
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Console/
H A DdaConsole.c395 wchar_t *Path, // Not used for console devices
391 da_ConOpen( DeviceNode *DevNode, struct __filedes *filp, int DevInstance, wchar_t *Path, wchar_t *MPath ) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c451 @param[in] Path File-system path to the file or directory.
452 @param[in] MPath Device or Map name on which Path resides.
463 wchar_t *Path,
499 wcsncat(WPath, Path, (PATH_MAX - NAME_MAX)); /* Append the path */
502 WPath = Path;
459 da_ShellOpen( DeviceNode *DevNode, struct __filedes *filp, int DevInstance, wchar_t *Path, wchar_t *MPath ) argument
/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/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecBeOS.cpp53 #include <Path.h>
74 ioPath = p.Path();
193 const char* canonicalPath = p.Path();
308 char* Path = nsCRT::strdup(mPath); local
310 int rv = truncate(Path, offset) ;
312 nsCRT::free(Path) ;
H A DnsFileSpecUnix.cpp379 char* Path = nsCRT::strdup(mPath); local
381 int rv = truncate(Path, offset) ;
383 nsCRT::free(Path) ;
/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/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/
H A DUserIdentifyManager.c424 EFI_DEVICE_PATH_PROTOCOL *Path; local
441 Path = (EFI_DEVICE_PATH_PROTOCOL *) (PolicyInfo + TotalLen + sizeof (Access) + OffSet);
442 PathSize = GetDevicePathSize (Path);
2820 // Install Device Path Protocol and Config Access protocol to driver handle.
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellProtocol.c397 file system mappings, the one that most closely matches Path will be used.
399 @param Path The pointer to the device path
408 IN CONST EFI_DEVICE_PATH_PROTOCOL *Path
425 DevicePathCopy = (EFI_DEVICE_PATH_PROTOCOL*)Path;
491 @param[in] Path The pointer to the path.
501 IN CONST CHAR16 *Path
515 if (Path == NULL) {
522 if (StrStr(Path, L":") == NULL) {
528 Size += StrSize(Path);
534 if (*Path
2292 EfiShellOpenFileList( IN CHAR16 *Path, IN UINT64 OpenMode, IN OUT EFI_SHELL_FILE_INFO **FileList ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c1594 CONST CHAR16 *Path; local
1620 Path = ShellGetEnvironmentVariable(L"cwd");
1621 if (Path != NULL) {
1622 Size = StrSize(Path);
1628 StrCpy(TestPath, Path);
1644 Path = ShellGetEnvironmentVariable(L"path");
1645 if (Path != NULL) {
1646 Size = StrSize(Path)+sizeof(CHAR16);
1652 Walker = (CHAR16*)Path;
2869 @param[in] DirName Path t
[all...]
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp567 struct TESTSHFLSTRING Path; local
571 fillTestShflString(&Path, pcszFilename);
575 aParms[1].setPointer(&Path, RT_UOFFSETOF(SHFLSTRING, String)
576 + Path.string.u16Size);
650 struct TESTSHFLSTRING Path; local
659 fillTestShflString(&Path, pcszPath);
660 aParms[4].setPointer(&Path, RT_UOFFSETOF(SHFLSTRING, String)
661 + Path.string.u16Size);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinspool.h817 LPSTR Path; member in struct:_ADDJOB_INFO_1A
822 LPWSTR Path; member in struct:_ADDJOB_INFO_1W
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinspool.h815 LPSTR Path; member in struct:_ADDJOB_INFO_1A
820 LPWSTR Path; member in struct:_ADDJOB_INFO_1W

Completed in 85 milliseconds