Lines Matching refs:info
74 struct stack_info *info)
82 if (info) {
83 info->low = low;
84 info->high = high;
85 info->type = type;
91 struct stack_info *info)
96 return on_stack(sp, low, high, STACK_TYPE_IRQ, info);
101 struct stack_info *info)
106 return on_stack(sp, low, high, STACK_TYPE_TASK, info);
113 struct stack_info *info)
118 return on_stack(sp, low, high, STACK_TYPE_OVERFLOW, info);
122 struct stack_info *info) { return false; }
132 struct stack_info *info)
134 if (info)
135 info->type = STACK_TYPE_UNKNOWN;
137 if (on_task_stack(tsk, sp, info))
141 if (on_irq_stack(sp, info))
143 if (on_overflow_stack(sp, info))
145 if (on_sdei_stack(sp, info))