Lines Matching refs:tmp
245 list_element *tmp; in list_free() local
249 tmp = cursor; in list_free()
252 list->freefn(tmp); in list_free()
747 char *tmp; in rule_map_new() local
754 tmp = realloc(new_map->key, l); in rule_map_new()
755 if (!tmp) in rule_map_new()
759 memset(tmp, 0, l); in rule_map_new()
761 new_map->key = tmp; in rule_map_new()
810 file_info *tmp; in init() local
815 tmp = malloc(sizeof(*tmp)); in init()
816 if (!tmp) { in init()
820 tmp->name = "stdin"; in init()
821 tmp->file = stdin; in init()
822 list_append(&input_file_list, &(tmp->listify)); in init()
826 tmp = list_entry(cursor, typeof(*tmp), listify); in init()
828 log_info("Opening input file: \"%s\"\n", tmp->name); in init()
829 tmp->file = fopen(tmp->name, "r"); in init()
830 if (!tmp->file) { in init()
831 log_error("Could not open file: %s error: %s\n", tmp->name, in init()
894 tmp = list_entry(cursor, typeof(*tmp), listify); in init()
895 log_info("Input file set to: \"%s\"\n", tmp->name); in init()
973 hash_entry *tmp; in rule_add() local
989 tmp = (hash_entry *)f->data; in rule_add()
990 cmp = rule_map_cmp(rm, tmp->r); in rule_add()
993 rm->filename, tmp->r->lineno, rm->lineno, in rule_add()