Home | History | Annotate | Download | only in bfd

Lines Matching defs:indexentry

893 /* We keep an array of indexentry structures to record where in the
897 struct indexentry
908 /* Compare two indexentry structures. This is called via qsort. */
913 const struct indexentry *contestantA = (const struct indexentry *) a;
914 const struct indexentry *contestantB = (const struct indexentry *) b;
937 struct indexentry *indextable;
943 struct indexentry *cached_indexentry;
969 struct indexentry *indexentry;
1188 amt *= sizeof (struct indexentry);
1189 info->indextable = (struct indexentry *) bfd_malloc (amt);
1316 qsort (info->indextable, (size_t) i, sizeof (struct indexentry),
1330 indexentry = info->cached_indexentry;
1341 indexentry = NULL;
1351 indexentry = &info->indextable[mid];
1361 if (indexentry == NULL)
1364 stab = indexentry->stab + STABSIZE;
1365 file_name = indexentry->file_name;
1368 directory_name = indexentry->directory_name;
1369 str = indexentry->str;
1373 for (; stab < (indexentry+1)->stab; stab += STABSIZE)
1401 val = ((indexentry->function_name ? indexentry->val : 0)
1415 info->cached_indexentry = indexentry;
1465 if (indexentry->function_name != NULL)
1472 s = strchr (indexentry->function_name, ':');
1476 *pfnname = indexentry->function_name;