Lines Matching defs:frame
34 * A snapshot of a frame record or fp/lr register values, along with some
37 * @fp: The fp value in the frame record (or the real fp)
38 * @pc: The fp value in the frame record (or the real lr)
43 * @prev_fp: The fp that pointed to this frame record, or a synthetic value
45 * subsequent frame record is at an increasing address.
46 * @prev_type: The type of stack this frame record was on, or a synthetic
64 extern int unwind_frame(struct task_struct *tsk, struct stackframe *frame);
65 extern void walk_stackframe(struct task_struct *tsk, struct stackframe *frame,
151 static inline void start_backtrace(struct stackframe *frame,
154 frame->fp = fp;
155 frame->pc = pc;
157 frame->graph = 0;
169 bitmap_zero(frame->stacks_done, __NR_STACK_TYPES);
170 frame->prev_fp = 0;
171 frame->prev_type = STACK_TYPE_UNKNOWN;