uv_fs_stat       1652 include/uv.h   UV_EXTERN int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path,
uv_fs_stat         87 src/fs-poll.c    if (uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb))
uv_fs_stat        134 src/fs-poll.c    if (uv_fs_stat(ctx->loop, &ctx->fs_req, ctx->path, poll_cb))
uv_fs_stat         34 test/benchmark-fs-stat.c     uv_fs_stat(uv_default_loop(), (req), (path), NULL);                       \
uv_fs_stat         52 test/benchmark-fs-stat.c     uv_fs_stat(uv_default_loop(), reqs + i, path, uv_fs_req_cleanup);
uv_fs_stat         88 test/benchmark-fs-stat.c   uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb);
uv_fs_stat        107 test/benchmark-fs-stat.c       uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb);
uv_fs_stat        112 test/test-fs.c   r = uv_fs_stat(uv_default_loop(), &req, filename, NULL);
uv_fs_stat        545 test/test-fs.c   r = uv_fs_stat(loop, &req, path, NULL);
uv_fs_stat        785 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "test_dir", stat_cb);
uv_fs_stat        789 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "test_dir/", stat_cb);
uv_fs_stat       1426 test/test-fs.c   r = uv_fs_stat(loop, &req, "test_dir_symlink", NULL);
uv_fs_stat       1529 test/test-fs.c   r = uv_fs_stat(loop, &req, path, NULL);
uv_fs_stat       1560 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "\\", NULL);
uv_fs_stat       1563 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "..\\..\\..\\..\\..\\..\\..", NULL);
uv_fs_stat       1566 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "..", NULL);
uv_fs_stat       1569 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "..\\", NULL);
uv_fs_stat       1573 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "c:", NULL);
uv_fs_stat       1576 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "c:\\", NULL);
uv_fs_stat       1579 test/test-fs.c   r = uv_fs_stat(loop, &stat_req, "\\\\?\\C:\\", NULL);
uv_fs_stat       1620 test/test-fs.c   r = uv_fs_stat(loop, &req, path, NULL);
uv_fs_stat       1653 test/test-fs.c   r = uv_fs_stat(loop, &req, "non_existent_file", NULL);
uv_fs_stat         91 test/test-thread.c   r = uv_fs_stat(req->loop, &req->handle, ".", fs_cb);
uv_fs_stat        261 test/test-threadpool-cancel.c   ASSERT(0 == uv_fs_stat(loop, reqs + n++, "/", fs_cb));