Lines Matching refs:tv_nsec
30 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atim.tv_nsec)
31 #define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctim.tv_nsec)
32 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtim.tv_nsec)
33 #define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atim.tv_nsec = (val)
34 #define ST_CTIM_NSEC_SET(stbuf, val) (stbuf)->st_ctim.tv_nsec = (val)
35 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtim.tv_nsec = (val)
38 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atimespec.tv_nsec)
39 #define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctimespec.tv_nsec)
40 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimespec.tv_nsec)
41 #define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atimespec.tv_nsec = (val)
42 #define ST_CTIM_NSEC_SET(stbuf, val) (stbuf)->st_ctimespec.tv_nsec = (val)
43 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimespec.tv_nsec = (val)