Searched refs:COPYFILE_EXCL (Results 1 – 8 of 8) sorted by relevance
/third_party/node/test/parallel/ |
D | test-fs-copyfile.js | 17 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) => {
|
D | test-fs-error-messages.js | 45 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/ |
D | utils.js | 71 COPYFILE_EXCL, 120 COPYFILE_EXCL, 124 const kMaximumCopyMode = COPYFILE_EXCL |
|
/third_party/node/src/ |
D | node_constants.cc | 1268 # 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/ |
D | constants.d.ts | 184 COPYFILE_EXCL: 1;
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | apple.txt | 228 COPYFILE_EXCL
|
/third_party/node/doc/api/ |
D | fs.md | 932 `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/ |
D | mod.rs | 4750 pub const COPYFILE_EXCL: ::copyfile_flags_t = 1 << 17; constant
|