Lines Matching refs:ENOENT

75       `ENOENT: no such file or directory, stat '${nonexistentFile}'`);
77 assert.strictEqual(err.code, 'ENOENT');
96 `ENOENT: no such file or directory, lstat '${nonexistentFile}'`);
98 assert.strictEqual(err.code, 'ENOENT');
136 `ENOENT: no such file or directory, lstat '${nonexistentFile}'`);
138 assert.strictEqual(err.code, 'ENOENT');
157 `ENOENT: no such file or directory, realpath '${nonexistentFile}'`);
159 assert.strictEqual(err.code, 'ENOENT');
178 `ENOENT: no such file or directory, readlink '${nonexistentFile}'`);
180 assert.strictEqual(err.code, 'ENOENT');
200 const regexp = new RegExp('^ENOENT: no such file or directory, link ' +
204 assert.strictEqual(err.code, 'ENOENT');
269 `ENOENT: no such file or directory, unlink '${nonexistentFile}'`);
271 assert.strictEqual(err.code, 'ENOENT');
291 const regexp = new RegExp('ENOENT: no such file or directory, rename ' +
295 assert.strictEqual(err.code, 'ENOENT');
358 `ENOENT: no such file or directory, rmdir '${nonexistentFile}'`);
360 assert.strictEqual(err.code, 'ENOENT');
386 `ENOENT: no such file or directory, rmdir '${existingFile}'`);
388 assert.strictEqual(err.code, 'ENOENT');
428 `ENOENT: no such file or directory, chmod '${nonexistentFile}'`);
430 assert.strictEqual(err.code, 'ENOENT');
449 `ENOENT: no such file or directory, open '${nonexistentFile}'`);
451 assert.strictEqual(err.code, 'ENOENT');
491 `ENOENT: no such file or directory, open '${nonexistentFile}'`);
493 assert.strictEqual(err.code, 'ENOENT');
512 `ENOENT: no such file or directory, scandir '${nonexistentFile}'`);
514 assert.strictEqual(err.code, 'ENOENT');
599 `ENOENT: no such file or directory, chown '${nonexistentFile}'`);
601 assert.strictEqual(err.code, 'ENOENT');
622 `ENOENT: no such file or directory, utime '${nonexistentFile}'`);
624 assert.strictEqual(err.code, 'ENOENT');
644 const prefix = new RegExp('^ENOENT: no such file or directory, mkdtemp ' +
649 assert.strictEqual(err.code, 'ENOENT');
681 if (err.code === 'ENOENT') { // Could be ENOENT or EEXIST
683 'ENOENT: no such file or directory, copyfile ' +
686 assert.strictEqual(err.code, 'ENOENT');
712 'ENOENT: no such file or directory, copyfile ' +
715 assert.strictEqual(err.code, 'ENOENT');