Home
last modified time | relevance | path

Searched refs:st_mtimensec (Results 1 – 15 of 15) sorted by relevance

/third_party/ntfs-3g/libfuse-lite/
Dfuse_misc.h42 #define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimensec)
44 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimensec = (val)
/third_party/boost/libs/filesystem/config/
Dhas_stat_st_mtimensec.cpp15 st.st_mtimensec = 10; in main()
/third_party/boost/libs/filesystem/build/
DJamfile.v251 …[ check-target-builds ../config//has_stat_st_mtimensec "has stat::st_mtimensec" : <define>BOOST_FI…
/third_party/ninja/src/
Ddisk_interface.cc215 return (int64_t)st.st_mtime * 1000000000LL + st.st_mtimensec; in Stat()
/third_party/mksh/
Dfuncs.c2778 #undef st_mtimensec
2779 #define st_mtimensec st_mtim.tv_nsec macro
2790 if (sb1->st_mtimensec < sb2->st_mtimensec) in mtimecmp()
2792 if (sb1->st_mtimensec > sb2->st_mtimensec) in mtimecmp()
DBuild.sh2324 ac_test st_mtimensec '!' st_mtim 0 'for struct stat.st_mtimensec' <<-'EOF'
2327 int main(void) { struct stat sb; return (sizeof(sb.st_mtimensec)); }
/third_party/glib/gio/
Dglocalfileinfo.c134 usec = statbuf->st_mtimensec / 1000; in _g_local_file_info_create_etag()
1024 …ttribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_MODIFIED_USEC, statbuf->st_mtimensec / 1000); in set_info_from_stat()
2669 times[1].tv_usec = statbuf.st_mtimensec / 1000; in set_mtime_atime()
/third_party/libuv/src/unix/
Dfs.c1458 dst->st_mtim.tv_nsec = src->st_mtimensec; in uv__to_stat()
/third_party/ntfs-3g/src/
Dlowntfs-3g.c963 stbuf->st_mtimensec = ts.tv_nsec; in ntfs_fuse_getstat()
2123 = stin->st_mtimensec; in ntfs_fuse_utimens()
Dntfs-3g.c1064 stbuf->st_mtimensec = ts.tv_nsec; in ntfs_fuse_getattr()
/third_party/boost/libs/filesystem/src/
Doperations.cpp85 # define BOOST_FILESYSTEM_STAT_ST_MTIMENSEC st_mtimensec
/third_party/python/
Dpyconfig.h.in1049 /* Define if you have struct stat.st_mtimensec */
Dconfigure.ac5229 [Define if you have struct stat.st_mtimensec])
/third_party/glib/
Dmeson.build384 [ 'stat', 'st_mtimensec' ],
/third_party/libuv/test/
Dtest-fs.c1419 ASSERT(s->st_mtim.tv_nsec == t.st_mtimensec); in TEST_IMPL()