Home | History | Annotate | Download | only in GnuGenBootSector

Lines Matching refs:Path

88   CHAR8            *Path;

109 "Inavlid path"
119 Get path information, including physical path for Linux platform.
123 @return whether path is valid.
132 if (strncmp(PathInfo->Path, "/dev/", 5) == 0) {
134 // Process disk path here.
138 if (PathInfo->Path[5] == 'f' && PathInfo->Path[6] == 'd' && PathInfo->Path[8] == '\0') {
140 strcpy (PathInfo->PhysicalPath, PathInfo->Path);
150 f = fopen (LongFilePath (PathInfo->Path),"r");
159 // Process file path here.
162 // If path is file path, check whether file is valid.
163 printf("Path = %s\n",PathInfo->Path);
164 f = fopen (LongFilePath (PathInfo->Path), "r");
172 strcpy(PathInfo->PhysicalPath, PathInfo->Path);
188 @param InputInfo PATH_INFO instance for input path
189 @param OutputInfo PATH_INFO instance for output path
340 InputPathInfo.Path = argv[Index + 1];
342 if (InputPathInfo.Path == NULL) {
346 if (InputPathInfo.Path[0] == '-') {
355 OutputPathInfo.Path = argv[Index + 1];
357 if (OutputPathInfo.Path == NULL) {
361 if (OutputPathInfo.Path[0] == '-') {
410 if (InputPathInfo.Path == NULL) {
415 if (OutputPathInfo.Path == NULL) {