Home | History | Annotate | Download | only in apriori

Lines Matching refs:source_t

55 static source_t *sources = NULL;
59 static void print_shdr(source_t *source, Elf_Scn *scn)
72 static void print_shdr_idx(source_t *source, Elf *elf, int idx)
77 static void print_shdrs(source_t *source) {
105 static inline source_t* find_source(const char *name,
110 source_t *trav = sources;
122 static inline void add_to_sources(source_t *src) {
149 static void create_elf_sections(source_t *source, Elf *elf)
217 /* This function sets up the shdr_info[] array of a source_t. We call it only
224 static void setup_shdr_info(source_t *source)
307 static Elf * init_elf(source_t *source, bool create_new_sections)
395 source_t *source,
419 static bool do_init_source(source_t *source, unsigned base)
597 static source_t* init_source(const char *full_path,
601 source_t *source = (source_t *)CALLOC(1, sizeof(source_t));
722 static void do_destroy_source(source_t *source)
748 static void destroy_source(source_t *source)
806 static void reinit_source(source_t *source)
868 static GElf_Sym *hash_lookup_global_or_weak_symbol(source_t *lib,
913 static source_t *lookup_symbol_in_dependencies(source_t *source,
917 source_t *sym_source = NULL; /* return value */
923 source_t *last_found = NULL;
925 source_t *lib = source->lib_deps[libidx];
962 static int do_prelink(source_t *source,
989 source_t *sym_source = NULL;
1062 source_t *lib, *old_sym_source = NULL;
1397 static int prelink(source_t *source,
1562 static void adjust_dynamic_segment_entry_size(source_t *source,
1601 static void adjust_dynamic_segment_entries(source_t *source)
1681 static bool adjust_dynamic_segment_for(source_t *source,
1868 static bool adjust_dynamic_segment(source_t *source,
1888 static void match_relocation_sections_to_dynamic_ranges(source_t *source)
1994 static void drop_sections(source_t *source)
2067 static source_t* process_file(const char *filename,
2083 represented by source_t structs. If we do not find the file, then we
2091 source_t *source =
2220 source_t *dep = process_file(dep_lib,
2238 sizeof(source_t *));
2520 source_t *source; /* for general usage */
2596 source_t *old = source;