| /src/external/mit/libuv/dist/test/ |
| benchmark-fs-stat.c | 34 uv_fs_stat(NULL, (req), (path), NULL); \ 52 uv_fs_stat(uv_default_loop(), reqs + i, path, uv_fs_req_cleanup); 88 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb); 107 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb);
|
| test-fs-copyfile.c | 57 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); 64 r = uv_fs_stat(NULL, &stat_req, dst, NULL); 126 r = uv_fs_stat(NULL, &req, dst, NULL); 136 r = uv_fs_stat(NULL, &req, src, NULL);
|
| test-getters-setters.c | 95 uv_fs_stat(loop, fs, ".", NULL); 100 ASSERT_EQ(uv_fs_get_type(fs), UV_FS_STAT);
|
| test-metrics.c | 346 ASSERT_OK(uv_fs_stat(uv_default_loop(), 350 ASSERT_OK(uv_fs_stat(uv_default_loop(),
|
| test-fs.c | 188 r = uv_fs_stat(NULL, &req, filename, NULL); 544 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); 570 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); 673 ASSERT(req->fs_type == UV_FS_STAT || req->fs_type == UV_FS_LSTAT); 682 ASSERT(req->fs_type == UV_FS_STAT || req->fs_type == UV_FS_LSTAT); 835 r = uv_fs_stat(loop, &req, path, NULL); 1246 r = uv_fs_stat(loop, &stat_req, "test_dir", stat_cb); 1250 r = uv_fs_stat(loop, &stat_req, "test_dir/", stat_cb); 1672 r = uv_fs_stat(loop, &req, test_file, NULL); 1676 r = uv_fs_stat(loop, &req_link, symlink_file, NULL) [all...] |
| test-thread.c | 96 r = uv_fs_stat(req->loop, &req->handle, ".", fs_cb);
|
| test-threadpool-cancel.c | 111 case UV_FS_STAT: 351 ASSERT_OK(uv_fs_stat(loop, reqs + n++, "/", fs_cb));
|
| test-fs-event.c | 607 has_shortnames = uv_fs_stat(NULL, &req, "watch_~1", NULL) != UV_ENOENT;
|
| /src/external/mit/libuv/dist/src/ |
| fs-poll.c | 99 err = uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb); 183 if (uv_fs_stat(ctx->loop, &ctx->fs_req, ctx->path, poll_cb))
|
| /src/external/mit/libuv/dist/include/ |
| uv.h | 1402 UV_FS_STAT, 1451 uv_stat_t statbuf; /* Stores the result of uv_fs_stat() and uv_fs_fstat(). */ 1551 UV_EXTERN int uv_fs_stat(uv_loop_t* loop, 1694 * uv_fs_stat() based polling file watcher.
|
| /src/external/mit/libuv/dist/src/unix/ |
| fs.c | 1743 if (r == 0 && (req->fs_type == UV_FS_STAT || 2155 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { function
|
| /src/external/mit/libuv/dist/src/win/ |
| fs.c | 2073 * sure this really is a link before giving up here on the uv_fs_stat call, 3557 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { function 3560 INIT(UV_FS_STAT);
|