/third_party/node/test/parallel/ |
D | test-fs-lchown.js | 14 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);
|
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);
|
D | test-fs-promises.js | 15 lchown, 261 await lchown(newLink, process.getuid(), process.getgid());
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
D | polyfills.js | 47 fs.lchown = chownFix(fs.lchown) 76 if (!fs.lchown) { 77 fs.lchown = function (path, uid, gid, cb) { function
|
D | README.md | 18 `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/ |
D | lchown02.c | 118 UID16_CHECK(user_id, lchown, cleanup); in main() 120 GID16_CHECK(group_id, lchown, cleanup); in main()
|
D | Makefile | 8 SRCS := $(sort $(wildcard $(abs_srcdir)/lchown*.c))
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | lchown.c | 29 int ret = lchown(pathname, TEST_ID_VALUE, TEST_ID_VALUE); in lchown_0100()
|
D | test_src_functionalext_supplement_unistd.gni | 70 "lchown",
|
/third_party/musl/src/unistd/ |
D | lchown.c | 5 int lchown(const char *path, uid_t uid, gid_t gid) in lchown() function
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
D | lchown.c | 6 int lchown(const char *path, uid_t uid, gid_t gid) in lchown() function
|
/third_party/node/deps/npm/node_modules/chownr/ |
D | chownr.js | 6 const LCHOWN = fs.lchown ? 'lchown' : 'chown' 11 const needEISDIRHandled = fs.lchown &&
|
/third_party/eudev/src/shared/ |
D | dev-setup.c | 70 if (lchown(n, uid, gid) < 0) in dev_setup()
|
/third_party/ltp/testcases/kernel/syscalls/utils/ |
D | compat_tst_16.h | 148 TST_CREATE_SYSCALL(lchown, path, owner, group); in LCHOWN()
|
D | compat_16.h | 161 LTP_CREATE_SYSCALL(lchown, cleanup, path, owner, group); in LCHOWN()
|
/third_party/node/lib/internal/fs/ |
D | promises.js | 622 async function lchown(path, uid, gid) { function 626 return binding.lchown(pathModule.toNamespacedPath(path), 749 lchown, property
|
/third_party/ltp/include/lapi/syscalls/ |
D | mips_n64.in | 93 lchown 5092
|
D | mips_n32.in | 93 lchown 6092
|
D | sparc64.in | 17 lchown 16
|
D | s390x.in | 148 lchown 198
|
D | ia64.in | 98 lchown 1124
|
D | sh.in | 17 lchown 16
|
D | x86_64.in | 95 lchown 94
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | wpa_ctrl.c | 170 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/ |
D | wpa_ctrl.c | 170 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()
|