Searched refs:uv_fs_scandir_next (Results 1 – 9 of 9) sorted by relevance
/third_party/libuv/test/ |
D | test-fs.c | 561 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/ |
D | migration_010_100.rst | 242 result at a time by using the :c:func:`uv_fs_scandir_next` function. This function
|
D | fs.rst | 128 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/ |
D | uv-common.c | 665 int uv_fs_scandir_next(uv_fs_t* req, uv_dirent_t* ent) { in uv_fs_scandir_next() function
|
/third_party/node/src/ |
D | node_file.cc | 773 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/ |
D | filesystem.rst | 138 int uv_fs_scandir_next(uv_fs_t* req, uv_dirent_t* ent);
|
/third_party/libuv/include/ |
D | uv.h | 1425 UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 1408 UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,
|
/third_party/libuv/ |
D | ChangeLog | 2527 * fs: fix crash in uv_fs_scandir_next (muflub) 3515 * windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra
|