Home | History | Annotate | Download | only in bfd

Lines Matching refs:indexentry

861 /* We keep an array of indexentry structures to record where in the
865 struct indexentry
875 /* Compare two indexentry structures. This is called via qsort. */
880 const struct indexentry *contestantA = (const struct indexentry *) a;
881 const struct indexentry *contestantB = (const struct indexentry *) b;
905 struct indexentry *indextable;
911 struct indexentry *cached_indexentry;
937 struct indexentry *indexentry;
1140 amt *= sizeof (struct indexentry);
1141 info->indextable = (struct indexentry *) bfd_alloc (abfd, amt);
1250 qsort (info->indextable, (size_t) i, sizeof (struct indexentry),
1266 indexentry = info->cached_indexentry;
1277 indexentry = NULL;
1287 indexentry = &info->indextable[mid];
1297 if (indexentry == NULL)
1300 stab = indexentry->stab + STABSIZE;
1301 file_name = indexentry->file_name;
1304 directory_name = indexentry->directory_name;
1305 str = indexentry->str;
1309 for (; stab < (indexentry+1)->stab; stab += STABSIZE)
1334 val = ((indexentry->function_name ? indexentry->val : 0)
1348 info->cached_indexentry = indexentry;
1398 if (indexentry->function_name != NULL)
1405 s = strchr (indexentry->function_name, ':');
1409 *pfnname = indexentry->function_name;