Lines Matching refs:tfile
58 static char tfile[BUFSIZ] = { 0 }; variable
281 if ((strlen(tfile) != 0) && (access(tfile, F_OK) == 0)) { in cleanup()
282 (void) unlink(tfile); in cleanup()
322 (void) snprintf(tfile, sizeof (tfile), "%s/%s", penv[0], penv[1]); in main()
327 if (access(tfile, F_OK) == 0) { in main()
328 (void) unlink(tfile); in main()
330 if ((fd = open(tfile, O_WRONLY | O_CREAT | O_TRUNC, ALL_MODE)) == -1) { in main()
331 (void) fprintf(stderr, "open(%s) failed: %d\n", tfile, errno); in main()
342 ret = get_file_time(tfile, timetest_table[i].type, &t1); in main()
345 tfile, timetest_table[i].type, ret); in main()
353 timetest_table[i].func(tfile); in main()
358 ret = get_file_time(tfile, timetest_table[i].type, &t2); in main()
361 tfile, timetest_table[i].type, ret); in main()