/libuv/test/ |
H A 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() 89 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb); in stat_cb() 109 uv_fs_stat(uv_default_loop(), &req->fs_req, req->path, stat_cb); in async_bench()
|
H A D | test-fs-copyfile.c | 57 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in handle_result() 64 r = uv_fs_stat(NULL, &stat_req, dst, NULL); in handle_result() 126 r = uv_fs_stat(NULL, &req, dst, NULL); in TEST_IMPL() 136 r = uv_fs_stat(NULL, &req, src, NULL); in TEST_IMPL()
|
H A D | test-metrics.c | 346 ASSERT_OK(uv_fs_stat(uv_default_loop(), in TEST_IMPL() 350 ASSERT_OK(uv_fs_stat(uv_default_loop(), in TEST_IMPL()
|
H A D | test-getters-setters.c | 95 uv_fs_stat(loop, fs, ".", NULL); in TEST_IMPL()
|
H A D | test-fs.c | 176 r = uv_fs_stat(NULL, &req, filename, NULL); in check_permission() 532 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in check_mkdtemp_result() 558 r = uv_fs_stat(NULL, &stat_req, req->path, NULL); in check_mkstemp_result() 823 r = uv_fs_stat(loop, &req, path, NULL); in check_utime() 2759 r = uv_fs_stat(NULL, &stat_req, "\\", NULL); in TEST_IMPL() 2765 r = uv_fs_stat(NULL, &stat_req, "..", NULL); in TEST_IMPL() 2768 r = uv_fs_stat(NULL, &stat_req, "..\\", NULL); in TEST_IMPL() 2772 r = uv_fs_stat(NULL, &stat_req, "c:", NULL); in TEST_IMPL() 2775 r = uv_fs_stat(NULL, &stat_req, "c:\\", NULL); in TEST_IMPL() 3637 r = uv_fs_stat(NULL, &stat_req, "test_file", NULL); in fs_write_alotof_bufs_with_offset() [all …]
|
H A D | test-thread.c | 96 r = uv_fs_stat(req->loop, &req->handle, ".", fs_cb); in fs_do()
|
H A D | test-threadpool-cancel.c | 351 ASSERT_OK(uv_fs_stat(loop, reqs + n++, "/", fs_cb)); in TEST_IMPL()
|
H A D | test-fs-event.c | 600 has_shortnames = uv_fs_stat(NULL, &req, "watch_~1", NULL) != UV_ENOENT; in TEST_IMPL()
|
/libuv/src/ |
H A 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()
|
/libuv/docs/src/ |
H A D | fs.rst | 209 Stores the result of :c:func:`uv_fs_stat` and other stat requests. 345 .. c:function:: int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 142 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb);
|
/libuv/include/ |
H A D | uv.h | 1538 UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
|
/libuv/src/unix/ |
H A D | fs.c | 2171 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { in uv_fs_stat() function
|
/libuv/src/win/ |
H A D | fs.c | 3353 int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { in uv_fs_stat() function
|
/libuv/ |
H A D | ChangeLog | 1334 * test: remove unnecessary uv_fs_stat() calls (Ben Noordhuis) 1342 * unix: fix uv_fs_stat when using statx (Simon Kadisch) 5746 * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|