Lines Matching refs:m
377 __next(struct seq_file *m, loff_t *pos) in __next() argument
384 m->private = (void *)n; in __next()
385 return &m->private; in __next()
389 t_next(struct seq_file *m, void *v, loff_t *pos) in t_next() argument
392 return __next(m, pos); in t_next()
395 static void *t_start(struct seq_file *m, loff_t *pos) in t_start() argument
406 return __next(m, pos); in t_start()
409 static void t_stop(struct seq_file *m, void *p) in t_stop() argument
418 static void trace_lookup_stack(struct seq_file *m, long i) in trace_lookup_stack() argument
422 seq_printf(m, "%pS\n", (void *)addr); in trace_lookup_stack()
425 static void print_disabled(struct seq_file *m) in print_disabled() argument
427 seq_puts(m, "#\n" in print_disabled()
436 static int t_show(struct seq_file *m, void *v) in t_show() argument
442 seq_printf(m, " Depth Size Location" in t_show()
448 print_disabled(m); in t_show()
463 seq_printf(m, "%3ld) %8d %5d ", i, stack_trace_index[i], size); in t_show()
465 trace_lookup_stack(m, i); in t_show()