Lines Matching refs:m
64 static void *c_start(struct seq_file *m, loff_t *pos) in c_start() argument
70 static void *c_next(struct seq_file *m, void *p, loff_t *pos) in c_next() argument
75 static void c_stop(struct seq_file *m, void *p) in c_stop() argument
80 static int c_show(struct seq_file *m, void *p) in c_show() argument
84 seq_printf(m, "name : %s\n", alg->cra_name); in c_show()
85 seq_printf(m, "driver : %s\n", alg->cra_driver_name); in c_show()
86 seq_printf(m, "module : %s\n", module_name(alg->cra_module)); in c_show()
87 seq_printf(m, "priority : %d\n", alg->cra_priority); in c_show()
88 seq_printf(m, "refcnt : %d\n", atomic_read(&alg->cra_refcnt)); in c_show()
89 seq_printf(m, "selftest : %s\n", in c_show()
94 seq_printf(m, "type : larval\n"); in c_show()
95 seq_printf(m, "flags : 0x%x\n", alg->cra_flags); in c_show()
100 alg->cra_type->show(m, alg); in c_show()
106 seq_printf(m, "type : cipher\n"); in c_show()
107 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); in c_show()
108 seq_printf(m, "min keysize : %u\n", in c_show()
110 seq_printf(m, "max keysize : %u\n", in c_show()
114 seq_printf(m, "type : compression\n"); in c_show()
117 seq_printf(m, "type : unknown\n"); in c_show()
122 seq_putc(m, '\n'); in c_show()