Home
last modified time | relevance | path

Searched refs:comptr (Results 1 – 8 of 8) sorted by relevance

/titanic_44/usr/src/cmd/vgrind/
H A Dvfontedpr.c434 char *comptr; /* end of a comment delimiter */ in putScp() local
469 comptr = expmatch (s, l_combeg, dummy); in putScp()
475 if (comptr != NIL) in putScp()
476 if ((comptr < strptr || strptr == NIL) in putScp()
477 && (comptr < acmptr || acmptr == NIL) in putScp()
478 && (comptr < chrptr || chrptr == NIL) in putScp()
479 && (comptr < blksptr || blksptr == NIL) in putScp()
480 && (comptr < blkeptr || blkeptr == NIL)) { in putScp()
481 putKcp (s, comptr-1, FALSE); in putScp()
482 s = comptr; in putScp()
[all …]
/titanic_44/usr/src/cmd/nlsadmin/
H A Dnlsadmin.c125 char *comptr = NULL; /* set with -y comment (old) */ in main() local
161 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
168 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
175 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
181 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
188 || Quietflag || comptr || addrptr || rpcptr in main()
200 if ( flag || svcptr || Quietflag || comptr || idptr || netspec ) in main()
211 if ( (flag && (flag != ZZZFLAG)) || Quietflag || comptr in main()
217 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
224 if ( flag || svcptr || Quietflag || comptr || addrptr in main()
[all …]
/titanic_44/usr/src/cmd/sh/
H A Dfunc.c72 freeio(comptr(t)->comio); in freetree()
73 free_arg(comptr(t)->comarg); in freetree()
74 free_arg(comptr(t)->comset); in freetree()
255 if (comptr(t)->comset) { in prf()
256 prarg(comptr(t)->comset); in prf()
259 prarg(comptr(t)->comarg); in prf()
260 prio(comptr(t)->comio); in prf()
H A Dxec.c143 cmdhash = pathlook(com[0], 1, comptr(t)->comset);
146 setlist(comptr(t)->comset, 0);
361 setlist(comptr(t)->comset, N_EXPORT);
H A Dmode.h249 #define comptr(x) ((struct comnod *)x) macro
H A Dbltin.c284 else if (comptr(t)->comset == 0) in builtin()
/titanic_44/usr/src/lib/libshell/common/edit/
H A Dcompletion.c198 struct comnod *comptr; in ed_expand() local
221 comptr = (struct comnod*)stakalloc(sizeof(struct comnod)); in ed_expand()
237 comptr->comtyp = COMSCAN; in ed_expand()
238 comptr->comarg = ap; in ed_expand()
306 com = sh_argbuild(ep->sh,&narg,comptr,0); in ed_expand()
/titanic_44/usr/src/lib/libshell/common/sh/
H A Dargs.c699 char **sh_argbuild(Shell_t *shp,int *nargs, const struct comnod *comptr,int flag) in sh_argbuild() argument
705 register const struct comnod *ac = comptr; in sh_argbuild()