Home
last modified time | relevance | path

Searched refs:bfdsec (Results 1 – 4 of 4) sorted by relevance

/toolchain/binutils/binutils-2.27/bfd/
Dpef.c298 asection *bfdsec; in bfd_pef_make_bfd_section() local
301 bfdsec = bfd_make_section_anyway (abfd, name); in bfd_pef_make_bfd_section()
302 if (bfdsec == NULL) in bfd_pef_make_bfd_section()
305 bfdsec->vma = section->default_address + section->container_offset; in bfd_pef_make_bfd_section()
306 bfdsec->lma = section->default_address + section->container_offset; in bfd_pef_make_bfd_section()
307 bfdsec->size = section->container_length; in bfd_pef_make_bfd_section()
308 bfdsec->filepos = section->container_offset; in bfd_pef_make_bfd_section()
309 bfdsec->alignment_power = section->alignment; in bfd_pef_make_bfd_section()
311 bfdsec->flags = bfd_pef_section_flags (section); in bfd_pef_make_bfd_section()
313 return bfdsec; in bfd_pef_make_bfd_section()
Dxsym.c2223 asection *bfdsec; in bfd_sym_scan() local
2238 bfdsec = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS); in bfd_sym_scan()
2239 if (bfdsec == NULL) in bfd_sym_scan()
2242 bfdsec->vma = 0; in bfd_sym_scan()
2243 bfdsec->lma = 0; in bfd_sym_scan()
2244 bfdsec->size = 0; in bfd_sym_scan()
2245 bfdsec->filepos = 0; in bfd_sym_scan()
2246 bfdsec->alignment_power = 0; in bfd_sym_scan()
Dmach-o.c4053 asection *bfdsec; in bfd_mach_o_read_thread() local
4090 bfdsec = bfd_make_section_with_flags (abfd, sname, SEC_HAS_CONTENTS); in bfd_mach_o_read_thread()
4092 bfdsec->vma = 0; in bfd_mach_o_read_thread()
4093 bfdsec->lma = 0; in bfd_mach_o_read_thread()
4094 bfdsec->size = cmd->flavours[i].size; in bfd_mach_o_read_thread()
4095 bfdsec->filepos = cmd->flavours[i].offset; in bfd_mach_o_read_thread()
4096 bfdsec->alignment_power = 0x0; in bfd_mach_o_read_thread()
4098 cmd->section = bfdsec; in bfd_mach_o_read_thread()
/toolchain/binutils/binutils-2.27/binutils/
Dod-macho.c2152 asection *bfdsec = sec->bfdsection; in dump_section_content() local
2155 size = bfd_get_section_size (bfdsec); in dump_section_content()
2157 bfd_get_section_contents (abfd, bfdsec, content, 0, size); in dump_section_content()