Home
last modified time | relevance | path

Searched refs:nextc (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Desclex.c299 int nextc; in yylex() local
447 if ((nextc = getc(Fp)) == EOF) in yylex()
449 else if (nextc == '*') { in yylex()
467 (void) ungetc(nextc, Fp); in yylex()
502 if ((nextc = getc(Fp)) == '&') in yylex()
505 (void) ungetc(nextc, Fp); in yylex()
514 if ((nextc = getc(Fp)) == '|') in yylex()
517 (void) ungetc(nextc, Fp); in yylex()
526 if ((nextc = getc(Fp)) == '=') in yylex()
529 (void) ungetc(nextc, Fp); in yylex()
[all …]
/illumos-gate/usr/src/cmd/projects/
H A Dprojects.c202 char *nextc; in print_projent() local
233 nextc = projent->pj_attr; in print_projent()
234 if (nextc == NULL) { in print_projent()
238 nextsemi = strchr(nextc, ';'); in print_projent()
241 (void) fprintf(stdout, "%s\n", nextc); in print_projent()
244 nextc = nextsemi + 1; in print_projent()
245 nextsemi = strchr(nextc, ';'); in print_projent()
248 (void) fprintf(stdout, "\t %s\n", nextc); in print_projent()
/illumos-gate/usr/src/ucbcmd/tr/
H A Dtr.c142 (void)nextc(s); in next()
143 s->max = nextc(s); in next()
154 return(s->last = nextc(s)); in next()
158 nextc(struct string *s) in nextc() function
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dboot_plat.c377 char nextc; in is_netdev() local
379 nextc = options[SEARCHSTRLEN]; in is_netdev()
380 if ((nextc == ',') || (nextc == 0)) in is_netdev()
/illumos-gate/usr/src/cmd/captoinfo/
H A Dotermcap.c405 nextc: in tdecode()
412 goto nextc; in tdecode()
/illumos-gate/usr/src/ucblib/libtermcap/
H A Dtermcap.c363 nextc: in tdecode()
370 goto nextc; in tdecode()
/illumos-gate/usr/src/cmd/tip/
H A Dremcap.c419 nextc: in tdecode()
426 goto nextc; in tdecode()
/illumos-gate/usr/src/tools/cscope-fast/
H A Dfind.c1076 char *cp, nextc = '\0'; in putsource() local
1086 while (*cp != '\n' || nextc != '\n') { in putsource()
1087 nextc = *cp; in putsource()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dlex.c2470 int nextc; member
2511 if(ap->nextc) in alias_exceptf()
2517 *ap->buf = ap->nextc; in alias_exceptf()
2518 ap->nextc = 0; in alias_exceptf()
2546 if((ap->nextc=fcget())==0) in setupalias()
2547 ap->nextc = ' '; in setupalias()
2550 ap->nextc = 0; in setupalias()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk2.c729 nextc: in xprintf()
857 goto nextc; in xprintf()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_auth.c1513 struct auth_cache_clnt *nextc; in exi_cache_trim() local
1589 for (c = avl_first(tree); c != NULL; c = nextc) { in exi_cache_trim()
1590 nextc = AVL_NEXT(tree, c); in exi_cache_trim()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/
H A Dvi.c1774 int nextc; in mvcursor() local
1781 nextc = virtual[tcur_virt]; in mvcursor()
1782 count = strchr(paren_chars,nextc)-paren_chars; in mvcursor()
1796 else if(virtual[tcur_virt]==nextc) in mvcursor()
/illumos-gate/usr/src/lib/libtecla/common/
H A Dgetline.c4163 char nextc = cptr[1]; in gl_print_string() local
4164 if(gl_print_char(gl, *cptr, nextc ? nextc : pad)) in gl_print_string()