Home | History | Annotate | Download | only in toolutil

Lines Matching defs:pathname

83     char *pathname, *basename;
246 printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s");
250 file=T_FileStream_open(files[i].pathname, "rb");
252 fprintf(stderr, "gencmn: unable to open listed file %s\n", files[i].pathname);
267 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");
328 sprintf(buffer, "extern const char\n %s%s[]", symPrefix?symPrefix:"", files[0].pathname);
331 sprintf(buffer, ",\n %s%s[]", symPrefix?symPrefix:"", files[i].pathname);
368 sprintf(buffer, " { \"%s\", %s%s }", files[0].basename, symPrefix?symPrefix:"", files[0].pathname);
371 sprintf(buffer, ",\n { \"%s\", %s%s }", files[i].basename, symPrefix?symPrefix:"", files[i].pathname);
406 /* store the pathname */
418 files[fileCount].pathname=fullPath;
460 /* turn the basename into an entry point name and store in the pathname field */
461 t=files[fileCount].pathname=allocString(length);