Home | History | Annotate | Download | only in tools

Lines Matching defs:file

111 	printf("  -a RW sorted by pid & file types\n");
112 printf(" -f RW sorted by file types\n");
145 printf("\tError: Log file is not specified.\n");
208 static void do_parse(FILE *file)
214 while (fgets(line, sizeof(line), file) != NULL) {
272 printf("\n===== Data R/W in 4KB accoring to File types =====\n");
303 FILE *file;
308 file = fopen(argv[opt], "r");
309 if (!file) {
310 perror("open log file");
316 do_parse(file);
320 fclose(file);