Searched refs:rmdir_req (Results 1 – 3 of 3) sorted by relevance
/third_party/libuv/test/ |
D | test-fs-readdir.c | 101 uv_fs_t rmdir_req; in TEST_IMPL() local 157 uv_fs_rmdir(uv_default_loop(), &rmdir_req, path, NULL); in TEST_IMPL() 158 uv_fs_req_cleanup(&rmdir_req); in TEST_IMPL() 347 uv_fs_t rmdir_req; in TEST_IMPL() local 456 uv_fs_rmdir(uv_default_loop(), &rmdir_req, "test_subdir", NULL); in TEST_IMPL() 457 uv_fs_req_cleanup(&rmdir_req); in TEST_IMPL()
|
D | test-fs-open-flags.c | 44 static uv_fs_t rmdir_req; variable 65 r = uv_fs_rmdir(NULL, &rmdir_req, empty_dir, NULL); in setup() 67 ASSERT(rmdir_req.result == 0 || rmdir_req.result == UV_ENOENT); in setup() 68 uv_fs_req_cleanup(&rmdir_req); in setup()
|
D | test-fs.c | 111 static uv_fs_t rmdir_req; variable 576 ASSERT(req == &rmdir_req); in rmdir_cb() 1180 r = uv_fs_rmdir(loop, &rmdir_req, "test_dir", rmdir_cb); in TEST_IMPL()
|