/third_party/node/test/parallel/ |
D | test-fs-fchmod.js | 18 assert.throws(() => fs.fchmod(input), errObj); 30 assert.throws(() => fs.fchmod(1, input), errObj); 41 assert.throws(() => fs.fchmod(input), errObj); 53 assert.throws(() => fs.fchmod(1, input), errObj); 64 assert.throws(() => fs.fchmod(input), errObj); 67 assert.throws(() => fs.fchmod(1, input), errObj); 78 assert.throws(() => fs.fchmod(input), errObj); 81 assert.throws(() => fs.fchmod(1, input), errObj);
|
D | test-fs-chmod.js | 99 fs.fchmod(fd, mode_async.toString(8), common.mustSucceed(() => { 107 () => fs.fchmod(fd, {}),
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | fchmod.c | 34 int result = fchmod(fd, in fchmod_0100() 54 int result = fchmod(fd, S_IRWXU | S_IRWXG | S_IRWXO); in fchmod_0200() 69 int result = fchmod(-1, S_IRWXU | S_IRWXG | S_IRWXO); in fchmod_0300()
|
D | test_src_functionalext_supplement_stat.gni | 22 "fchmod",
|
/third_party/curl/ |
D | backport-after-CVE-2022-32207-to-fix-build-error-when-user-don-t-use-glibc.patch | 22 +check_symbol_exists(fchmod "${CURL_INCLUDES}" HAVE_FCHMOD) 34 + fchmod \ 46 +/* Define to 1 if you have the `fchmod' function. */ 81 - if(fchmod(fd, sb.st_mode) == -1) 89 + if(fchmod(fd, sb.st_mode) == -1)
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
D | polyfills.js | 50 fs.fchmod = chmodFix(fs.fchmod) 166 fs.fchmod(fd, mode, function (err) {
|
/third_party/musl/src/stat/ |
D | fchmod.c | 6 int fchmod(int fd, mode_t mode) in fchmod() function
|
/third_party/rust/crates/rustix/src/fs/ |
D | fd.rs | 126 pub fn fchmod<Fd: AsFd>(fd: Fd, mode: Mode) -> io::Result<()> { in fchmod() function 127 backend::fs::syscalls::fchmod(fd.as_fd(), mode) in fchmod()
|
/third_party/ltp/testcases/kernel/syscalls/fchmod/ |
D | fchmod01.c | 28 TEST(fchmod(fd, mode)); in verify_fchmod()
|
D | fchmod02.c | 32 TEST(fchmod(fd, PERMS)); in verify_fchmod()
|
D | fchmod05.c | 35 TEST(fchmod(fd, PERMS_DIR)); in verify_fchmod()
|
D | fchmod06.c | 39 TEST(fchmod(*tc->fd, tc->mode)); in verify_fchmod()
|
D | fchmod04.c | 114 TEST(fchmod(fd, PERMS)); in main()
|
D | fchmod03.c | 110 TEST(fchmod(fd, PERMS)); in main()
|
/third_party/node/lib/internal/fs/ |
D | promises.js | 120 return fsCall(fchmod, this, mode); 603 async function fchmod(handle, mode) { function 605 return binding.fchmod(handle.fd, mode, kUsePromises); 619 return PromisePrototypeFinally(fchmod(fd, mode), fd.close);
|
/third_party/rust/crates/nix/test/ |
D | test_stat.rs | 39 use nix::sys::stat::{fchmod, stat}; 158 fchmod(file.as_raw_fd(), mode1).unwrap(); in test_fchmod() 165 fchmod(file.as_raw_fd(), mode2).unwrap(); in test_fchmod()
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
D | open13.c | 128 TEST(fchmod(fd, 0666)); in verify_fchmod()
|
/third_party/ltp/testcases/kernel/syscalls/mmap/ |
D | mmap04.c | 159 if (fchmod(fildes, 0555) < 0) { in setup()
|
D | mmap05.c | 165 if (fchmod(fildes, 0444) < 0) { in setup()
|
D | mmap02.c | 157 if (fchmod(fildes, 0444) < 0) { in setup()
|
D | mmap03.c | 188 if (fchmod(fildes, 0555) < 0) { in setup()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitProtExecAllocator.c | 120 fchmod(fd, 0); in create_tempfile() 174 fchmod(fd, 0); in create_tempfile()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 78 int fchmod(int, mode_t);
|
/third_party/musl/ndk_musl_include/sys/ |
D | stat.h | 78 int fchmod(int, mode_t);
|
/third_party/musl/include/sys/ |
D | stat.h | 78 int fchmod(int, mode_t);
|