Searched refs:lchownSync (Results 1 – 10 of 10) sorted by relevance
/third_party/node/test/parallel/ |
D | test-fs-lchown.js | 15 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);
|
D | test-fs-null-bytes.js | 61 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/ |
D | chownr.js | 8 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/ |
D | polyfills.js | 55 fs.lchownSync = chownFixSync(fs.lchownSync) 80 fs.lchownSync = function () {} function
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_fileio.js | 472 lchownSync: function (...args) { method
|
/third_party/node/lib/ |
D | fs.js | 1338 function lchownSync(path, uid, gid) { function 2115 lchownSync,
|
/third_party/node/doc/api/ |
D | deprecations.md | 787 ### 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
|
D | fs.md | 4363 ### `fs.lchownSync(path, uid, gid)`
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V9.md | 1034 …ub.com/nodejs/node/commit/230a102647)] - **fs**: cleanup fd lchown and lchownSync (James M Snell) …
|
D | CHANGELOG_V8.md | 1421 …ub.com/nodejs/node/commit/577933a7c6)] - **fs**: cleanup fd lchown and lchownSync (James M Snell) …
|