Home | History | Annotate | Download | only in src

Lines Matching defs:queued

910   struct scnhead *queued;
953 /* Find already queued sections. */
954 queued = ld_section_tab_find (&ld_state.section_tab, hval, &search);
955 if (queued != NULL)
977 scninfo->next = queued->last->next;
978 queued->last = queued->last->next = scninfo;
980 queued->flags = SH_FLAGS_COMBINE (queued->flags, shdr->sh_flags);
981 queued->align = MAX (queued->align, shdr->sh_addralign);
988 queued = (struct scnhead *) xcalloc (sizeof (struct scnhead), 1);
989 queued->kind = scn_normal;
990 queued->name = search.name;
991 queued->type = shdr->sh_type;
992 queued->flags = shdr->sh_flags;
993 queued->align = shdr->sh_addralign;
994 queued->entsize = shdr->sh_entsize;
995 queued->grp_signature = grpscn != NULL ? grpscn->symbols->name : NULL;
996 queued->segment_nr = ~0;
997 queued->last = scninfo->next = scninfo;
1000 ld_section_tab_insert (&ld_state.section_tab, hval, queued);
2719 struct scnhead *queued;
2721 queued = ld_state.allsections[ld_state.nallsections - 1];
2723 found->next = queued->last->next;
2724 queued->last = queued->last->next = found;
2729 if (queued->type != SCNINFO_SHDR (found->shdr).sh_type)
2731 queued->type = SHT_PROGBITS;
2732 if (queued->flags != SCNINFO_SHDR (found->shdr).sh_flags)
2733 queued->flags = ebl_sh_flags_combine (ld_state.ebl,
2734 queued->flags,
2738 queued->relsize += found->relsize;