Home
last modified time | relevance | path

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

/third_party/libuv/test/
Dtest-fs.c561 while (UV_EOF != uv_fs_scandir_next(req, &dent)) { in scandir_cb()
580 ASSERT(UV_EOF == uv_fs_scandir_next(req, &dent)); in empty_scandir_cb()
592 ASSERT(UV_ENOENT == uv_fs_scandir_next(req, &dent)); in non_existent_scandir_cb()
1091 while (UV_EOF != uv_fs_scandir_next(&scandir_req, &dent)) { in TEST_IMPL()
2219 while (UV_EOF != uv_fs_scandir_next(&scandir_req, &dent)) { in test_symlink_dir_impl()
2239 while (UV_EOF != uv_fs_scandir_next(&scandir_req, &dent)) { in test_symlink_dir_impl()
2346 while (UV_EOF != uv_fs_scandir_next(&scandir_req, &dent)) { in TEST_IMPL()
2399 while (uv_fs_scandir_next(&req, &dirent) != UV_EOF) { in TEST_IMPL()
2706 ASSERT(UV_EOF == uv_fs_scandir_next(&req, &dent)); in TEST_IMPL()
2743 ASSERT(UV_ENOENT == uv_fs_scandir_next(&req, &dent)); in TEST_IMPL()
/third_party/libuv/docs/src/
Dmigration_010_100.rst242 result at a time by using the :c:func:`uv_fs_scandir_next` function. This function
Dfs.rst128 Used in :c:func:`uv_fs_scandir_next`.
308 .. c:function:: int uv_fs_scandir_next(uv_fs_t* req, uv_dirent_t* ent)
311 for the request is called, the user can use :c:func:`uv_fs_scandir_next` to
/third_party/libuv/src/
Duv-common.c665 int uv_fs_scandir_next(uv_fs_t* req, uv_dirent_t* ent) { in uv_fs_scandir_next() function
/third_party/node/src/
Dnode_file.cc773 r = uv_fs_scandir_next(req, &ent); in AfterScanDir()
814 r = uv_fs_scandir_next(req, &ent); in AfterScanDirWithTypes()
1660 r = uv_fs_scandir_next(&(req_wrap_sync.req), &ent); in ReadDir()
/third_party/libuv/docs/src/guide/
Dfilesystem.rst138 int uv_fs_scandir_next(uv_fs_t* req, uv_dirent_t* ent);
/third_party/libuv/include/
Duv.h1425 UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,
/third_party/libuv/include/uv_ndk/
Duv.h1408 UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,
/third_party/libuv/
DChangeLog2527 * fs: fix crash in uv_fs_scandir_next (muflub)
3515 * windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra