Lines Matching refs:map_entry
63 struct map_entry { struct
64 struct map_entry *next; argument
70 typedef void (*segment_callback)(struct map_entry *, void *); argument
92 static void cb_put_phdr(struct map_entry *, void *);
93 static void cb_size_segment(struct map_entry *, void *);
94 static void each_dumpable_segment(struct map_entry *, segment_callback,
115 static void elf_puthdr(int, pid_t, struct map_entry *, void *, size_t, size_t,
120 static void freemap(struct map_entry *);
121 static struct map_entry *readmap(pid_t);
179 struct map_entry *map; in elf_coredump()
280 cb_put_phdr(struct map_entry *entry, void *closure) in cb_put_phdr()
312 cb_size_segment(struct map_entry *entry, void *closure) in cb_size_segment()
326 each_dumpable_segment(struct map_entry *map, segment_callback func, in each_dumpable_segment()
329 struct map_entry *entry; in each_dumpable_segment()
466 elf_puthdr(int efd, pid_t pid, struct map_entry *map, void *hdr, size_t hdrsize, in elf_puthdr()
557 freemap(struct map_entry *map) in freemap()
559 struct map_entry *next; in freemap()
574 static struct map_entry *
577 struct map_entry *ent, **linkp, *map; in readmap()