Lines Matching defs:keyword
50 * needs to be sorted by .keyword and any longer string like "device"
307 * Match leading keyword from a conf line and
314 char *keyword;
318 * Scan the config table for a matching keyword; since the table
319 * is sorted by keyword strings, a few optimizations can be done:
320 * first compare only the first byte of the keyword, skip any
325 keyword = LINEARG(0);
326 for (cip = conftab; cip->keyword; cip++) {
327 chr_diff = (int)(*cip->keyword - *keyword);
330 lineno, *cip->keyword, *line, chr_diff);
335 if (strcmp(keyword, cip->keyword) == 0) {
435 mesg(MEXIT, "unrecognized keyword \"%s\"\n",