Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/abi/spectrans/parser/
H A Dfrontend.c53 xlator_keyword_t *keywordlist; variable
64 keywordlist = xlator_init(T_info); in frontend()
65 if (keywordlist == NULL) { in frontend()
72 while (keywordlist[i].key != NULL) { in frontend()
73 errlog(STATUS, "\t%s\n", keywordlist[i].key); in frontend()
219 ki = interesting_keyword(keywordlist, key); in read_spec()
331 interesting_keyword(xlator_keyword_t *keywordlist, const char *key) in interesting_keyword() argument
345 while (keywordlist[i].key != NULL) { in interesting_keyword()
346 if (strcasecmp(keywordlist[i].key, key) == 0) in interesting_keyword()
347 return (keywordlist[i].token); in interesting_keyword()
H A Dparser.h101 extern xlator_keyword_t *keywordlist;
H A Dextends.c215 ki = interesting_keyword(keywordlist, key); in do_extends()