Home | History | Annotate | Download | only in liblegacy

Lines Matching refs:proc

55 void opd_kill_maps(struct opd_proc * proc)
59 list_for_each_safe(pos, pos2, &proc->maps) {
68 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image,
74 proc->tid, start, end, offset, image->name);
79 if (list_empty(&proc->maps)) {
80 if (proc->name)
81 free((char *)proc->name);
82 proc->name = xstrdup(image->name);
91 list_add_tail(&map->next, &proc->maps);
141 struct opd_proc * proc;
146 proc = opd_get_proc(note->pid, note->tgid);
148 if (!proc) {
150 proc = opd_new_proc(note->pid, note->tgid);
166 image = opd_get_image(name, proc->name, 0, note->pid, note->tgid);
168 opd_add_mapping(proc, image, note->addr, note->offset,