Lines Matching defs:path
99 const char* path;
106 path = "./empty_dir/";
107 uv_fs_mkdir(uv_default_loop(), &mkdir_req, path, 0777, NULL);
116 path,
149 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, empty_opendir_cb);
157 uv_fs_rmdir(uv_default_loop(), &rmdir_req, path, NULL);
181 const char* path;
184 path = "./non-existing-dir/";
190 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, NULL);
203 path,
233 const char* path;
236 path = "test/fixtures/empty_file";
242 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, NULL);
255 r = uv_fs_opendir(uv_default_loop(), &opendir_req, path, file_opendir_cb);