Home | History | Annotate | Download | only in toolutil

Lines Matching defs:pathname

85     char *pathname, *basename;
269 printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s");
273 file=T_FileStream_open(files[i].pathname, "rb");
275 fprintf(stderr, "gencmn: unable to open listed file %s\n", files[i].pathname);
290 fprintf(stderr, "gencmn: unable to read %s properly (got %ld/%ld byte%s)\n", files[i].pathname, (long)nread, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s");
351 sprintf(buffer, "extern const char\n %s%s[]", symPrefix?symPrefix:"", files[0].pathname);
354 sprintf(buffer, ",\n %s%s[]", symPrefix?symPrefix:"", files[i].pathname);
391 sprintf(buffer, " { \"%s\", %s%s }", files[0].basename, symPrefix?symPrefix:"", files[0].pathname);
394 sprintf(buffer, ",\n { \"%s\", %s%s }", files[i].basename, symPrefix?symPrefix:"", files[i].pathname);
428 /* store the pathname */
440 files[fileCount].pathname=fullPath;
479 /* turn the basename into an entry point name and store in the pathname field */
480 t=files[fileCount].pathname=allocString(length);