Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_token.c200 int toksize = toksize_in; local
202 if ((toksize-=1) < 0)
208 toksize++;
212 if ((seqsize = der_read_length(&buf, &toksize)) < 0)
215 if (seqsize != toksize)
218 if ((toksize-=1) < 0)
223 if ((toksize-=1) < 0)
227 if ((toksize-=toid.length) < 0)
236 if ((toksize-=2) < 0)
244 *body_size = toksize;
/titanic_41/usr/src/uts/common/gssapi/mechs/dummy/
H A Ddmech.c76 int toksize);
510 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) in g_verify_token_header() argument
515 int toksize;
522 if ((toksize -= 1) < 0)
527 if ((seqsize = der_read_length(&buf, &toksize)) < 0)
530 if (seqsize != toksize)
533 if ((toksize -= 1) < 0)
538 if ((toksize -= 1) < 0)
542 if ((toksize -= toid.length) < 0)
555 if ((toksize -= 2) < 0)
[all …]
/titanic_41/usr/src/lib/gss_mechs/mech_dummy/mech/
H A Ddmech.c109 int toksize);
1352 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) in g_verify_token_header() argument
1357 int toksize;
1364 if ((toksize -= 1) < 0)
1369 if ((seqsize = der_read_length(&buf, &toksize)) < 0)
1372 if (seqsize != toksize)
1375 if ((toksize -= 1) < 0)
1380 if ((toksize -= 1) < 0)
1384 if ((toksize -= toid.length) < 0)
1397 if ((toksize -= 2) < 0)
[all …]
/titanic_41/usr/src/cmd/sgs/m4/common/
H A Dm4.c158 int tlim = toksize; in main()
167 toksize); in main()
383 toksize = atoi(&arg[2]); in getflags()
384 if (toksize <= 0) { in getflags()
385 toksize = DEF_TOKSIZE; in getflags()
460 token = xcalloc(toksize+1, sizeof (wchar_t)); in initalloc()
465 toklm = &token[toksize]; in initalloc()
H A Dm4ext.c36 int toksize = DEF_TOKSIZE; /* biggest word ([a-z_][a-z0-9_]*) */ variable
H A Dm4.h145 extern int toksize;
/titanic_41/usr/src/uts/common/fs/sockfs/
H A Dnl7c.c638 char *toksize = "logd_file_size"; in ncalogdconf_read() local
690 toksizep = toksize; in ncalogdconf_read()
727 tok = toksize; in ncalogdconf_read()
751 } else if (tok == toksize) { in ncalogdconf_read()
769 } else if (tok == toksize) { in ncalogdconf_read()
/titanic_41/usr/src/cmd/sgs/yacc/common/
H A Dy2.c61 static int toksize = NAMESIZE; variable
190 tokname = (wchar_t *)malloc(sizeof (wchar_t) * toksize);
1133 if (++i >= toksize) in gettok()
1164 if (++i >= toksize) in gettok()
1168 if (++i >= toksize) in gettok()
1211 if (++i >= toksize) in gettok()
1915 toksize += NAMESIZE; in exp_tokname()
1917 realloc((char *)tokname, sizeof (wchar_t) * toksize); in exp_tokname()
/titanic_41/usr/src/lib/gss_mechs/mech_spnego/mech/
H A Dspnego_mech.c3884 unsigned int toksize) in g_verify_token_header() argument
3892 if (toksize-- < 1) in g_verify_token_header()
3898 if ((seqsize = gssint_get_der_length(&buf, toksize, &bytes)) < 0) in g_verify_token_header()
3901 if ((seqsize + bytes) != toksize) in g_verify_token_header()
3904 if (toksize-- < 1) in g_verify_token_header()
3911 if (toksize-- < 1) in g_verify_token_header()
3916 if (toksize < toid.length) in g_verify_token_header()
3919 toksize -= toid.length; in g_verify_token_header()
3931 if (toksize < 2) in g_verify_token_header()
3934 toksize -= 2; in g_verify_token_header()
[all …]