Searched refs:elf (Results 51 - 75 of 408) sorted by relevance

1234567891011>>

/freebsd-11-stable/stand/sparc64/boot1/
H A DMakefile5 PROG= boot1.elf
26 boot1.aout: boot1.elf
/freebsd-11-stable/stand/powerpc/boot1.chrp/
H A Dgenerate-hfs.sh34 echo 'Boot1 START' | dd of=boot1.elf.tmp cbs=$BOOT1_SIZE count=1 conv=block
36 hcopy boot1.elf.tmp :boot1.elf
42 rm boot1.elf.tmp
H A DMakefile5 PROG= boot1.elf
22 boot1.hfs: boot1.elf bootinfo.txt
27 ${DD} if=boot1.elf of=${.TARGET} seek=${BOOT1_OFFSET} conv=notrunc
/freebsd-11-stable/usr.bin/gprof/
H A DMakefile5 SRCS= gprof.c aout.c arcs.c dfn.c elf.c lookup.c hertz.c \
/freebsd-11-stable/stand/mips/beri/boot2/
H A DMakefile62 flashboot.elf: relocate.o start.o boot2.o altera_jtag_uart.o cfi.o sdcard.o
65 flashboot: flashboot.elf
66 ${OBJCOPY} -S -O binary ${.TARGET}.elf ${.TARGET}
76 CLEANFILES+= flashboot.elf
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfconvert.c92 Elf *elf; local
100 if ((elf = elf_begin(fd, ELF_C_READ, NULL)) == NULL) {
106 source_types = built_source_types(elf, filename);
115 if ((rc = readers[i](td, elf, filename)) == 0)
126 if (findelfsecidx(elf, filename, ".debug") >= 0) {
142 (void) elf_end(elf);
H A Dutil.c64 findelfsecidx(Elf *elf, const char *file, const char *tofind) argument
70 if (gelf_getehdr(elf, &ehdr) == NULL)
73 while ((scn = elf_nextscn(elf, scn)) != NULL) {
82 if ((name = elf_strptr(elf, ehdr.e_shstrndx,
97 elf_ptrsz(Elf *elf) argument
101 if (gelf_getehdr(elf, &ehdr) == NULL) {
H A Dstabs.c177 stabs_read(tdata_t *td, Elf *elf, char *file) argument
193 if (!((stabidx = findelfsecidx(elf, file, ".stab.excl")) >= 0 &&
194 (stabstridx = findelfsecidx(elf, file, ".stab.exclstr")) >= 0) &&
195 !((stabidx = findelfsecidx(elf, file, ".stab")) >= 0 &&
196 (stabstridx = findelfsecidx(elf, file, ".stabstr")) >= 0)) {
208 scn = elf_getscn(elf, stabidx);
250 if ((str = elf_strptr(elf, stabstridx,
378 cvt_fixups(td, elf_ptrsz(elf));
/freebsd-11-stable/contrib/elftoolchain/size/
H A Dsize.c98 static int handle_core(char const *, Elf *elf, GElf_Ehdr *);
115 * size utility using elf(3) and gelf(3) API to list section sizes and
116 * total in elf files. Supports only elf files (core dumps in elf
215 xlatetom(Elf *elf, GElf_Ehdr *elfhdr, void *_src, void *_dst, argument
227 return (gelf_xlatetom(elf, &dst, &src, elfhdr->e_ident[EI_DATA]) !=
263 handle_core_note(Elf *elf, GElf_Ehdr *elfhdr, GElf_Phdr *phdr, argument
275 if (elf == NULL || elfhdr == NULL || phdr == NULL)
278 data = elf_rawfile(elf,
451 handle_phdr(Elf *elf, GElf_Ehdr *elfhdr, GElf_Phdr *phdr, uint32_t idx, const char *name) argument
502 handle_core(char const *name, Elf *elf, GElf_Ehdr *elfhdr) argument
590 Elf *elf, *elf1; local
682 sysv_calc(Elf *elf, GElf_Ehdr *elfhdr, GElf_Shdr *shdr) argument
[all...]
/freebsd-11-stable/libexec/
H A DMakefile25 ${_rtld-elf} \
76 _rtld-elf= rtld-elf
/freebsd-11-stable/usr.bin/ldd/
H A Dldd.c38 #include <machine/elf.h>
62 * so check for the existence of one of the 32-macros defined in elf(5).
290 Elf_Ehdr elf; member in union:__anon7
395 if ((size_t)n >= sizeof(hdr.elf) && IS_ELF(hdr.elf) &&
396 hdr.elf.e_ident[EI_CLASS] == ELF_TARG_CLASS) {
402 if (lseek(fd, hdr.elf.e_phoff, SEEK_SET) == -1) {
406 for (i = 0; i < hdr.elf.e_phnum; i++) {
407 if (read(fd, &phdr, hdr.elf.e_phentsize)
424 if (hdr.elf
[all...]
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_elf_init.c131 _dwarf_elf_relocate(Dwarf_Debug dbg, Elf *elf, Dwarf_Elf_Data *ed, size_t shndx, argument
143 if (gelf_getehdr(elf, &eh) == NULL) {
150 while ((scn = elf_nextscn(elf, scn)) != NULL) {
200 _dwarf_elf_init(Dwarf_Debug dbg, Elf *elf, Dwarf_Error *error) argument
224 e->eo_elf = elf;
237 if (gelf_getehdr(elf, &e->eo_ehdr) == NULL) {
245 if (!elf_getshstrndx(elf, &e->eo_strndx)) {
256 while ((scn = elf_nextscn(elf, scn)) != NULL) {
266 if ((name = elf_strptr(elf, e->eo_strndx, sh.sh_name)) ==
312 while ((scn = elf_nextscn(elf, sc
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-spu.h27 struct bfd_elf_section_data elf; member in struct:_spu_elf_section_data
/freebsd-11-stable/usr.bin/ar/
H A DMakefile8 LIBADD= archive elf
/freebsd-11-stable/sys/modules/hpt27xx/
H A DMakefile12 uudecode -p < ${HPT27XX}/$(MACHINE_ARCH)-elf.hpt27xx_lib.o.uu > ${.TARGET}
/freebsd-11-stable/sys/modules/hptnr/
H A DMakefile12 uudecode -p < ${HPTNR}/${MACHINE_ARCH}-elf.hptnr_lib.o.uu > ${.TARGET}
/freebsd-11-stable/sys/modules/hptrr/
H A DMakefile12 uudecode -p < ${HPTRR}/$(MACHINE_CPUARCH)-elf.hptrr_lib.o.uu > hptrr_lib.o
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DAArch64ErrataFix.h17 namespace elf { namespace in namespace:lld
47 } // namespace elf
H A DARMErrataFix.h18 namespace elf { namespace in namespace:lld
48 } // namespace elf
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.h24 namespace elf { namespace in namespace:llvm::objcopy
32 } // end namespace elf
H A DELFConfig.h22 namespace elf { namespace in namespace:llvm::objcopy
40 } // namespace elf
/freebsd-11-stable/lib/libexecinfo/
H A DMakefile15 LIBADD= elf
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_getauxval.h45 #include <elf.h>
/freebsd-11-stable/contrib/elftoolchain/strings/
H A Dstrings.c97 * from elf and binary files.
245 Elf *elf; local
259 elf = elf_begin(fd, ELF_C_READ, NULL);
260 if (elf_kind(elf) != ELF_K_ELF) {
261 (void)elf_end(elf);
265 if (gelf_getehdr(elf, &elfhdr) == NULL) {
266 (void)elf_end(elf);
272 (void)elf_end(elf);
276 while ((scn = elf_nextscn(elf, scn)) != NULL) {
286 (void)elf_end(elf);
[all...]
/freebsd-11-stable/contrib/binutils/ld/emulparams/
H A Delf32bmip.sh5 SCRIPT_NAME=elf

Completed in 108 milliseconds

1234567891011>>