Lines Matching refs:stbuf
27 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atim.tv_nsec)
28 #define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctim.tv_nsec)
29 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtim.tv_nsec)
30 #define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atim.tv_nsec = (val)
31 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtim.tv_nsec = (val)
34 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atimespec.tv_nsec)
35 #define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctimespec.tv_nsec)
36 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimespec.tv_nsec)
37 #define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atimespec.tv_nsec = (val)
38 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimespec.tv_nsec = (val)
40 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atimensec)
41 #define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctimensec)
42 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimensec)
43 #define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atimensec = (val)
44 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimensec = (val)
46 #define ST_ATIM_NSEC(stbuf) 0
47 #define ST_CTIM_NSEC(stbuf) 0
48 #define ST_MTIM_NSEC(stbuf) 0
49 #define ST_ATIM_NSEC_SET(stbuf, val) do { } while (0)
50 #define ST_MTIM_NSEC_SET(stbuf, val) do { } while (0)