Lines Matching refs:req
72 uv_fs_t req;
73 r = uv_fs_mkdir(NULL, &req, name, 0755, NULL);
75 uv_fs_req_cleanup(&req);
81 uv_fs_t req;
83 r = uv_fs_open(NULL, &req, name, UV_FS_O_WRONLY | UV_FS_O_CREAT,
88 uv_fs_req_cleanup(&req);
89 r = uv_fs_close(NULL, &req, file, NULL);
91 uv_fs_req_cleanup(&req);
97 uv_fs_t req;
100 r = uv_fs_open(NULL, &req, name, UV_FS_O_RDWR, 0, NULL);
103 uv_fs_req_cleanup(&req);
106 r = uv_fs_write(NULL, &req, file, &buf, 1, -1, NULL);
108 uv_fs_req_cleanup(&req);
110 r = uv_fs_close(NULL, &req, file, NULL);
112 uv_fs_req_cleanup(&req);
518 uv_fs_t req;
533 has_shortnames = uv_fs_stat(NULL, &req, "watch_~1", NULL) != UV_ENOENT;