Home | History | Annotate | Download | only in compiler

Lines Matching defs:Pathname

490  * PARAMETERS:  Dir             - Directory pathname string
515 /* Make sure that the pathname ends with a path separator */
558 * PARAMETERS: PrefixDir - Prefix directory pathname. Can be NULL or
562 * RETURN: Merged pathname string
576 char *Pathname;
585 * If there is no prefix directory or if the file pathname is absolute,
586 * just return the original file pathname
592 Pathname = UtLocalCacheCalloc (strlen (FilePathname) + 1);
593 strcpy (Pathname, FilePathname);
623 * the first element of the file pathname), and build the final merged
624 * pathname.
632 /* Build the final merged pathname */
635 Pathname = UtLocalCacheCalloc (
639 strcpy (Pathname, CommonPath);
640 strcat (Pathname, "/");
642 strcat (Pathname, FilePathname);
647 UtConvertBackslashes (Pathname);
649 DbgPrint (ASL_PARSE_OUTPUT, "Include: Merged Pathname - \"%s\"\n",
650 Pathname);
651 return (Pathname);
659 * PARAMETERS: PrefixDir - Prefix directory pathname. Can be a zero
676 char *Pathname;
680 /* Build the full pathname to the file */
682 Pathname = FlMergePathnames (PrefixDir, Filename);
685 Pathname);
689 IncludeFile = fopen (Pathname, "r");
726 AslPushInputFileStack (IncludeFile, Pathname);
794 * Construct the file pathname from the global directory name.