Lines Matching defs:defn
172 struct string_list *defn;
177 (defn = sym->defn) && defn->tag == SYM_NORMAL &&
178 strcmp(defn->string, "}") == 0 &&
179 (defn = defn->next) && defn->tag == SYM_NORMAL &&
180 strcmp(defn->string, "UNKNOWN") == 0 &&
181 (defn = defn->next) && defn->tag == SYM_NORMAL &&
182 strcmp(defn->string, "{") == 0);
186 struct string_list *defn, int is_extern,
200 if (defn) {
202 last_enum_expr = copy_list_range(defn, NULL);
211 defn = concat_list(mk_node("("),
217 defn = mk_node(buf);
236 equal_list(sym->defn, defn)) {
280 sym->defn = defn;
301 print_list(debugfile, defn);
310 struct string_list *defn, int is_extern)
312 return __add_symbol(name, type, defn, is_extern, 0);
316 struct string_list *defn, int is_extern)
318 return __add_symbol(name, type, defn, is_extern, 1);
459 struct string_list *defn = NULL;
481 def->next = defn;
482 defn = def;
486 defn, is_extern);
532 struct string_list *list = sym->defn;
845 print_list(dumpfile, sym->defn);