• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:queued

967   struct scnhead *queued;  in add_section()  local
1011 queued = ld_section_tab_find (&ld_state.section_tab, hval, &search); in add_section()
1012 if (queued != NULL) in add_section()
1036 struct scninfo *runp = queued->last; in add_section()
1056 while (runp != queued->last); in add_section()
1063 scninfo->next = queued->last->next; in add_section()
1064 queued->last = queued->last->next = scninfo; in add_section()
1066 queued->flags = ebl_sh_flags_combine (ld_state.ebl, queued->flags, in add_section()
1068 queued->align = MAX (queued->align, shdr->sh_addralign); in add_section()
1075 queued = (struct scnhead *) xcalloc (sizeof (struct scnhead), 1); in add_section()
1076 queued->kind = scn_normal; in add_section()
1077 queued->name = search.name; in add_section()
1078 queued->type = shdr->sh_type; in add_section()
1079 queued->flags = shdr->sh_flags; in add_section()
1080 queued->align = shdr->sh_addralign; in add_section()
1081 queued->entsize = shdr->sh_entsize; in add_section()
1082 queued->grp_signature = grpscn != NULL ? grpscn->symbols->name : NULL; in add_section()
1083 queued->segment_nr = ~0; in add_section()
1084 queued->last = scninfo->next = scninfo; in add_section()
1090 ld_section_tab_insert (&ld_state.section_tab, hval, queued); in add_section()
2932 struct scnhead *queued; in match_section() local
2934 queued = ld_state.allsections[ld_state.nallsections - 1]; in match_section()
2936 found->next = queued->last->next; in match_section()
2937 queued->last = queued->last->next = found; in match_section()
2942 if (queued->type != SCNINFO_SHDR (found->shdr).sh_type) in match_section()
2944 queued->type = SHT_PROGBITS; in match_section()
2945 if (queued->flags != SCNINFO_SHDR (found->shdr).sh_flags) in match_section()
2948 queued->flags = ebl_sh_flags_combine (ld_state.ebl, in match_section()
2949 queued->flags, in match_section()
2954 queued->relsize += found->relsize; in match_section()