Lines Matching defs:path
33 const char *path = "/data/utimes.txt";
34 int fd = open(path, O_RDWR | O_RSYNC | O_CREAT, 0664);
43 stat(path, &buf1);
48 if (utimes(path, NULL) != 0) {
51 stat(path, &buf2);
57 remove(path);
67 const char *path = "/data/utimes.txt";
68 int fd = open(path, O_RDWR | O_RSYNC | O_CREAT, 0664);
77 int result = utimes(path, tv);
81 stat(path, &st);
86 remove(path);
96 const char *path = "/data/utimes_time64.txt";
97 int fd = open(path, O_RDWR | O_RSYNC | O_CREAT, 0664);
106 stat(path, &buf1);
111 if (__utimes_time64(path, NULL) != 0) {
114 stat(path, &buf2);
120 remove(path);