Home
last modified time | relevance | path

Searched refs:n_flags (Results 1 – 9 of 9) sorted by relevance

/titanic_50/usr/src/cmd/awk_xpg4/
H A Dawk3.c124 if (np->n_flags & FSPECIAL) { in strassign()
128 if (isastring(np->n_flags)) in strassign()
142 np->n_flags &= FSAVE; in strassign()
148 np->n_flags |= flags; in strassign()
166 if (np->n_flags & FSPECIAL) { in nassign()
168 if (isastring(np->n_flags)) in nassign()
174 np->n_flags = FALLOC|FSTRING|FSPECIAL; in nassign()
197 if (isastring(np->n_flags)) in nassign()
199 if (isstring(value->n_flags)) { in nassign()
201 if (value->n_flags&FALLOC || value->n_string != _null) { in nassign()
[all …]
H A Dawk2.c89 if (varNR->n_flags & FINT) in nextrecord()
93 if (varFNR->n_flags & FINT) in nextrecord()
208 if (varFNR->n_flags & FINT) in newfile()
500 ofs = wcstombsdup((isstring(varOFS->n_flags)) ? in s_print()
508 if (np->n_flags & FINT) in s_print()
510 else if (isstring(np->n_flags)) in s_print()
519 (void) fputs(mbunconvert(isstring(varORS->n_flags) ? in s_print()
570 if (isleaf(np->n_flags)) { in f_getline()
702 if (isleaf(fnp->n_flags) && fnp->n_type == PARM) in xprintf()
704 if (isstring(fnp->n_flags)) { in xprintf()
[all …]
H A Dawk1.c268 constundef->n_flags = FSTRING|FVINT; in awkvarinit()
293 np->n_flags |= FSPECIAL; in awkvarinit()
822 np->n_flags = FSTRING; in lexid()
H A Dawk.h104 ushort_t n_flags; /* Node flags, type */ member
H A Dawk.y542 if (np!=NNULL && !isleaf(np->n_flags)
H A Dawk4.c387 if (isstring(tnp->n_flags) && tnp->n_string==_null) in f_split()
/titanic_50/usr/src/uts/sun4v/sys/
H A Dn2rng.h157 #define n2rng_setcontrol(n2rng) ((n2rng)->n_flags |= N2RNG_CONTROL)
158 #define n2rng_clrcontrol(n2rng) ((n2rng)->n_flags &= ~N2RNG_CONTROL)
159 #define n2rng_iscontrol(n2rng) ((n2rng)->n_flags & N2RNG_CONTROL)
161 #define n2rng_setfailed(n2rng) ((n2rng)->n_flags |= N2RNG_FAILED)
162 #define n2rng_clrfailed(n2rng) ((n2rng)->n_flags &= ~N2RNG_FAILED)
163 #define n2rng_isfailed(n2rng) ((n2rng)->n_flags & N2RNG_FAILED)
165 #define n2rng_setconfigured(n2rng) ((n2rng)->n_flags |= N2RNG_CONFIGURED)
166 #define n2rng_clrconfigured(n2rng) ((n2rng)->n_flags &= ~N2RNG_CONFIGURED)
167 #define n2rng_isconfigured(n2rng) ((n2rng)->n_flags & N2RNG_CONFIGURED)
169 #define n2rng_setinitialized(n2rng) ((n2rng)->n_flags |= N2RNG_INITIALIZED)
[all …]
/titanic_50/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.rwhod.c131 uint_t n_flags; /* should forward?, interface flags */ member
454 np->n_flags & IFF_MULTICAST) { in onalrm()
591 np->n_flags = ifreq.ifr_flags; in configure()
601 (np->n_flags & IFF_UP) && in configure()
602 (np->n_flags & IFF_MULTICAST) && in configure()
603 !(np->n_flags & IFF_LOOPBACK)) { in configure()
614 if (!(np->n_flags & IFF_POINTOPOINT) && in configure()
615 !(np2->n_flags & IFF_POINTOPOINT) && in configure()
646 if ((np->n_flags & IFF_UP) == 0 || in configure()
647 (np->n_flags & (IFF_BROADCAST|IFF_POINTOPOINT)) == 0) { in configure()
[all …]
/titanic_50/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng.c205 n2rng->n_flags = 0; in n2rng_attach()