Home
last modified time | relevance | path

Searched refs:uv_fs_stat (Results 1 – 18 of 18) sorted by relevance

/third_party/libuv/test/
Dbenchmark-fs-stat.c34 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()
Dtest-fs-copyfile.c55 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()
Dtest-fs.c166 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 …]
Dtest-getters-setters.c90 uv_fs_stat(loop, fs, ".", NULL); in TEST_IMPL()
Dtest-thread.c98 r = uv_fs_stat(req->loop, &req->handle, ".", fs_cb); in fs_do()
Dtest-threadpool-cancel.c315 ASSERT(0 == uv_fs_stat(loop, reqs + n++, "/", fs_cb)); in TEST_IMPL()
Dtest-fs-event.c548 has_shortnames = uv_fs_stat(NULL, &req, "watch_~1", NULL) != UV_ENOENT; in TEST_IMPL()
/third_party/libuv/src/
Dfs-poll.c99 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/
Dpath_resolver.c431 r = uv_fs_stat(NULL, &req, host_path, NULL); in uvwasi__resolve_path()
/third_party/node/src/
Dnode_file.cc999 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()
Dnode_binding.cc155 int rc = uv_fs_stat(nullptr, &req, filename, nullptr); in wrapped_dlopen()
/third_party/libuv/docs/src/
Dfs.rst188 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/
Dfilesystem.rst142 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/
Duv.h1422 UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
/third_party/libuv/include/
Duv.h1451 UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
/third_party/libuv/src/unix/
Dfs.c2145 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/
Dfs.c3222 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/
DChangeLog403 * 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