fs_req             37 src/fs-poll.c    uv_fs_t fs_req; /* TODO(bnoordhuis) mark fs_req internal */
fs_req             87 src/fs-poll.c    if (uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb))
fs_req            134 src/fs-poll.c    if (uv_fs_stat(ctx->loop, &ctx->fs_req, ctx->path, poll_cb))
fs_req            144 src/fs-poll.c    ctx = container_of(req, struct poll_ctx, fs_req);
fs_req             41 test/benchmark-fs-stat.c   uv_fs_t fs_req;
fs_req             84 test/benchmark-fs-stat.c static void stat_cb(uv_fs_t* fs_req) {
fs_req             85 test/benchmark-fs-stat.c   struct async_req* req = container_of(fs_req, struct async_req, fs_req);
fs_req             86 test/benchmark-fs-stat.c   uv_fs_req_cleanup(&req->fs_req);
fs_req             88 test/benchmark-fs-stat.c   uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb);
fs_req            107 test/benchmark-fs-stat.c       uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb);
fs_req            234 test/test-spawn.c   uv_fs_t fs_req;
fs_req            242 test/test-spawn.c   r = uv_fs_open(uv_default_loop(), &fs_req, "stdout_file", O_CREAT | O_RDWR,
fs_req            245 test/test-spawn.c   uv_fs_req_cleanup(&fs_req);
fs_req            264 test/test-spawn.c   r = uv_fs_read(uv_default_loop(), &fs_req, file, output, sizeof(output),
fs_req            267 test/test-spawn.c   uv_fs_req_cleanup(&fs_req);
fs_req            269 test/test-spawn.c   r = uv_fs_close(uv_default_loop(), &fs_req, file, NULL);
fs_req            271 test/test-spawn.c   uv_fs_req_cleanup(&fs_req);
fs_req             54 test/test-thread.c static void fs_do(struct fs_req* req);
fs_req             88 test/test-thread.c static void fs_do(struct fs_req* req) {
fs_req             97 test/test-thread.c   struct fs_req* req = container_of(handle, struct fs_req, handle);
fs_req            108 test/test-thread.c   struct fs_req fs_reqs[16];
fs_req            125 test/test-thread.c     struct fs_req* req = fs_reqs + i;