OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:elf_strtab_head
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.h
35
typedef struct
elf_strtab_head
elf_strtab_head
;
typedef in typeref:struct:elf_strtab_head
397
STAILQ_HEAD(
elf_strtab_head
, elf_strtab_entry);
448
elf_strtab_head
*elf_strtab_create(void);
449
elf_strtab_entry *elf_strtab_append_str(
elf_strtab_head
*head, const char *str);
450
void elf_strtab_destroy(
elf_strtab_head
*head);
451
unsigned long elf_strtab_output_to_file(FILE *f,
elf_strtab_head
*head);
elf.c
217
elf_strtab_head
*
220
elf_strtab_head
*strtab = yasm_xmalloc(sizeof(
elf_strtab_head
));
232
elf_strtab_append_str(
elf_strtab_head
*strtab, const char *str)
251
elf_strtab_destroy(
elf_strtab_head
*strtab)
271
elf_strtab_output_to_file(FILE *f,
elf_strtab_head
*strtab)
elf-objfmt.c
55
elf_strtab_head
* shstrtab; /* section name strtab */
56
elf_strtab_head
* strtab; /* strtab entries */
[
all
...]
Completed in 25 milliseconds