Searched defs:tok (Results 1 - 25 of 104) sorted by relevance

12345

/illumos-gate/usr/src/cmd/oawk/
H A Dtoken.c30 struct tok struct
33 } tok[] = { variable in typeref:struct:tok
124 else if (n < LASTTOKEN) printf("lex: %s\n", tok[n-257].tnm);
133 return (tok[n-257].tnm);
/illumos-gate/usr/src/cmd/sendmail/db/clib/
H A Dstrsep.c81 char *tok; local
85 for (tok = s;;) {
95 return (tok);
/illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/
H A Dstrtok.c60 char *tok; local
82 tok = s - 1;
84 tok = s;
101 return (tok);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dstrsep.c71 char *tok; local
75 for (tok = s; ; ) {
85 return (tok);
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrsep.c56 char *tok; local
60 for (tok = s;;) {
70 return (tok);
H A Dstrtok.c54 char *spanp, *tok; local
74 tok = s - 1;
90 return (tok);
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrsep.c65 char *tok; local
69 for (tok = s;;) {
79 return (tok);
/illumos-gate/usr/src/cmd/picl/plugins/sun4v/pri/
H A Dinit.c41 pri_devinit(uint64_t *tok) argument
47 if (pri_get(PRI_WAITGET, tok, &new_md_bufp, malloc, pri_free) ==
H A Dpriplugin.c248 uint64_t tok; local
265 tok = 0;
274 status = pri_devinit(&tok);
322 tok = 0;
/illumos-gate/usr/src/cmd/sgs/link_audit/common/
H A Denv.c37 char *tok; local
43 tok = strtok_r(envstr, token, &lasts);
44 while (tok) {
50 lp->l_libname = strdup(tok);
53 tok = strtok_r(NULL, token, &lasts);
/illumos-gate/usr/src/cmd/mandoc/
H A Dman_hash.c82 int tok; local
95 tok = y;
96 if (0 == strcmp(tmp, man_macronames[tok]))
97 return tok;
H A Dman.c87 roff_body_alloc(man, line, offs, man->last->tok);
113 if (man->last->tok != MAN_SH &&
114 man->last->tok != MAN_SS) {
163 int tok; local
181 tok = (i > 0 && i < 4) ? man_hash_find(mac) : TOKEN_NONE;
183 if (tok == TOKEN_NONE) {
223 man_breakscope(man, tok);
228 assert(man_macros[tok].fp);
229 (*man_macros[tok].fp)(man, tok, l
259 man_breakscope(struct roff_man *man, int tok) argument
[all...]
H A Dman_macro.c100 man_macros[n->tok].flags & MAN_SCOPED) {
104 man_macronames[n->tok]);
118 man_macros[n->tok].fp == blk_exp)
121 man_macronames[n->tok]);
153 rew_scope(struct roff_man *man, int tok) argument
160 if (tok == MAN_RS && n->child == NULL &&
161 (n->tok == MAN_P || n->tok == MAN_PP || n->tok == MAN_LP))
180 if (tok !
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A DMICwrap.c59 dh_token_desc tok; local
61 dh_mic_t mic = &tok.ver.dh_version_u.body.dh_token_body_desc_u.sign;
88 tok.ver.verno = cntx->proto_version;
89 tok.ver.dh_version_u.body.type = DH_MIC;
100 * non serialized tok and the context keys.
102 if ((*minor = __make_token(token, message, &tok, &keys))
129 dh_token_desc tok; local
131 dh_mic_t mic = &tok.ver.dh_version_u.body.dh_token_body_desc_u.sign;
154 /* Deserialize token into tok using messaget and keys */
156 &tok,
223 dh_token_desc tok; local
314 dh_token_desc tok; local
[all...]
/illumos-gate/usr/src/cmd/awk/
H A Dmaketab.c115 int i, n, tok; local
130 n = sscanf(buf, "%1c %s %s %d", &c, def, name, &tok);
134 if (tok < FIRSTTOKEN || tok > LASTTOKEN) {
136 tok, buf);
139 names[tok-FIRSTTOKEN] = malloc(strlen(name)+1);
140 strcpy(names[tok-FIRSTTOKEN], name);
141 printf("\t(uchar *) \"%s\",\t/* %d */\n", name, tok);
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dpkcs11_uri.c128 char *str2, *l1, *l2, *tok, *name; local
152 tok = strtok_r(str2, ";", &l1);
153 for (; tok != NULL; tok = strtok_r(NULL, ";", &l1)) {
154 /* "tok" is not empty so there will be something in "name". */
155 name = strtok_r(tok, "=", &l2);
/illumos-gate/usr/src/lib/libpp/common/
H A Dppcall.c36 * 0 returned if tok==0 and sym->mac->value to be copied to output by caller
41 ppcall(register struct ppsymbol* sym, int tok) argument
430 if (!tok && (sym->flags & SYM_NOEXPAND))
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dldaputf8.c142 char *tok; local
159 tok = LDAP_UTF8PREV(sp);
175 return tok;
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevpolicy.c161 char *tok; local
247 while (tok = strtok(NULL, "\n\t ")) {
248 if (parse_plcy_token(tok, dp)) {
/illumos-gate/usr/src/cmd/sgs/crle/common/
H A Dutil.c245 char *tok, *_arg; local
260 if ((tok = strtok_r(_arg, separate, &lasts)) != NULL) {
263 if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_RELATIVE)) == 0)
265 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_EXEC)) == 0)
267 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_DEPENDS)) == 0)
269 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_PRELOAD)) == 0)
271 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_SELF)) == 0)
273 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_WEAK)) == 0)
275 else if (strcmp(tok, MSG_ORIG(MSG_MOD_REL_ALL)) == 0)
277 else if (strcmp(tok, MSG_ORI
[all...]
/illumos-gate/usr/src/cmd/tsol/updatehome/
H A Dsetupfiles.c279 char *tok; local
293 if ((tok = strrchr(dir, '/')) == NULL) {
299 *tok = '\000'; /* drop last component, it's the target */
303 for (tok = dir; tok = strtok(tok, "/"); tok = NULL) {
306 (void) strcat(path, tok);
/illumos-gate/usr/src/lib/libwrap/
H A Dhosts_access.c204 char *tok; local
213 for (tok = strtok(list, sep); tok != 0; tok = strtok((char *) 0, sep)) {
214 if (STR_EQ(tok, "EXCEPT")) /* EXCEPT: give up */
216 if (match_fn(tok, request)) { /* YES: look for exceptions */
217 while ((tok = strtok((char *) 0, sep)) && STR_NE(tok, "EXCEPT"))
219 return (tok == 0 || list_match((char *) 0, request, match_fn) == 0);
227 static int server_match(tok, reques
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dexportent.c215 char *tok; local
227 while ((tok = strtok(lp, ",")) != NULL) {
229 if (strncmp(opt, tok, len) == 0) {
230 if (tok[len] == '=') {
231 return (&tok[len + 1]);
232 } else if (tok[len] == 0) {
/illumos-gate/usr/src/lib/abi/apptrace/common/
H A Dabienv.c58 char *tok; local
66 tok = strtok(envstr, comma);
67 while (tok != NULL) {
73 lp->l_libname = tok;
76 tok = strtok(NULL, comma);
84 char *tok; local
101 tok = strtok(envstr, comma);
102 while (tok != NULL) {
103 appendlist(list, listend, tok, 1);
104 tok
113 char *tok; local
[all...]
/illumos-gate/usr/src/cmd/cpc/common/
H A Dcaps.c157 char *text, *tok, *cp; local
232 for (cp = strtok_r(text, " ", &tok);
233 cp != NULL; cp = strtok_r(NULL, " ", &tok)) {

Completed in 1293 milliseconds

12345