Lines Matching full: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; in get_cinfo() local
318 * Scan the config table for a matching keyword; since the table in get_cinfo()
319 * is sorted by keyword strings, a few optimizations can be done: in get_cinfo()
320 * first compare only the first byte of the keyword, skip any in get_cinfo()
325 keyword = LINEARG(0); in get_cinfo()
326 for (cip = conftab; cip->keyword; cip++) { in get_cinfo()
327 chr_diff = (int)(*cip->keyword - *keyword); in get_cinfo()
330 lineno, *cip->keyword, *line, chr_diff); in get_cinfo()
335 if (strcmp(keyword, cip->keyword) == 0) { in get_cinfo()
435 mesg(MEXIT, "unrecognized keyword \"%s\"\n", in parse_conf_file()