Searched refs:fchmod (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dfchmod.c12 int fchmod(int fd, mode_t mode) { function
/external/chromium_org/content/renderer/
H A Drenderer_main_platform_delegate_linux.cc88 CHECK_EQ(fchmod(-1, 07777), -1);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A Dsunos4.h150 extern int fchmod(int, mode_t);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_proxy_mock.h30 MOCK_METHOD2(fchmod, int(int, int));
H A Dkernel_wrap_test.cc191 TEST_F(KernelWrapTest, fchmod) {
192 EXPECT_CALL(mock, fchmod(kDummyInt, kDummyInt2)) .WillOnce(Return(-1));
193 EXPECT_EQ(-1, fchmod(kDummyInt, kDummyInt2));
195 EXPECT_CALL(mock, fchmod(kDummyInt, kDummyInt2)) .WillOnce(Return(0));
196 EXPECT_EQ(0, fchmod(kDummyInt, kDummyInt2));
/external/e2fsprogs/lib/blkid/
H A Dsave.c102 fchmod(fd, 0644);
/external/elfutils/libelf/
H A Delf_update.c137 /* fchmod ignores the bits we cannot change. */
138 && unlikely (fchmod (elf->fildes, st.st_mode) != 0))
/external/libpcap/lbl/
H A Dos-sunos4.h66 int fchmod(int, int);
/external/tcpdump/lbl/
H A Dos-sunos4.h66 int fchmod(int, int);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_newlib.cc66 OP(dev_fdio, fchmod); \
139 int WRAP(fchmod)(int fd, mode_t mode) { function
H A Dkernel_proxy.h103 virtual int fchmod(int fd, int prot);
H A Dkernel_intercept.cc120 return s_kp->fchmod(fd, mode);
H A Dkernel_proxy.cc312 int result = fchmod(fd, mode);
698 int KernelProxy::fchmod(int fd, int mode) { function in class:nacl_io::KernelProxy
/external/chromium_org/content/common/sandbox_linux/
H A Dsandbox_seccomp_bpf_linux.cc126 syscall_ret = fchmod(-1, 07777);
/external/elfutils/src/
H A Dranlib.c290 || fchmod (newfd, st.st_mode & ALLPERMS) != 0
H A Dar.c656 if (unlikely (fchmod (xfd, arhdr->ar_mode) != 0))
797 || fchmod (newfd, st.st_mode & ALLPERMS) != 0
1046 if (fchmod (newfd, st.st_mode & ALLPERMS) != 0
1498 && (fchmod (newfd, st.st_mode & ALLPERMS) != 0
/external/openssh/
H A Dauth-krb5.c246 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) {
247 logit("fchmod(): %.100s", strerror(errno));
H A Dscp.c1131 if (fchmod(ofd, omode)) {
1142 if (fchmod(ofd, omode & ~mask)) {
/external/e2fsprogs/debugfs/
H A Ddump.c74 i = fchmod(fd, mode_xlate(inode->i_mode));
/external/ipsec-tools/src/racoon/
H A Dsession.c167 if (fchmod(fileno(fp),
/external/liblzf/
H A Dlzf.c435 fchmod (fd2, mystat.st_mode);
/external/dropbear/
H A Dscp.c1059 if (fchmod(ofd, omode)) {
1070 if (fchmod(ofd, omode & ~mask)) {
/external/ppp/pppd/
H A Dtty.c596 || fchmod(ttyfd, statbuf.st_mode & ~(S_IWGRP | S_IWOTH)) < 0) {
842 if (fchmod(real_ttyfd, tty_mode) != 0)
/external/elfutils/libasm/
H A Dasm_end.c512 if (fchmod (ctx->fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH) != 0)
/external/bzip2/
H A Dbzip2.c1070 retVal = fchmod ( fd, fileMetaInfo.st_mode );

Completed in 571 milliseconds

12