| /src/bin/ksh/ |
| shf.c | 36 shf_open(name, oflags, mode, sflags) 40 int sflags; 43 int bsize = sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE; 59 if ((sflags & SHF_MAPHI) && fd < FDBASE) { 70 sflags &= ~SHF_ACCMODE; 71 sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD 75 return shf_reopen(fd, sflags, shf); 80 shf_fdopen(fd, sflags, shf) 82 int sflags; [all...] |
| shf.h | 64 int sflags)); 65 struct shf *shf_fdopen ARGS((int fd, int sflags, struct shf *shf)); 66 struct shf *shf_reopen ARGS((int fd, int sflags, struct shf *shf)); 67 struct shf *shf_sopen ARGS((char *buf, int bsize, int sflags,
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| isearch.c | 85 cxt->sflags = flags; 212 cxt->sflags |= SF_REVERSE; 353 cxt->sflags |= SF_FAILED; 395 cxt->sflags |= SF_CHGKMAP; 439 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -1 : -2; 441 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -2 : -1; 456 if (cxt->sflags & SF_CHGKMAP) 459 cxt->sflags &= ~SF_CHGKMAP; 573 rl_display_search (cxt->search_string, cxt->sflags, -1); 579 else if ((cxt->sflags & SF_REVERSE) && cxt->sline_index >= 0 [all...] |
| search.c | 125 int ret, old, sflags; local 141 sflags = 0; /* Non-anchored search */ 144 sflags |= ANCHORED_SEARCH; 147 ret = _hs_history_patsearch (s, dir, sflags); 230 cxt->sflags |= SF_REVERSE; /* not strictly needed */ 233 cxt->sflags |= SF_PATTERN; 401 return (noninc_dosearch (noninc_search_string, cxt->direction, cxt->sflags&SF_PATTERN));
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| isearch.c | 85 cxt->sflags = flags; 212 cxt->sflags |= SF_REVERSE; 353 cxt->sflags |= SF_FAILED; 395 cxt->sflags |= SF_CHGKMAP; 439 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -1 : -2; 441 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -2 : -1; 456 if (cxt->sflags & SF_CHGKMAP) 459 cxt->sflags &= ~SF_CHGKMAP; 573 rl_display_search (cxt->search_string, cxt->sflags, -1); 579 else if ((cxt->sflags & SF_REVERSE) && cxt->sline_index >= 0 [all...] |
| search.c | 125 int ret, old, sflags; local 141 sflags = 0; /* Non-anchored search */ 144 sflags |= ANCHORED_SEARCH; 147 ret = _hs_history_patsearch (s, dir, sflags); 230 cxt->sflags |= SF_REVERSE; /* not strictly needed */ 233 cxt->sflags |= SF_PATTERN; 401 return (noninc_dosearch (noninc_search_string, cxt->direction, cxt->sflags&SF_PATTERN));
|
| /src/sys/rump/kern/lib/libsys_sunos/ |
| rump_sunos_compat.c | 193 int sflags, flags; local 195 sflags = SCARG(uap, flags); 196 flags = (sflags & (0x8 | 0x4 | 0x3)); /* nonblock/append/rw */ 197 flags |= (sflags & 0x10) ? O_SYNC : 0; 198 flags |= (sflags & 0x40) ? O_DSYNC : 0; 199 flags |= (sflags & 0x8000) ? O_RSYNC : 0; 200 flags |= (sflags & 0x80) ? O_NONBLOCK : 0; 201 flags |= (sflags & 0x100) ? O_CREAT : 0; 202 flags |= (sflags & 0x200) ? O_TRUNC : 0; 203 flags |= (sflags & 0x400) ? O_EXCL : 0 [all...] |
| /src/sys/arch/x86/include/ |
| mpconfig.h | 69 int sflags; /* other, software flags (see below) */ member in struct:mp_intr_map
|
| /src/libexec/httpd/lua/ |
| optparse.lua | 90 local sflags = {} 101 sflags[#sflags+1] = flag .. sflagend 103 return table.concat(sflags, ', ')
|
| /src/crypto/external/bsd/netpgp/dist/bindings/lua/ |
| optparse.lua | 90 local sflags = {} 101 sflags[#sflags+1] = flag .. sflagend 103 return table.concat(sflags, ', ')
|
| /src/crypto/external/bsd/netpgp/dist/src/hkpclient/ |
| optparse.lua | 90 local sflags = {} 101 sflags[#sflags+1] = flag .. sflagend 103 return table.concat(sflags, ', ')
|
| /src/external/bsd/pcc/dist/pcc/arch/pdp10/ |
| code.c | 97 sp[i]->sflags |= STNODE; 107 sp[i]->sflags |= STNODE;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| call-rt-st.c | 558 struct bit_flags_short_t *sflags; local 585 sflags = (struct bit_flags_short_t *)malloc(sizeof(struct bit_flags_short_t)); 601 init_bit_flags_short(sflags, (unsigned)1, (unsigned)0, (unsigned)1, 619 print_bit_flags_short(*sflags);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| call-rt-st.c | 558 struct bit_flags_short_t *sflags; local 585 sflags = (struct bit_flags_short_t *)malloc(sizeof(struct bit_flags_short_t)); 601 init_bit_flags_short(sflags, (unsigned)1, (unsigned)0, (unsigned)1, 619 print_bit_flags_short(*sflags);
|
| /src/sys/rump/kern/lib/libsys_cygwin/ |
| rump_cygwin_compat.c | 151 int sflags, flags; local 153 sflags = SCARG(uap, flags); 154 flags = sflags & (3 | O_APPEND | O_ASYNC | O_CREAT | O_TRUNC | O_EXCL);
|
| /src/lib/libc/regex/ |
| engine.c | 117 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft, int sflags); 128 /* sflags */ 889 int sflags; local 897 sflags = 0; 902 st = step(m->g, startst, stopst, st, NOTHING, st, sflags); 919 sflags = 0; 944 sflags |= SBOS; 949 sflags |= SEOS; 956 sflags); 970 st = step(m->g, startst, stopst, st, flagch, st, sflags); [all...] |
| /src/usr.sbin/mtree/ |
| create.c | 338 u_long sflags = 0; local 385 sflags = FLAGS2INDEX(p->fts_statp->st_flags); 386 if (sflags < MTREE_MAXFLAGS && ++f[sflags] > maxflags) { 388 maxflags = f[sflags];
|
| /src/external/bsd/pcc/dist/pcc/arch/i386/ |
| local.c | 122 sp->sflags = sp->slevel = 0; 185 p->n_sp->sflags |= SSTDCALL; 187 sp->sflags = p->n_sp->sflags & SSTDCALL; 250 if ((p->n_sp->sflags & SMASK) == SSTRING) 251 p->n_sp->sflags |= SASG; 433 if (q->sflags & STLS) { 462 if (q->sflags & STLS) { 469 if (q->sflags & SDLLINDIRECT) 858 sp->sflags = 0 [all...] |
| /src/sys/miscfs/fifofs/ |
| fifo_vnops.c | 258 int error, sflags; local 271 sflags = (ap->a_ioflag & IO_NDELAY) ? MSG_NBIO : 0; 272 error = (*rso->so_receive)(rso, NULL, uio, NULL, NULL, &sflags); 301 int error, sflags; local 309 sflags = (ap->a_ioflag & IO_NDELAY) ? MSG_NBIO : 0; 310 error = (*wso->so_send)(wso, NULL, ap->a_uio, 0, NULL, sflags, curlwp);
|
| /src/sys/kern/ |
| vfs_lookup.c | 2266 namei_simple_convert_flags(namei_simple_flags_t sflags) 2269 if (sflags == NSM_NOFOLLOW_NOEMULROOT) 2271 if (sflags == NSM_NOFOLLOW_TRYEMULROOT) 2273 if (sflags == NSM_FOLLOW_NOEMULROOT) 2275 if (sflags == NSM_FOLLOW_TRYEMULROOT) 2277 panic("namei_simple_convert_flags: bogus sflags\n"); 2282 namei_simple_kernel(const char *path, namei_simple_flags_t sflags, 2286 return nameiat_simple_kernel(NULL, path, sflags, vp_ret); 2291 namei_simple_flags_t sflags, struct vnode **vp_ret) 2296 NDINIT(&nd, LOOKUP, namei_simple_convert_flags(sflags), pb) [all...] |
| /src/external/bsd/pcc/dist/pcc/arch/amd64/ |
| local.c | 101 sp->sflags = sp->slevel = 0; 120 if (p->n_sp->sflags & SBEENHERE) 131 sp->sflags |= SBEENHERE; 332 if (q->sflags & STLS) { 347 if (q->sflags & STLS) { 575 sps.sflags = sps.sclass = 0; 625 sp->sflags = 0; 891 sp->sflags |= STLS;
|
| /src/external/bsd/pcc/dist/pcc/arch/hppa/ |
| code.c | 165 sp->sflags |= STNODE; 174 sp->sflags |= STNODE;
|
| /src/external/bsd/pcc/dist/pcc/arch/sparc64/ |
| code.c | 96 sym->sflags |= STNODE; 110 sym->sflags |= STNODE;
|
| /src/sbin/amrctl/ |
| amrctl.c | 587 int bflags = 0, fflags = 0, sflags = 0; local 628 sflags++; 658 if (sflags) {
|
| /src/external/bsd/pcc/dist/pcc/arch/i86/ |
| code.c | 139 cftnsp->sflags |= SSTDCALL; 233 sp2->sflags |= STNODE; 240 if (cftnsp->sflags & SSTDCALL) {
|