HomeSort by: relevance | last modified time | path
    Searched defs:oflag (Results 1 - 24 of 24) sorted by relevancy

  /src/lib/libm/softfloat/
feupdateenv.c 47 fexcept_t oflag; local in function:__weak_alias
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 in typeref:typename:once_flag
63 call_once(&oflag, called_once);
  /src/usr.sbin/lpr/lpd/
ttcompat.c 65 tcflag_t oflag = tp->c_oflag; local in function:sttygetoflags
81 if (!ISSET(oflag, OPOST))
101 tcflag_t oflag = tp->c_oflag; local in function:sttysetoflags
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 in function:sttyclearflags
176 CLR(oflag, ONLCR);
179 CLR(oflag, OXTABS)
194 tcflag_t oflag = tp->c_oflag; local in function:sttysetflags
222 tcflag_t oflag = tp->c_oflag; local in function:sttyclearlflags
257 tcflag_t oflag = tp->c_oflag; local in function:sttysetlflags
    [all...]
  /src/sbin/nvmectl/
perftest.c 95 bool nflag, oflag, sflag, tflag; local in function:perftest
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 in function:ttcompatgetflags
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 in function:ttcompatsetflags
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 in function:ttcompatsetlflags
    [all...]
  /src/sys/compat/linux/common/
linux_mqueue.c 80 syscallarg(int) oflag;
86 int error, oflag; local in function:linux_sys_mq_open
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/usr.bin/finger/
finger.c 96 int entries, gflag, lflag, mflag, oflag, sflag, eightflag, pplan; variable in typeref:typename:int
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 in function:fclear
276 if (oflag == -1)
278 if (fcntl(fd, F_SETFL, oflag & ~flag) == -1)
  /src/common/dist/zlib/
gzlib.c 88 int oflag; local in function:gz_open
210 oflag =
233 fd == -2 ? _wopen(path, oflag, 0666) :
235 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 in typeref:typename:u_int
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 in function:setflags
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 in function:compatflags
372 oflag = OPOST|ONLCR|OXTABS
    [all...]
  /src/sys/sys/
spawn.h 59 int oflag; member in struct:posix_spawn_file_actions_entry::__anona75f4e88010a::__anona75f4e880208
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 in typeref:typename:int
162 oflag = 1;
554 if (oflag) {
  /src/lib/libc/gen/
fts.c 652 int oflag; local in function:fts_build
667 oflag = DTF_NODUP|DTF_REWIND;
669 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
673 if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
  /src/usr.bin/mkdep/
mkdep.c 214 int aflag, dflag, iflag, oflag, qflag; local in function:main
236 oflag = 0;
267 oflag = 1;
449 if (oflag)
456 if (oflag && opt != NULL) {
  /src/sbin/swapctl/
swapctl.c 143 static int oflag; /* only autoset dump device */ variable in typeref:typename:int
241 oflag = 1;
303 if (fflag && oflag)
465 if (fflag || oflag) {
467 if (oflag)
  /src/share/examples/refuse/ian/libfetch/
ftp.c 1104 int oflag; local in function:_ftp_request
1139 oflag = O_WRONLY;
1141 oflag = O_RDONLY;
1144 return (_ftp_transfer(conn, op, url->doc, oflag, url->offset, flags));
  /src/usr.bin/grep/
grep.c 110 bool oflag; /* -o: print only matching part */ variable in typeref:typename:bool
532 oflag = true;
  /src/usr.bin/midirecord/
midirecord.c 66 static int aflag, qflag, oflag; variable in typeref:typename:int
139 oflag++; /* time stamp starts at proc start */
334 if (prev_div == 0 && !oflag)
  /src/sys/kern/
sys_select.c 812 const int oflag = l->l_selflag; local in function:sel_setevents
819 if (__predict_false(events == 0 || oflag == SEL_RESET)) {
882 int index, oflag; local in function:selnotify
900 oflag = l->l_selflag;
915 if (oflag == SEL_BLOCKING && l->l_mutex == lock) {
tty.c 936 long oflag; local in function:ttyoutput
941 oflag = tp->t_oflag;
942 if (!ISSET(oflag, OPOST)) {
957 ISSET(oflag, OXTABS) && !ISSET(tp->t_lflag, EXTPROC)) {
970 if (c == CEOT && ISSET(oflag, ONOEOT))
  /src/usr.bin/nc/
netcat.c 106 int Oflag; /* TCP send buffer size */
116 char *oflag; /* OCSP stapling file */ variable in typeref:typename:char *
324 Oflag = strtoi(optarg, NULL, 0, 1, 65536 << 14, &errnum);
331 oflag = optarg;
418 if (oflag && !Cflag)
517 if (oflag && tls_config_set_ocsp_staple_file(tls_cfg, oflag) == -1)
1518 if (Oflag) {
1520 &Oflag, sizeof(Oflag)) == -1
    [all...]
  /src/usr.bin/config/
gram.y 199 %type <flag> fflags fflag oflags oflag
495 | oflags oflag { $$ = $1 | $2; }
499 oflag: label
  /src/sys/compat/netbsd32/
netbsd32.h 1203 int oflag; member in struct:netbsd32_posix_spawn_file_actions_entry::__anon14f7041d120a::__anon14f7041d1308

Completed in 34 milliseconds