Home | History | Annotate | Download | only in fchmod

Lines Matching defs:mode

24  *  Verify that, fchmod(2) succeeds when used to change the mode permissions
28 * fchmod(2) should return 0 and the mode permissions set on file should match
29 * the specified mode.
96 int mode; /* file mode permission */
109 mode = Modes[ind];
112 * Call fchmod(2) with different mode permission
115 TEST(fchmod(fd, mode));
119 "errno=%d : %s", fd, mode, TEST_ERRNO,
136 * Check for expected mode permissions
139 if (stat_buf.st_mode == mode) {
143 fd, mode);
148 mode);