Searched refs:abfd (Results 1 - 25 of 779) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dnlm.c31 nlm_mkobject (bfd * abfd) argument
35 nlm_tdata (abfd) = bfd_zalloc (abfd, amt);
36 if (nlm_tdata (abfd) == NULL)
39 if (nlm_architecture (abfd) != bfd_arch_unknown)
40 bfd_default_set_arch_mach (abfd, nlm_architecture (abfd),
41 nlm_machine (abfd));
50 nlm_set_arch_mach (bfd * abfd, argument
54 bfd_default_set_arch_mach (abfd, arc
[all...]
H A Dnlmswap.h38 nlm_swap_fixed_header_in (bfd *abfd, argument
47 H_GET_32 (abfd, src->version);
49 H_GET_32 (abfd, src->codeImageOffset);
51 H_GET_32 (abfd, src->codeImageSize);
53 H_GET_32 (abfd, src->dataImageOffset);
55 H_GET_32 (abfd, src->dataImageSize);
57 H_GET_32 (abfd, src->uninitializedDataSize);
59 H_GET_32 (abfd, src->customDataOffset);
61 H_GET_32 (abfd, src->customDataSize);
63 H_GET_32 (abfd, sr
98 nlm_swap_fixed_header_out(bfd *abfd, Nlm_Internal_Fixed_Header *src, void * realdst) argument
[all...]
H A Dnlmcode.h56 #define nlm_swap_fixed_header_in(abfd,src,dst) \
57 (nlm_swap_fixed_header_in_func (abfd)) (abfd, src, dst)
58 #define nlm_swap_fixed_header_out(abfd,src,dst) \
59 (nlm_swap_fixed_header_out_func (abfd)) (abfd, src, dst)
76 nlm_swap_variable_header_in (bfd *abfd) argument
82 amt = sizeof (nlm_variable_header (abfd)->descriptionLength);
83 if (bfd_bread ((void *) &nlm_variable_header (abfd)->descriptionLength,
84 amt, abfd) !
134 add_bfd_section(bfd *abfd, char *name, file_ptr offset, bfd_size_type size, flagword flags) argument
164 nlm_swap_auxiliary_headers_in(bfd *abfd) argument
437 nlm_object_p(bfd *abfd) argument
568 nlm_swap_variable_header_out(bfd *abfd) argument
639 nlm_swap_auxiliary_headers_out(bfd *abfd) argument
861 nlm_get_symtab_upper_bound(bfd *abfd) argument
895 nlm_slurp_symbol_table(bfd *abfd) argument
1060 nlm_canonicalize_symtab(bfd *abfd, asymbol **alocation) argument
1081 nlm_make_empty_symbol(bfd *abfd) argument
1105 nlm_print_symbol(bfd *abfd, void * afile, asymbol *symbol, bfd_print_symbol_type how) argument
1142 nlm_slurp_reloc_fixups(bfd *abfd) argument
1191 nlm_get_reloc_upper_bound(bfd *abfd, asection *sec) argument
1227 nlm_canonicalize_reloc(bfd *abfd, asection *sec, arelent **relptr, asymbol **symbols) argument
1306 nlm_compute_section_file_positions(bfd *abfd) argument
1511 nlm_set_section_contents(bfd *abfd, asection *section, const void * location, file_ptr offset, bfd_size_type count) argument
1599 nlm_write_object_contents(bfd *abfd) argument
[all...]
H A Dcache.c86 insert (bfd *abfd) argument
90 abfd->lru_next = abfd;
91 abfd->lru_prev = abfd;
95 abfd->lru_next = bfd_last_cache;
96 abfd->lru_prev = bfd_last_cache->lru_prev;
97 abfd->lru_prev->lru_next = abfd;
98 abfd
106 snip(bfd *abfd) argument
121 bfd_cache_delete(bfd *abfd) argument
194 bfd_cache_lookup_worker(bfd *abfd, enum cache_flag flag) argument
232 cache_btell(struct bfd *abfd) argument
241 cache_bseek(struct bfd *abfd, file_ptr offset, int whence) argument
257 cache_bread_1(struct bfd *abfd, void *buf, file_ptr nbytes) argument
308 cache_bread(struct bfd *abfd, void *buf, file_ptr nbytes) argument
345 cache_bwrite(struct bfd *abfd, const void *where, file_ptr nbytes) argument
362 cache_bclose(struct bfd *abfd) argument
368 cache_bflush(struct bfd *abfd) argument
382 cache_bstat(struct bfd *abfd, struct stat *sb) argument
441 bfd_cache_init(bfd *abfd) argument
472 bfd_cache_close(bfd *abfd) argument
527 bfd_open_file(bfd *abfd) argument
[all...]
H A Dbfdio.c149 . file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
150 . file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
154 . file_ptr (*btell) (struct bfd *abfd);
157 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
158 . int (*bclose) (struct bfd *abfd);
159 . int (*bflush) (struct bfd *abfd);
160 . int (*bstat) (struct bfd *abfd, struct stat *sb);
162 . void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
174 bfd_bread (void *ptr, bfd_size_type size, bfd *abfd) argument
180 if (abfd
202 bfd_bwrite(const void *ptr, bfd_size_type size, bfd *abfd) argument
224 bfd_tell(bfd *abfd) argument
243 bfd_flush(bfd *abfd) argument
253 bfd_stat(bfd *abfd, struct stat *statbuf) argument
271 bfd_seek(bfd *abfd, file_ptr position, int direction) argument
355 bfd_get_mtime(bfd *abfd) argument
406 bfd_get_size(bfd *abfd) argument
434 bfd_mmap(bfd *abfd, void *addr, bfd_size_type len, int prot, int flags, file_ptr offset) argument
448 memory_bread(bfd *abfd, void *ptr, file_ptr size) argument
468 memory_bwrite(bfd *abfd, const void *ptr, file_ptr size) argument
497 memory_btell(bfd *abfd) argument
503 memory_bseek(bfd *abfd, file_ptr position, int direction) argument
557 memory_bclose(struct bfd *abfd) argument
576 memory_bstat(bfd *abfd, struct stat *statbuf) argument
[all...]
H A Dptrace-core.c52 const bfd_target *ptrace_unix_core_file_p PARAMS ((bfd *abfd));
53 char * ptrace_unix_core_file_failing_command PARAMS ((bfd *abfd));
54 int ptrace_unix_core_file_failing_signal PARAMS ((bfd *abfd));
60 ptrace_unix_core_file_p (abfd)
61 bfd *abfd;
70 val = bfd_bread ((void *)&u, (bfd_size_type) sizeof u, abfd);
84 rawptr = (struct trad_core_struct *) bfd_zalloc (abfd, amt);
89 abfd->tdata.trad_core_data = rawptr;
96 core_stacksec (abfd) = bfd_make_section_anyway_with_flags (abfd, "
[all...]
H A Dcoffswap.h33 #define GET_FCN_LNNOPTR(abfd, ext) \
34 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
38 #define GET_FCN_ENDNDX(abfd, ext) \
39 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_endndx)
43 #define PUT_FCN_LNNOPTR(abfd, in, ext) \
44 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
47 #define PUT_FCN_ENDNDX(abfd, in, ext) \
48 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_endndx)
51 #define GET_LNSZ_LNNO(abfd, ext) \
52 H_GET_16 (abfd, ex
217 coff_swap_reloc_in(bfd * abfd, void * src, void * dst) argument
232 coff_swap_reloc_out(bfd * abfd, void * src, void * dst) argument
254 coff_swap_filehdr_in(bfd * abfd, void * src, void * dst) argument
279 coff_swap_filehdr_out(bfd *abfd, void * in, void * out) argument
307 coff_swap_sym_in(bfd * abfd, void * ext1, void * in1) argument
340 coff_swap_sym_out(bfd * abfd, void * inp, void * extp) argument
382 coff_swap_aux_in(bfd *abfd, void * ext1, int type, int in_class, int indx, int numaux, void * in1) argument
486 coff_swap_aux_out(bfd * abfd, void * inp, int type, int in_class, int indx ATTRIBUTE_UNUSED, int numaux ATTRIBUTE_UNUSED, void * extp) argument
582 coff_swap_lineno_in(bfd * abfd, void * ext1, void * in1) argument
592 coff_swap_lineno_out(bfd * abfd, void * inp, void * outp) argument
605 coff_swap_aouthdr_in(bfd * abfd, void * aouthdr_ext1, void * aouthdr_int1) argument
678 coff_swap_aouthdr_out(bfd * abfd, void * in, void * out) argument
752 coff_swap_scnhdr_in(bfd * abfd, void * ext, void * in) argument
781 coff_swap_scnhdr_out(bfd * abfd, void * in, void * out) argument
[all...]
H A Daout-adobe.c37 aout_adobe_swap_exec_header_in (bfd *abfd, argument
42 execp->a_info = H_GET_32 (abfd, bytes->e_info);
43 execp->a_text = GET_WORD (abfd, bytes->e_text);
44 execp->a_data = GET_WORD (abfd, bytes->e_data);
45 execp->a_bss = GET_WORD (abfd, bytes->e_bss);
46 execp->a_syms = GET_WORD (abfd, bytes->e_syms);
47 execp->a_entry = GET_WORD (abfd, bytes->e_entry);
48 execp->a_trsize = GET_WORD (abfd, bytes->e_trsize);
49 execp->a_drsize = GET_WORD (abfd, bytes->e_drsize);
56 aout_adobe_swap_exec_header_out (bfd *abfd, argument
76 aout_adobe_callback(bfd *abfd) argument
196 aout_adobe_object_p(bfd *abfd) argument
242 aout_adobe_mkobject(bfd *abfd) argument
271 aout_adobe_write_object_contents(bfd *abfd) argument
368 aout_adobe_set_section_contents(bfd *abfd, asection *section, const void * location, file_ptr offset, bfd_size_type count) argument
428 aout_adobe_set_arch_mach(bfd *abfd, enum bfd_architecture arch, unsigned long machine) argument
[all...]
H A Dformat.c59 bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
62 Verify if the file attached to the BFD @var{abfd} is compatible
93 bfd_check_format (bfd *abfd, bfd_format format) argument
95 return bfd_check_format_matches (abfd, format, NULL);
104 (bfd *abfd, bfd_format format, char ***matching);
119 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) argument
131 if (!bfd_read_p (abfd)
132 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end)
138 if (abfd->format != bfd_unknown)
139 return abfd
352 bfd_set_format(bfd *abfd, bfd_format format) argument
[all...]
H A Dsparclynx.c73 NAME(lynx,set_arch_mach) (abfd, machtype)
74 bfd *abfd;
123 bfd_set_arch_mach (abfd, arch, machine);
133 choose_reloc_size (abfd)
134 bfd *abfd;
136 switch (bfd_get_arch (abfd))
139 obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE;
142 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
152 NAME(aout,sparclynx_write_object_contents) (abfd)
153 bfd *abfd;
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dnlm.c31 nlm_mkobject (bfd * abfd) argument
35 nlm_tdata (abfd) = bfd_zalloc (abfd, amt);
36 if (nlm_tdata (abfd) == NULL)
39 if (nlm_architecture (abfd) != bfd_arch_unknown)
40 bfd_default_set_arch_mach (abfd, nlm_architecture (abfd),
41 nlm_machine (abfd));
50 nlm_set_arch_mach (bfd * abfd, argument
54 bfd_default_set_arch_mach (abfd, arc
[all...]
H A Dnlmswap.h38 nlm_swap_fixed_header_in (bfd *abfd, argument
47 H_GET_32 (abfd, src->version);
49 H_GET_32 (abfd, src->codeImageOffset);
51 H_GET_32 (abfd, src->codeImageSize);
53 H_GET_32 (abfd, src->dataImageOffset);
55 H_GET_32 (abfd, src->dataImageSize);
57 H_GET_32 (abfd, src->uninitializedDataSize);
59 H_GET_32 (abfd, src->customDataOffset);
61 H_GET_32 (abfd, src->customDataSize);
63 H_GET_32 (abfd, sr
98 nlm_swap_fixed_header_out(bfd *abfd, Nlm_Internal_Fixed_Header *src, void * realdst) argument
[all...]
H A Dnlmcode.h56 #define nlm_swap_fixed_header_in(abfd,src,dst) \
57 (nlm_swap_fixed_header_in_func (abfd)) (abfd, src, dst)
58 #define nlm_swap_fixed_header_out(abfd,src,dst) \
59 (nlm_swap_fixed_header_out_func (abfd)) (abfd, src, dst)
76 nlm_swap_variable_header_in (bfd *abfd) argument
82 amt = sizeof (nlm_variable_header (abfd)->descriptionLength);
83 if (bfd_bread ((void *) &nlm_variable_header (abfd)->descriptionLength,
84 amt, abfd) !
134 add_bfd_section(bfd *abfd, char *name, file_ptr offset, bfd_size_type size, flagword flags) argument
164 nlm_swap_auxiliary_headers_in(bfd *abfd) argument
437 nlm_object_p(bfd *abfd) argument
568 nlm_swap_variable_header_out(bfd *abfd) argument
639 nlm_swap_auxiliary_headers_out(bfd *abfd) argument
861 nlm_get_symtab_upper_bound(bfd *abfd) argument
895 nlm_slurp_symbol_table(bfd *abfd) argument
1060 nlm_canonicalize_symtab(bfd *abfd, asymbol **alocation) argument
1081 nlm_make_empty_symbol(bfd *abfd) argument
1105 nlm_print_symbol(bfd *abfd, void * afile, asymbol *symbol, bfd_print_symbol_type how) argument
1142 nlm_slurp_reloc_fixups(bfd *abfd) argument
1191 nlm_get_reloc_upper_bound(bfd *abfd, asection *sec) argument
1227 nlm_canonicalize_reloc(bfd *abfd, asection *sec, arelent **relptr, asymbol **symbols) argument
1306 nlm_compute_section_file_positions(bfd *abfd) argument
1511 nlm_set_section_contents(bfd *abfd, asection *section, const void * location, file_ptr offset, bfd_size_type count) argument
1599 nlm_write_object_contents(bfd *abfd) argument
[all...]
H A Dcache.c86 insert (bfd *abfd) argument
90 abfd->lru_next = abfd;
91 abfd->lru_prev = abfd;
95 abfd->lru_next = bfd_last_cache;
96 abfd->lru_prev = bfd_last_cache->lru_prev;
97 abfd->lru_prev->lru_next = abfd;
98 abfd
106 snip(bfd *abfd) argument
121 bfd_cache_delete(bfd *abfd) argument
194 bfd_cache_lookup_worker(bfd *abfd, enum cache_flag flag) argument
232 cache_btell(struct bfd *abfd) argument
241 cache_bseek(struct bfd *abfd, file_ptr offset, int whence) argument
257 cache_bread_1(struct bfd *abfd, void *buf, file_ptr nbytes) argument
308 cache_bread(struct bfd *abfd, void *buf, file_ptr nbytes) argument
345 cache_bwrite(struct bfd *abfd, const void *where, file_ptr nbytes) argument
362 cache_bclose(struct bfd *abfd) argument
368 cache_bflush(struct bfd *abfd) argument
382 cache_bstat(struct bfd *abfd, struct stat *sb) argument
441 bfd_cache_init(bfd *abfd) argument
472 bfd_cache_close(bfd *abfd) argument
527 bfd_open_file(bfd *abfd) argument
[all...]
H A Dbfdio.c149 . file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
150 . file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
154 . file_ptr (*btell) (struct bfd *abfd);
157 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
158 . int (*bclose) (struct bfd *abfd);
159 . int (*bflush) (struct bfd *abfd);
160 . int (*bstat) (struct bfd *abfd, struct stat *sb);
162 . void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
174 bfd_bread (void *ptr, bfd_size_type size, bfd *abfd) argument
180 if (abfd
202 bfd_bwrite(const void *ptr, bfd_size_type size, bfd *abfd) argument
224 bfd_tell(bfd *abfd) argument
243 bfd_flush(bfd *abfd) argument
253 bfd_stat(bfd *abfd, struct stat *statbuf) argument
271 bfd_seek(bfd *abfd, file_ptr position, int direction) argument
355 bfd_get_mtime(bfd *abfd) argument
406 bfd_get_size(bfd *abfd) argument
434 bfd_mmap(bfd *abfd, void *addr, bfd_size_type len, int prot, int flags, file_ptr offset) argument
448 memory_bread(bfd *abfd, void *ptr, file_ptr size) argument
468 memory_bwrite(bfd *abfd, const void *ptr, file_ptr size) argument
497 memory_btell(bfd *abfd) argument
503 memory_bseek(bfd *abfd, file_ptr position, int direction) argument
557 memory_bclose(struct bfd *abfd) argument
576 memory_bstat(bfd *abfd, struct stat *statbuf) argument
[all...]
H A Dptrace-core.c52 const bfd_target *ptrace_unix_core_file_p PARAMS ((bfd *abfd));
53 char * ptrace_unix_core_file_failing_command PARAMS ((bfd *abfd));
54 int ptrace_unix_core_file_failing_signal PARAMS ((bfd *abfd));
60 ptrace_unix_core_file_p (abfd)
61 bfd *abfd;
70 val = bfd_bread ((void *)&u, (bfd_size_type) sizeof u, abfd);
84 rawptr = (struct trad_core_struct *) bfd_zalloc (abfd, amt);
89 abfd->tdata.trad_core_data = rawptr;
96 core_stacksec (abfd) = bfd_make_section_anyway_with_flags (abfd, "
[all...]
H A Dcoffswap.h33 #define GET_FCN_LNNOPTR(abfd, ext) \
34 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
38 #define GET_FCN_ENDNDX(abfd, ext) \
39 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_endndx)
43 #define PUT_FCN_LNNOPTR(abfd, in, ext) \
44 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
47 #define PUT_FCN_ENDNDX(abfd, in, ext) \
48 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_endndx)
51 #define GET_LNSZ_LNNO(abfd, ext) \
52 H_GET_16 (abfd, ex
217 coff_swap_reloc_in(bfd * abfd, void * src, void * dst) argument
232 coff_swap_reloc_out(bfd * abfd, void * src, void * dst) argument
254 coff_swap_filehdr_in(bfd * abfd, void * src, void * dst) argument
279 coff_swap_filehdr_out(bfd *abfd, void * in, void * out) argument
307 coff_swap_sym_in(bfd * abfd, void * ext1, void * in1) argument
340 coff_swap_sym_out(bfd * abfd, void * inp, void * extp) argument
382 coff_swap_aux_in(bfd *abfd, void * ext1, int type, int in_class, int indx, int numaux, void * in1) argument
486 coff_swap_aux_out(bfd * abfd, void * inp, int type, int in_class, int indx ATTRIBUTE_UNUSED, int numaux ATTRIBUTE_UNUSED, void * extp) argument
582 coff_swap_lineno_in(bfd * abfd, void * ext1, void * in1) argument
592 coff_swap_lineno_out(bfd * abfd, void * inp, void * outp) argument
605 coff_swap_aouthdr_in(bfd * abfd, void * aouthdr_ext1, void * aouthdr_int1) argument
678 coff_swap_aouthdr_out(bfd * abfd, void * in, void * out) argument
752 coff_swap_scnhdr_in(bfd * abfd, void * ext, void * in) argument
781 coff_swap_scnhdr_out(bfd * abfd, void * in, void * out) argument
[all...]
H A Dformat.c59 bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
62 Verify if the file attached to the BFD @var{abfd} is compatible
93 bfd_check_format (bfd *abfd, bfd_format format) argument
95 return bfd_check_format_matches (abfd, format, NULL);
104 (bfd *abfd, bfd_format format, char ***matching);
119 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) argument
131 if (!bfd_read_p (abfd)
132 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end)
138 if (abfd->format != bfd_unknown)
139 return abfd
352 bfd_set_format(bfd *abfd, bfd_format format) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/hosts/
H A Dalphalinux.h24 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
25 ((abfd)->tdata.trad_core_data->u.signal)
H A Dm68klinux.h24 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
25 ((abfd)->tdata.trad_core_data->u.signal)
H A Di386sco.h27 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
28 ((core_upage(abfd)->u_sysabort != 0) \
29 ? core_upage(abfd)->u_sysabort \
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/hosts/
H A Dalphalinux.h24 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
25 ((abfd)->tdata.trad_core_data->u.signal)
H A Dm68klinux.h24 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
25 ((abfd)->tdata.trad_core_data->u.signal)
H A Di386sco.h27 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(abfd) \
28 ((core_upage(abfd)->u_sysabort != 0) \
29 ? core_upage(abfd)->u_sysabort \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A Dpr41750.c24 foo_create_got_section (int *abfd, struct foo_link_info *info) argument
26 info->hash->sgot = abfd;
31 get_got (int *abfd, struct foo_link_info *info, argument
42 hash->dynobj = dynobj = abfd;
51 elf64_ia64_check_relocs (int *abfd, struct foo_link_info *info) argument
53 return get_got (abfd, info, info->hash);
58 int abfd; variable
64 if (elf64_ia64_check_relocs (&abfd, &link_info) != &abfd)

Completed in 217 milliseconds

1234567891011>>