Lines Matching defs:FilePathname
562 * FilePathname - The include filename from the source ASL.
568 * FilePathname is relative to the PrefixDir.
575 char *FilePathname)
583 "Include: FilePathname - \"%s\"\n",
584 PrefixDir, FilePathname);
591 (*FilePathname == '/') ||
592 (FilePathname[1] == ':'))
594 Pathname = UtLocalCacheCalloc (strlen (FilePathname) + 1);
595 strcpy (Pathname, FilePathname);
609 while (*FilePathname && (!strncmp (FilePathname, "../", 3)))
620 FilePathname += 3; /* Point to next path element */
638 strlen (CommonPath) + strlen (FilePathname) + 2);
644 strcat (Pathname, FilePathname);