Lines Matching refs:m
376 __next(struct seq_file *m, loff_t *pos) in __next() argument
383 m->private = (void *)n; in __next()
384 return &m->private; in __next()
388 t_next(struct seq_file *m, void *v, loff_t *pos) in t_next() argument
391 return __next(m, pos); in t_next()
394 static void *t_start(struct seq_file *m, loff_t *pos) in t_start() argument
405 return __next(m, pos); in t_start()
408 static void t_stop(struct seq_file *m, void *p) in t_stop() argument
417 static void trace_lookup_stack(struct seq_file *m, long i) in trace_lookup_stack() argument
421 seq_printf(m, "%pS\n", (void *)addr); in trace_lookup_stack()
424 static void print_disabled(struct seq_file *m) in print_disabled() argument
426 seq_puts(m, "#\n" in print_disabled()
435 static int t_show(struct seq_file *m, void *v) in t_show() argument
441 seq_printf(m, " Depth Size Location" in t_show()
447 print_disabled(m); in t_show()
462 seq_printf(m, "%3ld) %8d %5d ", i, stack_trace_index[i], size); in t_show()
464 trace_lookup_stack(m, i); in t_show()