Lines Matching refs:opendir
45 // Check the opendir Sync version
69 // Check the opendir async version
70 fs.opendir(testDir, common.mustSucceed((dir) => {
90 // opendir() on file should throw ENOTDIR
96 fs.opendir(__filename);
99 fs.opendir(__filename, common.mustCall(function(e) {
105 () => fs.opendir(i, common.mustNotCall()),
122 // Check the opendir Promise version
123 const dir = await fs.promises.opendir(testDir);
145 for await (const dirent of await fs.promises.opendir(testDir)) {
159 const dir = await fs.promises.opendir(testDir);
169 const dir = await fs.promises.opendir(testDir);
181 const dir = await fs.promises.opendir(testDir);
221 const dir = await fs.promises.opendir(testDir);
228 const dir = await fs.promises.opendir(testDir);
236 const dir = await fs.promises.opendir(testDir);
255 const dir = await fs.promises.opendir(testDir);
267 const dir = await fs.promises.opendir(testDir);