Home
last modified time | relevance | path

Searched refs:lchown (Results 1 – 25 of 85) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-fs-lchown.js14 assert.throws(() => fs.lchown(i, 1, 1, common.mustNotCall()), err);
16 promises.lchown(false, 1, 1)
26 () => fs.lchown('not_a_file_that_exists', i, 1, common.mustNotCall()),
30 () => fs.lchown('not_a_file_that_exists', 1, i, common.mustNotCall()),
36 promises.lchown('not_a_file_that_exists', i, 1)
40 promises.lchown('not_a_file_that_exists', 1, i)
47 assert.throws(() => fs.lchown('not_a_file_that_exists', 1, 1, i), {
61 fs.lchown(testFile, uid, gid, common.mustSucceed(async (err) => {
62 await promises.lchown(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);
Dtest-fs-promises.js15 lchown,
261 await lchown(newLink, process.getuid(), process.getgid());
/third_party/node/deps/npm/node_modules/graceful-fs/
Dpolyfills.js47 fs.lchown = chownFix(fs.lchown)
76 if (!fs.lchown) {
77 fs.lchown = function (path, uid, gid, cb) { function
DREADME.md18 `lchown` if the user isn't root.
19 * makes `lchmod` and `lchown` become noops, if not available.
119 * No-op lchown/lchmod if not implemented
/third_party/ltp/testcases/kernel/syscalls/lchown/
Dlchown02.c118 UID16_CHECK(user_id, lchown, cleanup); in main()
120 GID16_CHECK(group_id, lchown, cleanup); in main()
DMakefile8 SRCS := $(sort $(wildcard $(abs_srcdir)/lchown*.c))
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dlchown.c29 int ret = lchown(pathname, TEST_ID_VALUE, TEST_ID_VALUE); in lchown_0100()
Dtest_src_functionalext_supplement_unistd.gni70 "lchown",
/third_party/musl/src/unistd/
Dlchown.c5 int lchown(const char *path, uid_t uid, gid_t gid) in lchown() function
/third_party/musl/porting/liteos_a/user/src/unistd/
Dlchown.c6 int lchown(const char *path, uid_t uid, gid_t gid) in lchown() function
/third_party/node/deps/npm/node_modules/chownr/
Dchownr.js6 const LCHOWN = fs.lchown ? 'lchown' : 'chown'
11 const needEISDIRHandled = fs.lchown &&
/third_party/eudev/src/shared/
Ddev-setup.c70 if (lchown(n, uid, gid) < 0) in dev_setup()
/third_party/ltp/testcases/kernel/syscalls/utils/
Dcompat_tst_16.h148 TST_CREATE_SYSCALL(lchown, path, owner, group); in LCHOWN()
Dcompat_16.h161 LTP_CREATE_SYSCALL(lchown, cleanup, path, owner, group); in LCHOWN()
/third_party/node/lib/internal/fs/
Dpromises.js622 async function lchown(path, uid, gid) { function
626 return binding.lchown(pathModule.toNamespacedPath(path),
749 lchown, property
/third_party/ltp/include/lapi/syscalls/
Dmips_n64.in93 lchown 5092
Dmips_n32.in93 lchown 6092
Dsparc64.in17 lchown 16
Ds390x.in148 lchown 198
Dia64.in98 lchown 1124
Dsh.in17 lchown 16
Dx86_64.in95 lchown 94
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dwpa_ctrl.c170 lchown(ctrl->local.sun_path, -1, AID_WIFI); in wpa_ctrl_open2()
171 lchown(ctrl->local.sun_path, AID_SYSTEM, AID_WIFI); in wpa_ctrl_open2()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dwpa_ctrl.c170 lchown(ctrl->local.sun_path, -1, AID_WIFI); in wpa_ctrl_open2()
171 lchown(ctrl->local.sun_path, AID_SYSTEM, AID_WIFI); in wpa_ctrl_open2()

1234