Lines Matching refs:Pathname
601 char *Pathname; in AsProcessOneFile() local
608 Pathname = calloc (MaxPathLength + strlen (Filename) + 2, 1); in AsProcessOneFile()
609 if (!Pathname) in AsProcessOneFile()
621 strcpy (Pathname, SourcePath); in AsProcessOneFile()
622 strcat (Pathname, "/"); in AsProcessOneFile()
625 strcat (Pathname, Filename); in AsProcessOneFile()
626 if (AsGetFile (Pathname, &Gbl_FileBuffer, &Gbl_FileSize)) in AsProcessOneFile()
667 AsConvertFile (ConversionTable, Gbl_FileBuffer, Pathname, FileType); in AsProcessOneFile()
700 free (Pathname); in AsProcessOneFile()
873 char *Pathname, in AsPutFile() argument
892 File = fopen (Pathname, "w+b"); in AsPutFile()
896 printf ("Could not create destination file \"%s\"\n", Pathname); in AsPutFile()
906 printf ("Error writing output file \"%s\"\n", Pathname); in AsPutFile()