Home
last modified time | relevance | path

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

123456

/third_party/node/test/parallel/
Dtest-fs-fchmod.js17 assert.throws(() => fs.fchmod(input), errObj);
26 assert.throws(() => fs.fchmod(1, input), errObj);
30 assert.throws(() => fs.fchmod(1, '123x'), {
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-trace-events-fs-async.js63 function fchmod() { function
67 fs.fchmod(fd, 100, () => {
275 tests.fchmod = wrapper(fchmod);
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/node/typings/internalBinding/
Dfs.d.ts76 function fchmod(fd: number, mode: number, req: FSReqCallback): void;
77 function fchmod(fd: number, mode: number, req: undefined, ctx: FSSyncContext): void;
78 function fchmod(fd: number, mode: number, usePromises: typeof kUsePromises): Promise<void>;
241 fchmod: typeof InternalFSBinding.fchmod;
/third_party/node/deps/npm/node_modules/graceful-fs/
Dpolyfills.js54 fs.fchmod = chmodFix(fs.fchmod)
177 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/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/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/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()
Dmmap02.c157 if (fchmod(fildes, 0444) < 0) { in setup()
Dmmap05.c165 if (fchmod(fildes, 0444) < 0) { in setup()
Dmmap03.c188 if (fchmod(fildes, 0555) < 0) { in setup()
/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/pcre2/pcre2/src/sljit/
DsljitProtExecAllocator.c120 fchmod(fd, 0); in create_tempfile()
174 fchmod(fd, 0); in create_tempfile()
/third_party/curl/lib/
Dfopen.c142 if(fchmod(fd, (mode_t)sb.st_mode) == -1) in Curl_fopen()
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dstat.h78 int fchmod(int, mode_t);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dstat.h78 int fchmod(int, mode_t);

123456