/third_party/node/test/parallel/ |
H A D | test-fs-chmod-mask.js | 67 if (fs.lchmod) { 68 const link = path.join(tmpdir.path, `lchmod-src-${suffix}`); 69 const file = path.join(tmpdir.path, `lchmod-dest-${suffix}`); 73 fs.lchmod(link, input, common.mustSucceed(() => {
|
H A D | test-fs-chmod.js | 124 // lchmod 125 if (fs.lchmod) { 130 fs.lchmod(link, mode_async, common.mustSucceed(() => {
|
H A D | test-fs-promises.js | 17 lchmod, 307 // `lchmod` is only available on macOS. 308 await lchmod(newLink, newMode); 314 lchmod(newLink, newMode), 318 message: 'The lchmod() method is not implemented'
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
H A D | polyfills.js | 32 // lchmod, broken prior to 0.6.2 55 fs.lchmod = chmodFix(fs.lchmod) 73 // if lchmod/lchown do not exist, then make them no-ops 74 if (fs.chmod && !fs.lchmod) { 75 fs.lchmod = function (path, mode, cb) { 166 fs.lchmod = function (path, mode, callback) {
|
/third_party/musl/src/stat/ |
H A D | lchmod.c | 5 int lchmod(const char *path, mode_t mode) in lchmod() function
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | stat.h | 95 int lchmod(const char *, mode_t);
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | stat.h | 95 int lchmod(const char *, mode_t);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | stat.h | 95 int lchmod(const char *, mode_t);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | stat.h | 95 int lchmod(const char *, mode_t);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | stat.h | 95 int lchmod(const char *, mode_t);
|
/third_party/musl/include/sys/ |
H A D | stat.h | 102 int lchmod(const char *, mode_t);
|
/third_party/node/lib/internal/fs/ |
H A D | promises.js | 913 async function lchmod(path, mode) { 915 throw new ERR_METHOD_NOT_IMPLEMENTED('lchmod()'); 1052 lchmod,
|
/third_party/python/Lib/test/ |
H A D | test_shutil.py | 528 if hasattr(os, 'lchmod'): 529 os.lchmod(src_link, stat.S_IRWXU | stat.S_IRWXO) 542 if hasattr(os, 'lchmod'): 859 @unittest.skipUnless(hasattr(os, 'lchmod'), 'requires os.lchmod') 873 os.lchmod(src_link, stat.S_IRWXO|stat.S_IRWXG) 875 os.lchmod(dst_link, stat.S_IRWXO) 881 os.lchmod(dst_link, stat.S_IRWXO) 885 os.lchmod(dst_link, stat.S_IRWXO) 889 @unittest.skipIf(hasattr(os, 'lchmod'), 'require [all...] |
H A D | test_os.py | 3886 if hasattr(os, "lchmod"): 3887 funcs.append((self.filenames, os.lchmod, 0o777))
|
/third_party/node/lib/ |
H A D | fs.js | 1922 function lchmod(path, mode, callback) { function 3109 lchmod: constants.O_SYMLINK !== undefined ? lchmod : undefined,
|
/third_party/python/Lib/ |
H A D | shutil.py | 294 if both `src` and `dst` are symlinks. If `lchmod` isn't available 301 if hasattr(os, 'lchmod'): 302 stat_func, chmod_func = os.lstat, os.lchmod
|
H A D | pathlib.py | 1134 def lchmod(self, mode): member in Path
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 3299 result = lchmod(path->narrow, mode); in os_chmod_impl() 3413 os.lchmod 3433 res = lchmod(path->narrow, mode); in os_lchmod_impl()
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |