Lines Matching refs:tsp
57 timespec_t *tsp; in utime() local
60 tsp = NULL; in utime()
69 tsp = ts; in utime()
71 return (utimensat(AT_FDCWD, path, tsp, 0)); in utime()
79 timespec_t *tsp; in utimes_impl() local
82 tsp = NULL; in utimes_impl()
91 tsp = ts; in utimes_impl()
93 return (utimensat(AT_FDCWD, path, tsp, flag)); in utimes_impl()
114 timespec_t *tsp; in futimesat() local
117 tsp = NULL; in futimesat()
126 tsp = ts; in futimesat()
130 return (futimens(fd, tsp)); in futimesat()
132 return (utimensat(fd, path, tsp, 0)); in futimesat()