Lines Matching refs:path
100 const char* path; in TEST_IMPL() local
107 path = "./empty_dir/"; in TEST_IMPL()
108 uv_fs_mkdir(uv_default_loop(), &mkdir_req, path, 0777, NULL); in TEST_IMPL()
117 path, in TEST_IMPL()
150 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, empty_opendir_cb); in TEST_IMPL()
158 uv_fs_rmdir(uv_default_loop(), &rmdir_req, path, NULL); in TEST_IMPL()
182 const char* path; in TEST_IMPL() local
185 path = "./non-existing-dir/"; in TEST_IMPL()
191 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, NULL); in TEST_IMPL()
204 path, in TEST_IMPL()
234 const char* path; in TEST_IMPL() local
237 path = "test/fixtures/empty_file"; in TEST_IMPL()
243 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, NULL); in TEST_IMPL()
256 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, file_opendir_cb); in TEST_IMPL()