Lines Matching defs:mode
34 "default, the mode of created FIFO is \ba=rw\b minus the "
36 "[m:mode]:[mode?Set the mode of created FIFO to \amode\a. "
37 "\amode\a is symbolic or octal mode as in \bchmod\b(1). Relative "
38 "modes assume an initial mode of \ba=rw\b.]"
56 register mode_t mode = S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH;
69 mode = strperm(arg = opt_info.arg, &opt_info.arg, mode);
71 error(ERROR_exit(0), "%s: invalid mode", arg);
88 mode &= ~mask;
93 if (mkfifo(arg, mode) < 0)