/third_party/libuv/test/ |
D | 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); in warmup() 88 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb); in stat_cb() 107 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb); in async_bench()
|
D | test-fs-copyfile.c | 55 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in handle_result() 60 r = uv_fs_stat(NULL, &stat_req, dst, NULL); in handle_result() 119 r = uv_fs_stat(NULL, &req, dst, NULL); in TEST_IMPL() 129 r = uv_fs_stat(NULL, &req, src, NULL); in TEST_IMPL()
|
D | test-fs.c | 166 r = uv_fs_stat(NULL, &req, filename, NULL); in check_permission() 481 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in check_mkdtemp_result() 507 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in check_mkstemp_result() 763 r = uv_fs_stat(loop, &req, path, NULL); in check_utime() 1098 r = uv_fs_stat(loop, &stat_req, "test_dir", stat_cb); in TEST_IMPL() 1102 r = uv_fs_stat(loop, &stat_req, "test_dir/", stat_cb); in TEST_IMPL() 2148 r = uv_fs_stat(NULL, &req, "test_dir_symlink", NULL); in test_symlink_dir_impl() 2507 r = uv_fs_stat(NULL, &stat_req, "\\", NULL); in TEST_IMPL() 2510 r = uv_fs_stat(NULL, &stat_req, "..\\..\\..\\..\\..\\..\\..", NULL); in TEST_IMPL() 2513 r = uv_fs_stat(NULL, &stat_req, "..", NULL); in TEST_IMPL() [all …]
|
D | test-getters-setters.c | 90 uv_fs_stat(loop, fs, ".", NULL); in TEST_IMPL()
|
D | test-thread.c | 98 r = uv_fs_stat(req->loop, &req->handle, ".", fs_cb); in fs_do()
|
D | test-threadpool-cancel.c | 315 ASSERT(0 == uv_fs_stat(loop, reqs + n++, "/", fs_cb)); in TEST_IMPL()
|
D | test-fs-event.c | 548 has_shortnames = uv_fs_stat(NULL, &req, "watch_~1", NULL) != UV_ENOENT; in TEST_IMPL()
|
/third_party/libuv/src/ |
D | fs-poll.c | 99 err = uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb); in uv_fs_poll_start() 180 if (uv_fs_stat(ctx->loop, &ctx->fs_req, ctx->path, poll_cb)) in timer_cb()
|
/third_party/node/deps/uvwasi/src/ |
D | path_resolver.c | 431 r = uv_fs_stat(NULL, &req, host_path, NULL); in uvwasi__resolve_path()
|
/third_party/node/src/ |
D | node_file.cc | 999 int rc = uv_fs_stat(env->event_loop(), &req, *path, nullptr); in InternalModuleStat() 1023 uv_fs_stat, *path); in Stat() 1028 int err = SyncCall(env, args[3], &req_wrap_sync, "stat", uv_fs_stat, *path); in Stat() 1391 err = uv_fs_stat(loop, req, next_path.c_str(), nullptr); in MKDirpSync() 1475 int err = uv_fs_stat(loop, req, path.c_str(), in MKDirpAsync()
|
D | node_binding.cc | 155 int rc = uv_fs_stat(nullptr, &req, filename, nullptr); in wrapped_dlopen()
|
/third_party/libuv/docs/src/ |
D | fs.rst | 188 Stores the result of :c:func:`uv_fs_stat` and other stat requests. 322 .. c:function:: int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)
|
/third_party/libuv/docs/src/guide/ |
D | filesystem.rst | 142 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb);
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 1422 UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
|
/third_party/libuv/include/ |
D | uv.h | 1451 UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
|
/third_party/libuv/src/unix/ |
D | fs.c | 2145 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { in uv_fs_stat() function
|
/third_party/libuv/src/win/ |
D | fs.c | 3222 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { in uv_fs_stat() function
|
/third_party/libuv/ |
D | ChangeLog | 403 * test: remove unnecessary uv_fs_stat() calls (Ben Noordhuis) 411 * unix: fix uv_fs_stat when using statx (Simon Kadisch) 4815 * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|