OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Elf
(Results
1 - 25
of
150
) sorted by null
1
2
3
4
5
6
/external/elfutils/libelf/
libelf.h
55
/* Get the
ELF
types. */
56
#include <
elf
.h>
65
ELF_T_EHDR, /*
ELF
header. */
96
unsigned int d_version; /*
ELF
version. */
134
/* Flags for the
ELF
structures. */
152
ELF_K_ELF, /*
ELF
file. */
186
/* Descriptor for the
ELF
file. */
187
typedef struct
Elf
Elf
;
189
/* Descriptor for
ELF
file section. *
[
all
...]
elf_getident.c
61
elf_getident (
elf
, ptr)
62
Elf
*
elf
;
65
/* In case this is no
ELF
file, the handle is invalid and we return
67
if (
elf
== NULL ||
elf
->kind != ELF_K_ELF)
74
/* We already read the
ELF
header. Return a pointer to it and store
79
return (char *) (
elf
->class == ELFCLASS32
80
|| (offsetof (struct
Elf
, state.elf32.ehdr)
81
== offsetof (struct
Elf
, state.elf64.ehdr)
[
all
...]
elf_getbase.c
62
elf_getbase (
elf
)
63
Elf
*
elf
;
65
return
elf
== NULL ? (off_t) -1 :
elf
->start_offset;
elf_kind.c
62
elf_kind (
elf
)
63
Elf
*
elf
;
65
return
elf
== NULL ? ELF_K_NONE :
elf
->kind;
gelf_getclass.c
62
gelf_getclass (
elf
)
63
Elf
*
elf
;
65
return
elf
== NULL ||
elf
->kind != ELF_K_ELF ? ELFCLASSNONE :
elf
->class;
gelf_newehdr.c
1
/* Create new
ELF
header.
62
gelf_newehdr (
elf
, class)
63
Elf
*
elf
;
67
? (unsigned long int) INTUSE(elf32_newehdr) (
elf
)
68
: (unsigned long int) INTUSE(elf64_newehdr) (
elf
));