Home
last modified time | relevance | path

Searched refs:COPYFILE_EXCL (Results 1 – 8 of 8) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-copyfile.js17 COPYFILE_EXCL,
39 assert.strictEqual(typeof COPYFILE_EXCL, 'number');
45 assert.strictEqual(COPYFILE_EXCL, UV_FS_COPYFILE_EXCL);
83 fs.copyFile(src, dest, COPYFILE_EXCL, common.mustCall((err) => {
Dtest-fs-error-messages.js45 const { COPYFILE_EXCL } = fs.constants;
699 fs.copyFile(existingFile, existingFile2, COPYFILE_EXCL,
703 () => fs.copyFileSync(existingFile, existingFile2, COPYFILE_EXCL),
720 fs.copyFile(nonexistentFile, existingFile2, COPYFILE_EXCL,
724 () => fs.copyFileSync(nonexistentFile, existingFile2, COPYFILE_EXCL),
/third_party/node/lib/internal/fs/
Dutils.js71 COPYFILE_EXCL,
120 COPYFILE_EXCL,
124 const kMaximumCopyMode = COPYFILE_EXCL |
/third_party/node/src/
Dnode_constants.cc1268 # define COPYFILE_EXCL UV_FS_COPYFILE_EXCL in DefineSystemConstants() macro
1270 NODE_DEFINE_CONSTANT(target, COPYFILE_EXCL); in DefineSystemConstants()
1271 # undef COPYFILE_EXCL in DefineSystemConstants()
/third_party/node/typings/internalBinding/
Dconstants.d.ts184 COPYFILE_EXCL: 1;
/third_party/rust/crates/libc/libc-test/semver/
Dapple.txt228 COPYFILE_EXCL
/third_party/node/doc/api/
Dfs.md932 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`)
934 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest`
961 // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
963 await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
2267 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
2269 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
2289 // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
2290 copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
5141 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
5143 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
[all …]
/third_party/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs4750 pub const COPYFILE_EXCL: ::copyfile_flags_t = 1 << 17; constant