Lines Matching refs:stat_req
46 uv_fs_t stat_req; in handle_result() local
57 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in handle_result()
59 size = stat_req.statbuf.st_size; in handle_result()
60 mode = stat_req.statbuf.st_mode; in handle_result()
61 uid = stat_req.statbuf.st_uid; in handle_result()
62 gid = stat_req.statbuf.st_gid; in handle_result()
63 uv_fs_req_cleanup(&stat_req); in handle_result()
64 r = uv_fs_stat(NULL, &stat_req, dst, NULL); in handle_result()
66 ASSERT_EQ(stat_req.statbuf.st_size, size); in handle_result()
67 ASSERT_EQ(stat_req.statbuf.st_mode, mode); in handle_result()
68 ASSERT_EQ(stat_req.statbuf.st_uid, uid); in handle_result()
69 ASSERT_EQ(stat_req.statbuf.st_gid, gid); in handle_result()
70 uv_fs_req_cleanup(&stat_req); in handle_result()