Lines Matching refs:m
20 static void *c_start(struct seq_file *m, loff_t *pos) in c_start() argument
26 static void *c_next(struct seq_file *m, void *p, loff_t *pos) in c_next() argument
31 static void c_stop(struct seq_file *m, void *p) in c_stop() argument
36 static int c_show(struct seq_file *m, void *p) in c_show() argument
40 seq_printf(m, "name : %s\n", alg->cra_name); in c_show()
41 seq_printf(m, "driver : %s\n", alg->cra_driver_name); in c_show()
42 seq_printf(m, "module : %s\n", module_name(alg->cra_module)); in c_show()
43 seq_printf(m, "priority : %d\n", alg->cra_priority); in c_show()
44 seq_printf(m, "refcnt : %u\n", refcount_read(&alg->cra_refcnt)); in c_show()
45 seq_printf(m, "selftest : %s\n", in c_show()
48 seq_printf(m, "internal : %s\n", in c_show()
53 seq_printf(m, "type : larval\n"); in c_show()
54 seq_printf(m, "flags : 0x%x\n", alg->cra_flags); in c_show()
59 alg->cra_type->show(m, alg); in c_show()
65 seq_printf(m, "type : cipher\n"); in c_show()
66 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); in c_show()
67 seq_printf(m, "min keysize : %u\n", in c_show()
69 seq_printf(m, "max keysize : %u\n", in c_show()
73 seq_printf(m, "type : compression\n"); in c_show()
76 seq_printf(m, "type : unknown\n"); in c_show()
81 seq_putc(m, '\n'); in c_show()