Home
last modified time | relevance | path

Searched refs:uv_fs_statfs (Results 1 – 9 of 9) sorted by relevance

/third_party/libuv/docs/src/
Dfs.rst110 Used in :c:func:`uv_fs_statfs`.
328 .. c:function:: int uv_fs_statfs(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)
/third_party/libuv/test/
Dtest-fs.c4038 r = uv_fs_statfs(NULL, NULL, NULL, NULL); in TEST_IMPL()
4306 r = uv_fs_statfs(NULL, &req, ".", NULL); in TEST_IMPL()
4312 r = uv_fs_statfs(loop, &req, ".", statfs_cb); in TEST_IMPL()
4325 r = uv_fs_statfs(NULL, &req, "non_existing_file", NULL); in TEST_IMPL()
/third_party/libuv/docs/src/guide/
Dfilesystem.rst163 int uv_fs_statfs(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb);
/third_party/libuv/include/
Duv.h1559 UV_EXTERN int uv_fs_statfs(uv_loop_t* loop,
/third_party/libuv/include/uv_ndk/
Duv.h1536 UV_EXTERN int uv_fs_statfs(uv_loop_t* loop,
/third_party/libuv/src/unix/
Dfs.c2247 int uv_fs_statfs(uv_loop_t* loop, in uv_fs_statfs() function
/third_party/libuv/src/win/
Dfs.c3421 int uv_fs_statfs(uv_loop_t* loop, in uv_fs_statfs() function
/third_party/libuv/
DChangeLog738 * win: handle file paths in uv_fs_statfs() (erw7)
1038 * win: fix uv_statfs_t leak in uv_fs_statfs() (Ryan Liptak)
1150 * unix,win: add uv_fs_statfs() (cjihrig)
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2107 * The `uv_fs_statfs()` API has been added.