/third_party/node/test/parallel/ |
D | test-fs-fchmod.js | 17 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);
|
D | test-trace-events-fs-async.js | 63 function fchmod() { function 67 fs.fchmod(fd, 100, () => { 275 tests.fchmod = wrapper(fchmod);
|
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/node/typings/internalBinding/ |
D | fs.d.ts | 76 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/ |
D | polyfills.js | 54 fs.fchmod = chmodFix(fs.fchmod) 177 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/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/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/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 | mmap02.c | 157 if (fchmod(fildes, 0444) < 0) { in setup()
|
D | mmap05.c | 165 if (fchmod(fildes, 0444) < 0) { in setup()
|
D | mmap03.c | 188 if (fchmod(fildes, 0555) < 0) { in setup()
|
/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/pcre2/pcre2/src/sljit/ |
D | sljitProtExecAllocator.c | 120 fchmod(fd, 0); in create_tempfile() 174 fchmod(fd, 0); in create_tempfile()
|
/third_party/curl/lib/ |
D | fopen.c | 142 if(fchmod(fd, (mode_t)sb.st_mode) == -1) in Curl_fopen()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 78 int fchmod(int, mode_t);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | stat.h | 78 int fchmod(int, mode_t);
|