Searched refs:O_SYMLINK (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/npm/node_modules/graceful-fs/ |
H A D | polyfills.js | 34 if (constants.hasOwnProperty('O_SYMLINK') && 168 , constants.O_WRONLY | constants.O_SYMLINK 186 var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK, mode) 209 if (constants.hasOwnProperty("O_SYMLINK") && fs.futimes) { 211 fs.open(path, constants.O_SYMLINK, function (er, fd) { 225 var fd = fs.openSync(path, constants.O_SYMLINK)
|
/third_party/libuv/include/uv/ |
H A D | unix.h | 479 #if defined(O_SYMLINK) 480 # define UV_FS_O_SYMLINK O_SYMLINK
|
/third_party/node/deps/uv/include/uv/ |
H A D | unix.h | 477 #if defined(O_SYMLINK) 478 # define UV_FS_O_SYMLINK O_SYMLINK
|
/third_party/node/lib/internal/fs/ |
H A D | promises.js | 25 O_SYMLINK, 914 if (O_SYMLINK === undefined) 917 const fd = await open(path, O_WRONLY | O_SYMLINK);
|
/third_party/node/src/ |
H A D | node_constants.cc | 1191 #ifdef O_SYMLINK in DefineSystemConstants() 1192 NODE_DEFINE_CONSTANT(target, O_SYMLINK); in DefineSystemConstants()
|
/third_party/node/lib/ |
H A D | fs.js | 57 O_SYMLINK, 1925 fs.open(path, O_WRONLY | O_SYMLINK, (err, fd) => { 1947 const fd = fs.openSync(path, O_WRONLY | O_SYMLINK); 3109 lchmod: constants.O_SYMLINK !== undefined ? lchmod : undefined, 3110 lchmodSync: constants.O_SYMLINK !== undefined ? lchmodSync : undefined,
|
/third_party/rust/crates/libc/src/unix/redox/ |
H A D | mod.rs | 457 pub const O_SYMLINK: ::c_int = 0x4000_0000; consts
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 15204 #ifdef O_SYMLINK in all_ins() 15205 if (PyModule_AddIntMacro(m, O_SYMLINK)) return -1; in all_ins()
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 2753 pub const O_SYMLINK: ::c_int = 0x00200000; consts
|
Completed in 37 milliseconds