Lines Matching refs:map_entry
65 struct map_entry { struct
66 struct map_entry *next; argument
72 typedef void (*segment_callback)(struct map_entry *, void *); argument
109 static void cb_put_phdr(struct map_entry *, void *);
110 static void cb_size_segment(struct map_entry *, void *);
111 static void each_dumpable_segment(struct map_entry *, segment_callback,
138 static void elf_puthdr(int, pid_t, struct map_entry *, void *, size_t, size_t,
142 static void freemap(struct map_entry *);
143 static struct map_entry *readmap(pid_t);
201 struct map_entry *map; in elf_coredump()
302 cb_put_phdr(struct map_entry *entry, void *closure) in cb_put_phdr()
332 cb_size_segment(struct map_entry *entry, void *closure) in cb_size_segment()
346 each_dumpable_segment(struct map_entry *map, segment_callback func, in each_dumpable_segment()
349 struct map_entry *entry; in each_dumpable_segment()
449 elf_puthdr(int efd, pid_t pid, struct map_entry *map, void *hdr, size_t hdrsize, in elf_puthdr()
540 freemap(struct map_entry *map) in freemap()
542 struct map_entry *next; in freemap()
557 static struct map_entry *
560 struct map_entry *ent, **linkp, *map; in readmap()