HomeSort by relevance Sort by last modified time
    Searched refs:runp (Results 1 - 18 of 18) sorted by null

  /external/elfutils/0.153/libasm/
asm_newsubscn.c 42 AsmScn_t *runp; local
51 runp = asmscn->subsection_id == 0 ? asmscn : asmscn->data.up;
54 if (runp->subsection_id == nr)
56 return runp;
58 if (runp->subnext == NULL || runp->subnext->subsection_id > nr)
61 runp = runp->subnext;
69 newp->ctx = runp->ctx;
75 newp->type = runp->type
    [all...]
asm_end.c 184 void *runp = NULL; local
189 while ((sym = asm_symbol_tab_iterate (&ctx->symbol_tab, &runp)) != NULL)
313 AsmScnGrp_t *runp = ctx->groups->next; local
320 scn = runp->scn;
334 data->d_size = elf32_fsize (ELF_T_WORD, runp->nmembers + 1,
344 *grpdata++ = runp->flags;
346 if (runp->members != NULL)
348 AsmScn_t *member = runp->members->data.main.next_in_group;
360 != runp->members->data.main.next_in_group);
364 shdr->sh_name = ebl_strtaboffset (runp->strent)
568 void *runp = NULL; local
    [all...]
  /external/elfutils/0.153/libelf/
elf32_offscn.c 80 Elf_ScnList *runp = &elf->state.ELFW(elf,LIBELFBITS).scns; local
84 if (runp->cnt > 0
85 && unlikely (runp->data[0].shdr.ELFW(e,LIBELFBITS) == NULL)
86 && unlikely (elfw2(LIBELFBITS,getshdr) (&runp->data[0]) == NULL))
96 for (unsigned int i = 0; i < runp->cnt; ++i)
97 if (runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_offset == offset)
99 result = &runp->data[i];
104 if (runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_size != 0)
108 runp = runp->next
    [all...]
elf_getscn.c 81 Elf_ScnList *runp = (elf->class == ELFCLASS32 local
87 if (idx < runp->max)
89 if (idx < runp->cnt)
90 result = &runp->data[idx];
96 idx -= runp->max;
98 runp = runp->next;
99 if (runp == NULL)
elf_strptr.c 82 Elf_ScnList *runp = (elf->class == ELFCLASS32 local
88 if (idx < runp->max)
90 if (idx < runp->cnt)
91 strscn = &runp->data[idx];
100 idx -= runp->max;
102 runp = runp->next;
103 if (runp == NULL)
elf_end.c 169 Elf_Data_List *runp; local
190 runp = scn->data_list.next;
191 while (runp != NULL)
193 Elf_Data_List *oldp = runp;
194 runp = runp->next;
elf_getdata.c 388 Elf_Data_List *runp; local
403 runp = &scn->data_list;
408 if (runp == NULL)
414 if (&runp->data.d == data)
418 runp = runp->next;
422 result = runp->next ? &runp->next->data.d : NULL;
elf_begin.c 704 char *runp; local
730 runp = newp;
733 runp = (char *) memchr (runp, '/', newp + len - runp);
734 if (runp == NULL)
739 *runp = '\0';
742 runp += 2;
746 if (runp >= newp + len)
    [all...]
  /external/elfutils/0.153/libcpu/
i386_parse.y 392 struct bitvalue *runp = $1;
393 while (runp->next != NULL)
394 runp = runp->next;
395 runp->next = $3;
407 struct bitvalue *runp = $1;
408 while (runp->next != NULL)
409 runp = runp->next;
410 runp->next = $2
    [all...]
  /external/e2fsprogs/intl/
finddomain.c 180 struct loaded_l10nfile *runp = _nl_loaded_domains; local
182 while (runp != NULL)
184 struct loaded_l10nfile *here = runp;
185 if (runp->data != NULL)
186 _nl_unload_domain ((struct loaded_domain *) runp->data);
187 runp = runp->next;
  /external/elfutils/0.153/src/
ldscript.y 562 struct output_rule *runp;
564 for (runp = newp->output_rules; runp != NULL; runp = runp->next)
565 if (runp->tag == output_section)
566 runp->val.section.ignored = true;
587 struct filename_list *runp = listp;
590 runp->as_needed = true;
591 runp = runp->next
    [all...]
ldgeneric.c 805 struct scninfo *runp; local
807 for (runp = fileinfo->groups; runp != NULL; runp = runp->next)
808 if (!runp->used)
814 data = elf_getdata (runp->scn, NULL);
821 assert (elf_getdata (runp->scn, data) == NULL);
831 return runp;
1036 struct scninfo *runp = queued->last; local
1683 struct filename_list *runp; local
2262 struct usedfiles *runp = ld_state.archives; local
2751 struct symbol *runp = ld_state.from_dso; local
2790 struct symbol *runp = ld_state.common_syms; local
2832 struct scninfo *runp; local
3197 struct scninfo *runp; local
3320 struct member *runp; local
4439 struct scninfo *runp; local
5436 struct usedfiles *runp; local
5511 struct symbol *runp; local
5980 struct usedfiles *runp; local
6674 struct usedfiles *runp = ld_state.dsofiles->next; local
    [all...]
ld.c 438 struct scninfo *runp = h->last; local
444 COUNT_RELOCATIONS (&ld_state, runp);
446 ld_state.relsize_total += runp->relsize;
448 while ((runp = runp->next) != h->last);
917 struct usedfiles *runp; local
934 runp = first = ld_state.needed->next;
938 struct usedfiles *next = runp->next;
941 err = FILE_PROCESS (-1, runp, &ld_state, &ignore);
946 runp = next
1088 struct file_list *runp = input_file_list; local
1240 struct scninfo *runp; local
    [all...]
i386_ld.c 71 struct scninfo *runp; local
76 runp = firstp;
87 struct usedfiles *file = runp->fileinfo;
88 XElf_Shdr *shdr = &SCNINFO_SHDR (runp->shdr);
105 inxndxdata = runp->fileinfo->xndxdata;
186 runp = runp->next;
188 while (runp != firstp);
750 struct scninfo *runp = first; local
753 XElf_Shdr *rshdr = &SCNINFO_SHDR (runp->shdr)
    [all...]
objdump.c 470 struct section_list *runp = section_list; local
474 if (runp->is_name)
476 if (strcmp (runp->name,
482 if (runp->scnndx == scnndx)
486 runp = runp->next;
488 while (runp != NULL);
elflint.c 2758 struct version_namelist *runp = version_namelist; local
3119 struct version_namelist *runp = version_namelist; local
3898 struct version_namelist *runp = version_namelist->next; local
    [all...]
readelf.c 4668 Dwarf_Arange *runp = dwarf_onearange (aranges, n); local
    [all...]
  /external/elfutils/0.153/lib/
dynamicsizehash.c 137 __typeof__ (htab->first) runp;
176 runp = first = first->next;
178 insert_entry_2 (htab, runp->hashval,
179 lookup (htab, runp->hashval, runp->data), runp->data);
180 while ((runp = runp->next) != first);

Completed in 766 milliseconds