Lines Matching defs:keys
448 /* hdestroy() frees comparsion keys for non glibc */
465 * @param keys
466 * Keys from a rule line to map
468 * The length of the keys array
470 * The line number the keys were extracted from
474 static rule_map *rule_map_new(kvp keys[], unsigned int num_of_keys, int lineno) {
488 /* For all the keys in a rule line*/
490 k = &(keys[i]);
513 log_info("Validating keys!\n");
546 log_error("Strange, no keys found, input file corrupt perhaps?\n");
558 k = &(keys[i]);
803 /* hdestroy() frees comparsion keys for non glibc */
873 kvp keys[KVP_NUM_OF_RULES];
894 memset(keys, 0, sizeof(kvp) * KVP_NUM_OF_RULES);
903 keys[token_cnt].key = strdup(name);
904 if (!keys[token_cnt].key)
907 keys[token_cnt].value = strdup(value);
908 if (!keys[token_cnt].value)
919 rule_map *r = rule_map_new(keys, token_cnt, lineno);