Home | History | Annotate | Download | only in config

Lines Matching defs:isym

1186           obj_mach_o_indirect_sym *isym;
1209 isym = (obj_mach_o_indirect_sym *)
1214 isym->sym = sym;
1215 isym->sect = now_seg;
1216 isym->next = NULL;
1218 indirect_syms = isym;
1220 indirect_syms_tail->next = isym;
1221 indirect_syms_tail = isym;
1787 obj_mach_o_indirect_sym *isym;
1793 for (isym = indirect_syms; isym != NULL; isym = isym->next)
1795 if (isym->sect == sec)
1799 list = isym;
1801 list_tail->next = isym;
1802 list_tail = isym;
1833 for (isym = list, n = 0; isym != NULL; isym = isym->next, n++)
1835 sym = (bfd_mach_o_asymbol *)symbol_get_bfdsym (isym->sym);
1843 else if (S_IS_LOCAL (isym->sym) && ! lazy)
1850 else if (S_IS_EXTERNAL (isym->sym)
1852 || ! S_IS_DEFINED (isym->sym)