Lines Matching refs:m
21 static void *c_start(struct seq_file *m, loff_t *pos) in c_start() argument
27 static void *c_next(struct seq_file *m, void *p, loff_t *pos) in c_next() argument
32 static void c_stop(struct seq_file *m, void *p) in c_stop() argument
37 static int c_show(struct seq_file *m, void *p) in c_show() argument
41 seq_printf(m, "name : %s\n", alg->cra_name); in c_show()
42 seq_printf(m, "driver : %s\n", alg->cra_driver_name); in c_show()
43 seq_printf(m, "module : %s\n", module_name(alg->cra_module)); in c_show()
44 seq_printf(m, "priority : %d\n", alg->cra_priority); in c_show()
45 seq_printf(m, "refcnt : %u\n", refcount_read(&alg->cra_refcnt)); in c_show()
46 seq_printf(m, "selftest : %s\n", in c_show()
49 seq_printf(m, "internal : %s\n", in c_show()
52 seq_printf(m, "fips : %s\n", in c_show()
56 seq_printf(m, "type : larval\n"); in c_show()
57 seq_printf(m, "flags : 0x%x\n", alg->cra_flags); in c_show()
62 alg->cra_type->show(m, alg); in c_show()
68 seq_printf(m, "type : cipher\n"); in c_show()
69 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); in c_show()
70 seq_printf(m, "min keysize : %u\n", in c_show()
72 seq_printf(m, "max keysize : %u\n", in c_show()
76 seq_printf(m, "type : unknown\n"); in c_show()
81 seq_putc(m, '\n'); in c_show()