Lines Matching refs:a
51 static int statbuf_eq(const uv_stat_t* a, const uv_stat_t* b);
258 static int statbuf_eq(const uv_stat_t* a, const uv_stat_t* b) { in statbuf_eq() argument
259 return a->st_ctim.tv_nsec == b->st_ctim.tv_nsec in statbuf_eq()
260 && a->st_mtim.tv_nsec == b->st_mtim.tv_nsec in statbuf_eq()
261 && a->st_birthtim.tv_nsec == b->st_birthtim.tv_nsec in statbuf_eq()
262 && a->st_ctim.tv_sec == b->st_ctim.tv_sec in statbuf_eq()
263 && a->st_mtim.tv_sec == b->st_mtim.tv_sec in statbuf_eq()
264 && a->st_birthtim.tv_sec == b->st_birthtim.tv_sec in statbuf_eq()
265 && a->st_size == b->st_size in statbuf_eq()
266 && a->st_mode == b->st_mode in statbuf_eq()
267 && a->st_uid == b->st_uid in statbuf_eq()
268 && a->st_gid == b->st_gid in statbuf_eq()
269 && a->st_ino == b->st_ino in statbuf_eq()
270 && a->st_dev == b->st_dev in statbuf_eq()
271 && a->st_flags == b->st_flags in statbuf_eq()
272 && a->st_gen == b->st_gen; in statbuf_eq()