Lines Matching refs:Pathname
709 char *Pathname;
714 /* Allocate a file pathname buffer for both source and target */
716 Pathname = calloc (MaxPathLength + strlen (Filename) + 2, 1);
717 if (!Pathname)
725 /* Generate the source pathname and read the file */
729 strcpy (Pathname, SourcePath);
730 strcat (Pathname, "/");
733 strcat (Pathname, Filename);
734 if (AsGetFile (Pathname, &Gbl_FileBuffer, &Gbl_FileSize))
775 AsConvertFile (ConversionTable, Gbl_FileBuffer, Pathname, FileType);
781 /* Generate the target pathname and write the file */
808 free (Pathname);
818 * construct the full pathname for the source and target paths.
844 printf ("Could not allocate buffer for directory source pathname\n");
851 printf ("Could not allocate buffer for directory target pathname\n");
981 char *Pathname,
1000 File = fopen (Pathname, "w+b");
1004 printf ("Could not create destination file \"%s\"\n", Pathname);
1014 printf ("Error writing output file \"%s\"\n", Pathname);