Searched refs:filehdr (Results 1 - 19 of 19) sorted by relevance

/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dticoff.h23 ticoff0_bad_format_hook (abfd, filehdr)
25 PTR filehdr; variable
27 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
36 ticoff1_bad_format_hook (abfd, filehdr)
38 PTR filehdr; variable
40 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
H A Dcoff64-rs6000.c2150 xcoff64_bad_format_hook (abfd, filehdr)
2152 PTR filehdr;
2154 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2183 struct internal_filehdr filehdr;
2205 memset (&filehdr, 0, sizeof (struct internal_filehdr));
2206 filehdr.f_magic = bfd_xcoff_magic_number (abfd);
2207 filehdr.f_nscns = 3;
2208 filehdr.f_timdat = 0;
2209 filehdr.f_nsyms = 0; /* at least 6, no more than 8 */
2210 filehdr
2182 struct internal_filehdr filehdr; local
[all...]
H A Dlibcoff.h108 /* Copy of some of the f_flags bits in the COFF filehdr structure,
865 #define bfd_coff_bad_format_hook(abfd, filehdr) \
866 ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
868 #define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
869 ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
870 #define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
872 (abfd, filehdr, aouthdr))
H A Dcoff-rs6000.c3678 struct internal_filehdr filehdr;
3696 memset (&filehdr, 0, sizeof (struct internal_filehdr));
3697 filehdr.f_magic = bfd_xcoff_magic_number (abfd);
3698 filehdr.f_nscns = 1;
3699 filehdr.f_timdat = 0;
3700 filehdr.f_nsyms = 0; /* at least 6, no more than 10 */
3701 filehdr.f_symptr = 0; /* set below */
3702 filehdr.f_opthdr = 0;
3703 filehdr.f_flags = 0;
3807 &syment_ext[filehdr
3672 struct internal_filehdr filehdr; local
[all...]
H A Dcoff-alpha.c42 PARAMS ((bfd *abfd, PTR filehdr));
44 PARAMS ((bfd *, PTR filehdr, PTR aouthdr));
482 alpha_ecoff_bad_format_hook (abfd, filehdr)
484 PTR filehdr;
486 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
504 alpha_ecoff_mkobject_hook (abfd, filehdr, aouthdr)
506 PTR filehdr;
511 ecoff = _bfd_ecoff_mkobject_hook (abfd, filehdr, aouthdr);
515 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030 /* Do final adjustments to the filehdr an
[all...]
H A Dcoff-mips.c40 PARAMS ((bfd *abfd, PTR filehdr));
258 mips_ecoff_bad_format_hook (abfd, filehdr)
260 PTR filehdr;
262 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1377 /* Do final adjustments to filehdr and aouthdr. */
H A Dcoffgen.c234 void * filehdr; local
242 filehdr = bfd_alloc (abfd, filhsz);
243 if (filehdr == NULL)
245 if (bfd_bread (filehdr, filhsz, abfd) != filhsz)
249 bfd_release (abfd, filehdr);
252 bfd_coff_swap_filehdr_in (abfd, filehdr, &internal_f);
253 bfd_release (abfd, filehdr);
H A Dcoffcode.h1356 .#define bfd_coff_bad_format_hook(abfd, filehdr) \
1357 . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
1359 .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
1360 . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
1361 .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
1363 . (abfd, filehdr, aouthdr))
1432 coff_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED, void * filehdr)
1434 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1457 ticoff0_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
1459 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1431 coff_bad_format_hook(bfd * abfd ATTRIBUTE_UNUSED, void * filehdr) argument
1456 ticoff0_bad_format_hook(bfd *abfd ATTRIBUTE_UNUSED, void * filehdr) argument
1469 ticoff1_bad_format_hook(bfd *abfd ATTRIBUTE_UNUSED, void * filehdr) argument
1777 coff_mkobject_hook(bfd * abfd, void * filehdr, void * aouthdr ATTRIBUTE_UNUSED) argument
1861 coff_set_arch_mach_hook(bfd *abfd, void * filehdr) argument
[all...]
H A Dpeicode.h280 void * filehdr,
283 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
278 pe_mkobject_hook(bfd * abfd, void * filehdr, void * aouthdr ATTRIBUTE_UNUSED) argument
H A Decoff.c102 _bfd_ecoff_mkobject_hook (bfd *abfd, void * filehdr, void * aouthdr)
104 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
193 _bfd_ecoff_set_arch_mach_hook (bfd *abfd, void * filehdr)
195 struct internal_filehdr *internal_f = filehdr;
101 _bfd_ecoff_mkobject_hook(bfd *abfd, void * filehdr, void * aouthdr) argument
192 _bfd_ecoff_set_arch_mach_hook(bfd *abfd, void * filehdr) argument
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_xattr.c1419 apple_double_header_t *filehdr; member in struct:attr_info
1634 attrdata = (u_int8_t*)ainfo.filehdr + ainfo.finderinfo->offset;
1815 attrdata = (u_int8_t *)ainfo.filehdr + ainfo.finderinfo->offset;
2147 attrdata = (u_int8_t *)ainfo.filehdr + ainfo.finderinfo->offset;
2714 apple_double_header_t *filehdr; local
2759 filehdr = (apple_double_header_t *)buffer;
2765 ainfop->filehdr = filehdr; /* valid AppleDouble header */
2771 for (i = 0; i < filehdr->numEntries; ++i) {
2772 if (filehdr
[all...]
/macosx-10.10/copyfile-118.1.2/
H A Dcopyfile.c3615 static int copyfile_pack_rsrcfork(copyfile_state_t s, attr_header_t *filehdr) argument
3688 if (pwrite(s->dst_fd, databuf, datasize, filehdr->appledouble.entries[1].offset) != datasize)
3703 datasize, XATTR_RESOURCEFORK_NAME, filehdr->appledouble.entries[1].offset);
3704 filehdr->appledouble.entries[1].length = (u_int32_t)datasize;
3735 attr_header_t *filehdr, *endfilehdr; local
3747 filehdr = (attr_header_t *) calloc(1, ATTR_MAX_HDR_SIZE);
3749 if (filehdr == NULL) {
3753 endfilehdr = (attr_header_t*)(((char*)filehdr) + ATTR_MAX_HDR_SIZE);
3767 filehdr->appledouble.magic = ADH_MAGIC;
3768 filehdr
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dunexalpha.c36 #include <filehdr.h>
53 #define filehdr ecoff_filehdr
135 struct filehdr fhdr;
52 #define filehdr macro
H A Dunexconvex.c185 #include <machine/filehdr.h>
191 static struct filehdr f_hdr; /* File header */
H A Dunexmips.c76 #include <filehdr.h>
121 struct filehdr fhdr;
H A Dunexaix.c81 #include <filehdr.h>
86 static struct filehdr f_hdr; /* File header */
H A Dunexapollo.c47 struct filehdr file_header;
H A Dunexec.c183 #define filehdr external_filehdr macro
240 static struct filehdr f_hdr; /* File header */
883 lseek (a_out, sizeof (struct filehdr) + sizeof (struct aouthdr), 0);
/macosx-10.10/ksh-23/ksh/src/lib/libdll/
H A Ddlfcn.c123 struct filehdr f;

Completed in 192 milliseconds