Home
last modified time | relevance | path

Searched refs:lchownSync (Results 1 – 10 of 10) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-lchown.js15 assert.throws(() => fs.lchownSync(i, 1, 1), err);
33 assert.throws(() => fs.lchownSync('not_a_file_that_exists', i, 1), err);
34 assert.throws(() => fs.lchownSync('not_a_file_that_exists', 1, i), err);
60 fs.lchownSync(testFile, uid, gid);
Dtest-fs-null-bytes.js61 check(fs.lchown, fs.lchownSync, 'foo\u0000bar', 12, 34);
95 check(fs.lchown, fs.lchownSync, fileUrl, 12, 34);
126 check(fs.lchown, fs.lchownSync, fileUrl2, 12, 34);
/third_party/node/deps/npm/node_modules/chownr/
Dchownr.js8 const LCHOWNSYNC = fs.lchownSync ? 'lchownSync' : 'chownSync'
15 const lchownSync = (path, uid, gid) => { function
51 return lchownSync(path, uid, gid)
58 : (path, uid, gid) => lchownSync(path, uid, gid)
/third_party/node/deps/npm/node_modules/graceful-fs/
Dpolyfills.js55 fs.lchownSync = chownFixSync(fs.lchownSync)
80 fs.lchownSync = function () {} function
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_fileio.js472 lchownSync: function (...args) { method
/third_party/node/lib/
Dfs.js1338 function lchownSync(path, uid, gid) { function
2115 lchownSync,
/third_party/node/doc/api/
Ddeprecations.md787 ### DEP0038: `fs.lchownSync(path, uid, gid)`
804 The [`fs.lchownSync(path, uid, gid)`][] API was deprecated. The deprecation was
2724 [`fs.lchownSync(path, uid, gid)`]: fs.md#fs_fs_lchownsync_path_uid_gid
Dfs.md4363 ### `fs.lchownSync(path, uid, gid)`
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md1034 …ub.com/nodejs/node/commit/230a102647)] - **fs**: cleanup fd lchown and lchownSync (James M Snell) …
DCHANGELOG_V8.md1421 …ub.com/nodejs/node/commit/577933a7c6)] - **fs**: cleanup fd lchown and lchownSync (James M Snell) …