| /src/lib/libm/softfloat/ |
| feupdateenv.c | 47 fexcept_t oflag; local 49 fegetexceptflag(&oflag, FE_ALL_EXCEPT); 55 feraiseexcept(oflag);
|
| /src/tests/lib/libpthread/ |
| t_call_once.c | 50 static once_flag oflag = ONCE_FLAG_INIT; variable 63 call_once(&oflag, called_once);
|
| /src/usr.sbin/lpr/lpd/ |
| ttcompat.c | 65 tcflag_t oflag = tp->c_oflag; local 81 if (!ISSET(oflag, OPOST)) 101 tcflag_t oflag = tp->c_oflag; local 145 SET(oflag, OPOST); 147 CLR(oflag, OPOST); 152 SET(oflag, OPOST); 156 tp->c_oflag = oflag; 165 tcflag_t oflag = tp->c_oflag; local 176 CLR(oflag, ONLCR); 179 CLR(oflag, OXTABS) 194 tcflag_t oflag = tp->c_oflag; local 222 tcflag_t oflag = tp->c_oflag; local 257 tcflag_t oflag = tp->c_oflag; local [all...] |
| /src/sbin/nvmectl/ |
| perftest.c | 95 bool nflag, oflag, sflag, tflag; local 98 nflag = oflag = sflag = tflag = false; 133 oflag = true; 176 if (!nflag || !oflag || !sflag || !tflag || optind >= argc)
|
| /src/sys/compat/common/ |
| tty_43.c | 289 tcflag_t oflag = tp->t_oflag; local 297 if (ISSET(iflag, ICRNL) || ISSET(oflag, ONLCR)) 321 if (!ISSET(oflag, OPOST)) 331 if (ISSET(oflag, OXTABS)) 357 tcflag_t oflag = t->c_oflag; local 371 SET(oflag, ONLCR); 374 CLR(oflag, ONLCR); 377 SET(oflag, OXTABS); 379 CLR(oflag, OXTABS); 422 SET(oflag, OPOST) 443 tcflag_t oflag = t->c_oflag; local [all...] |
| /src/sys/compat/linux/common/ |
| linux_mqueue.c | 80 syscallarg(int) oflag; 86 int error, oflag; local 88 oflag = linux_to_bsd_ioflags(SCARG(uap, oflag)); 90 if ((oflag & O_CREAT) != 0 && SCARG(uap, attr) != NULL) { 98 return mq_handle_open(l, SCARG(uap, name), oflag,
|
| /src/common/dist/zlib/ |
| gzlib.c | 88 int oflag; local 210 oflag = 233 fd == -2 ? _wopen(path, oflag, 0666) : 235 open((const char *)path, oflag, 0666));
|
| /src/usr.bin/finger/ |
| finger.c | 96 int entries, gflag, lflag, mflag, oflag, sflag, eightflag, pplan; variable 118 oflag = 1; /* default to old "office" behavior */ 135 oflag = 0; /* remote host info */ 138 oflag = 1; /* office info */
|
| /src/usr.bin/ktrace/ |
| ktrace.c | 274 int oflag = fcntl(fd, F_GETFL, 0); local 276 if (oflag == -1) 278 if (fcntl(fd, F_SETFL, oflag & ~flag) == -1)
|
| /src/external/bsd/zstd/dist/zlibWrapper/ |
| gzlib.c | 93 int oflag; local 215 oflag = 238 fd == -2 ? _wopen(path, oflag, 0666) : 240 open((const char *)path, oflag, 0666));
|
| /src/external/gpl3/binutils/dist/zlib/ |
| gzlib.c | 88 int oflag; local 210 oflag = 233 fd == -2 ? _wopen(path, oflag, 0666) : 235 open((const char *)path, oflag, 0666));
|
| /src/external/gpl3/binutils.old/dist/zlib/ |
| gzlib.c | 100 int oflag; local 222 oflag = 245 fd == -2 ? _wopen(path, oflag, 0666) : 247 open((const char *)path, oflag, 0666));
|
| /src/external/gpl3/gdb/dist/zlib/ |
| gzlib.c | 100 int oflag; local 222 oflag = 245 fd == -2 ? _wopen(path, oflag, 0666) : 247 open((const char *)path, oflag, 0666));
|
| /src/external/gpl3/gdb.old/dist/zlib/ |
| gzlib.c | 100 int oflag; local 222 oflag = 245 fd == -2 ? _wopen(path, oflag, 0666) : 247 open((const char *)path, oflag, 0666));
|
| /src/bin/dd/ |
| dd.c | 85 #define oflag O_CREAT macro 88 u_int oflag = O_CREAT; /* open(2) flags for output file */ variable 208 if ((oflag & O_TRUNC) && (ddflags & C_SEEK)) { 209 errx(EXIT_FAILURE, "oflag=trunc is incompatible " 213 if ((oflag & O_TRUNC) && (ddflags & C_NOTRUNC)) { 214 errx(EXIT_FAILURE, "oflag=trunc is incompatible " 220 (oflag | (ddflags & (C_SEEK | C_NOTRUNC) ? 0 : O_TRUNC))
|
| /src/libexec/getty/ |
| subr.c | 188 tcflag_t iflag, oflag, cflag, lflag; local 244 oflag = omode.c_oflag; 289 SET(oflag, ONLCR|OPOST); 292 CLR(oflag, ONLCR); 296 SET(oflag, OXTABS|OPOST); 298 CLR(oflag, OXTABS); 307 CLR(oflag, OPOST); 357 tmode.c_oflag = oflag; 369 tcflag_t iflag, oflag, cflag, lflag; local 372 oflag = OPOST|ONLCR|OXTABS [all...] |
| /src/sys/sys/ |
| spawn.h | 59 int oflag; member in struct:posix_spawn_file_actions_entry::__anon7703::__anon7704 60 #define fae_oflag fae_data.open.oflag
|
| /src/usr.bin/xargs/ |
| xargs.c | 78 static int count, insingle, indouble, oflag, pflag, tflag, Rflag, rval, zflag; variable 162 oflag = 1; 554 if (oflag) {
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/ |
| ops-common.h | 551 int oflag = O_WRONLY | O_CREAT | common_flags; local 553 oflag |= O_TRUNC; 555 oflag |= O_EXCL; 556 CloseFD out = { posix::open(to, oflag, S_IWUSR) };
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/ |
| ops-common.h | 487 int oflag = O_WRONLY | O_CREAT | common_flags; local 489 oflag |= O_TRUNC; 491 oflag |= O_EXCL; 492 CloseFD out = { posix::open(to, oflag, S_IWUSR) };
|
| std-ops.cc | 375 int oflag = O_WRONLY|O_CREAT; variable 377 oflag |= O_TRUNC; 379 oflag |= O_EXCL; 380 CloseFD out = { ::open(to, oflag, S_IWUSR) };
|
| /src/lib/libc/gen/ |
| fts.c | 652 int oflag; local 667 oflag = DTF_NODUP|DTF_REWIND; 669 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND; 673 if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
|
| /src/sbin/swapctl/ |
| swapctl.c | 143 static int oflag; /* only autoset dump device */ variable 241 oflag = 1; 303 if (fflag && oflag) 465 if (fflag || oflag) { 467 if (oflag)
|
| /src/usr.bin/mkdep/ |
| mkdep.c | 214 int aflag, dflag, iflag, oflag, qflag; local 236 oflag = 0; 267 oflag = 1; 449 if (oflag) 456 if (oflag && opt != NULL) {
|
| /src/external/gpl2/groff/dist/src/roff/groff/ |
| groff.cpp | 120 int oflag = 0; local 255 oflag = 1; 366 if (oflag)
|