Home
last modified time | relevance | path

Searched refs:lchmod (Results 1 - 19 of 19) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-fs-chmod-mask.js67 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 Dtest-fs-chmod.js124 // lchmod
125 if (fs.lchmod) {
130 fs.lchmod(link, mode_async, common.mustSucceed(() => {
H A Dtest-fs-promises.js17 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 Dpolyfills.js32 // 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 Dlchmod.c5 int lchmod(const char *path, mode_t mode) in lchmod() function
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dstat.h95 int lchmod(const char *, mode_t);
/third_party/musl/porting/linux/user/include/sys/
H A Dstat.h95 int lchmod(const char *, mode_t);
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dstat.h95 int lchmod(const char *, mode_t);
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dstat.h95 int lchmod(const char *, mode_t);
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dstat.h95 int lchmod(const char *, mode_t);
/third_party/musl/include/sys/
H A Dstat.h102 int lchmod(const char *, mode_t);
/third_party/node/lib/internal/fs/
H A Dpromises.js913 async function lchmod(path, mode) {
915 throw new ERR_METHOD_NOT_IMPLEMENTED('lchmod()');
1052 lchmod,
/third_party/python/Lib/test/
H A Dtest_shutil.py528 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 Dtest_os.py3886 if hasattr(os, "lchmod"):
3887 funcs.append((self.filenames, os.lchmod, 0o777))
/third_party/node/lib/
H A Dfs.js1922 function lchmod(path, mode, callback) { function
3109 lchmod: constants.O_SYMLINK !== undefined ? lchmod : undefined,
/third_party/python/Lib/
H A Dshutil.py294 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 Dpathlib.py1134 def lchmod(self, mode): member in Path
/third_party/python/Modules/
H A Dposixmodule.c3299 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 Dapi.js[all...]

Completed in 63 milliseconds