Lines Matching defs:frame
57 struct frame
67 struct frame *frame;
182 if (! dwfl_frame_pc (state, &frames->frame[nr].pc,
183 &frames->frame[nr].isactivation))
193 frames->frame = realloc (frames->frame,
194 sizeof (struct frame) * frames->allocated);
195 if (frames->frame == NULL)
196 error (EXIT_BAD, errno, "realloc frames.frame");
337 /* last_scope is the source location where the next frame/function
374 Dwarf_Addr pc = frames->frame[nr].pc;
375 bool isactivation = frames->frame[nr].isactivation;
433 Dwarf_Addr pc = frames->frame[nr].pc;
434 bool isactivation = frames->frame[nr].isactivation;
654 N_("Additionally show frame activation"), 0 },
656 N_("Additionally try to lookup DWARF debuginfo name for frame address"),
710 frames.frame = malloc (sizeof (struct frame) * frames.allocated);
711 if (frames.frame == NULL)
712 error (EXIT_BAD, errno, "malloc frames.frame");
746 free (frames.frame);