Home
last modified time | relevance | path

Searched refs:keywordlist (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/cmd/abi/spectrans/parser/
H A Dfrontend.c55 xlator_keyword_t *keywordlist; variable
66 keywordlist = xlator_init(T_info); in frontend()
67 if (keywordlist == NULL) { in frontend()
74 while (keywordlist[i].key != NULL) { in frontend()
75 errlog(STATUS, "\t%s\n", keywordlist[i].key); in frontend()
221 ki = interesting_keyword(keywordlist, key); in read_spec()
333 interesting_keyword(xlator_keyword_t *keywordlist, const char *key) in interesting_keyword() argument
347 while (keywordlist[i].key != NULL) { in interesting_keyword()
348 if (strcasecmp(keywordlist[i].key, key) == 0) in interesting_keyword()
349 return (keywordlist[i].token); in interesting_keyword()
H A Dparser.h103 extern xlator_keyword_t *keywordlist;
H A Dextends.c217 ki = interesting_keyword(keywordlist, key); in do_extends()