Home | History | Annotate | Download | only in src

Lines Matching refs:queued

969   struct scnhead *queued;
1012 /* Find already queued sections. */
1013 queued = ld_section_tab_find (&ld_state.section_tab, hval, &search);
1014 if (queued != NULL)
1038 struct scninfo *runp = queued->last;
1058 while (runp != queued->last);
1065 scninfo->next = queued->last->next;
1066 queued->last = queued->last->next = scninfo;
1068 queued->flags = ebl_sh_flags_combine (ld_state.ebl, queued->flags,
1070 queued->align = MAX (queued->align, shdr->sh_addralign);
1077 queued = (struct scnhead *) xcalloc (sizeof (struct scnhead), 1);
1078 queued->kind = scn_normal;
1079 queued->name = search.name;
1080 queued->type = shdr->sh_type;
1081 queued->flags = shdr->sh_flags;
1082 queued->align = shdr->sh_addralign;
1083 queued->entsize = shdr->sh_entsize;
1084 queued->grp_signature = grpscn != NULL ? grpscn->symbols->name : NULL;
1085 queued->segment_nr = ~0;
1086 queued->last = scninfo->next = scninfo;
1092 ld_section_tab_insert (&ld_state.section_tab, hval, queued);
2934 struct scnhead *queued;
2936 queued = ld_state.allsections[ld_state.nallsections - 1];
2938 found->next = queued->last->next;
2939 queued->last = queued->last->next = found;
2944 if (queued->type != SCNINFO_SHDR (found->shdr).sh_type)
2946 queued->type = SHT_PROGBITS;
2947 if (queued->flags != SCNINFO_SHDR (found->shdr).sh_flags)
2950 queued->flags = ebl_sh_flags_combine (ld_state.ebl,
2951 queued->flags,
2956 queued->relsize += found->relsize;