Home
last modified time | relevance | path

Searched refs:fchmod (Results 1 – 25 of 121) sorted by relevance

12345

/third_party/node/test/parallel/
Dtest-fs-fchmod.js18 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);
Dtest-fs-chmod.js99 fs.fchmod(fd, mode_async.toString(8), common.mustSucceed(() => {
107 () => fs.fchmod(fd, {}),
/third_party/musl/libc-test/src/functionalext/supplement/stat/
Dfchmod.c34 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()
Dtest_src_functionalext_supplement_stat.gni22 "fchmod",
/third_party/curl/
Dbackport-after-CVE-2022-32207-to-fix-build-error-when-user-don-t-use-glibc.patch22 +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/
Dpolyfills.js50 fs.fchmod = chmodFix(fs.fchmod)
166 fs.fchmod(fd, mode, function (err) {
/third_party/musl/src/stat/
Dfchmod.c6 int fchmod(int fd, mode_t mode) in fchmod() function
/third_party/rust/crates/rustix/src/fs/
Dfd.rs126 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/
Dfchmod01.c28 TEST(fchmod(fd, mode)); in verify_fchmod()
Dfchmod02.c32 TEST(fchmod(fd, PERMS)); in verify_fchmod()
Dfchmod05.c35 TEST(fchmod(fd, PERMS_DIR)); in verify_fchmod()
Dfchmod06.c39 TEST(fchmod(*tc->fd, tc->mode)); in verify_fchmod()
Dfchmod04.c114 TEST(fchmod(fd, PERMS)); in main()
Dfchmod03.c110 TEST(fchmod(fd, PERMS)); in main()
/third_party/node/lib/internal/fs/
Dpromises.js120 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/
Dtest_stat.rs39 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/
Dopen13.c128 TEST(fchmod(fd, 0666)); in verify_fchmod()
/third_party/ltp/testcases/kernel/syscalls/mmap/
Dmmap04.c159 if (fchmod(fildes, 0555) < 0) { in setup()
Dmmap05.c165 if (fchmod(fildes, 0444) < 0) { in setup()
Dmmap02.c157 if (fchmod(fildes, 0444) < 0) { in setup()
Dmmap03.c188 if (fchmod(fildes, 0555) < 0) { in setup()
/third_party/pcre2/pcre2/src/sljit/
DsljitProtExecAllocator.c120 fchmod(fd, 0); in create_tempfile()
174 fchmod(fd, 0); in create_tempfile()
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dstat.h78 int fchmod(int, mode_t);
/third_party/musl/ndk_musl_include/sys/
Dstat.h78 int fchmod(int, mode_t);
/third_party/musl/include/sys/
Dstat.h78 int fchmod(int, mode_t);

12345