crashtype         103 drivers/misc/lkdtm/core.c static const struct crashtype crashtypes[] = {
crashtype         180 drivers/misc/lkdtm/core.c static const struct crashtype *lkdtm_crashtype;
crashtype         203 drivers/misc/lkdtm/core.c static const struct crashtype *find_crashtype(const char *name)
crashtype         219 drivers/misc/lkdtm/core.c static noinline void lkdtm_do_action(const struct crashtype *crashtype)
crashtype         221 drivers/misc/lkdtm/core.c 	if (WARN_ON(!crashtype || !crashtype->func))
crashtype         223 drivers/misc/lkdtm/core.c 	crashtype->func();
crashtype         227 drivers/misc/lkdtm/core.c 				 const struct crashtype *crashtype)
crashtype         233 drivers/misc/lkdtm/core.c 		lkdtm_do_action(crashtype);
crashtype         241 drivers/misc/lkdtm/core.c 	lkdtm_crashtype = crashtype;
crashtype         291 drivers/misc/lkdtm/core.c 	const struct crashtype *crashtype = NULL;
crashtype         309 drivers/misc/lkdtm/core.c 	crashtype = find_crashtype(buf);
crashtype         312 drivers/misc/lkdtm/core.c 	if (!crashtype)
crashtype         315 drivers/misc/lkdtm/core.c 	err = lkdtm_register_cpoint(crashpoint, crashtype);
crashtype         359 drivers/misc/lkdtm/core.c 	const struct crashtype *crashtype;
crashtype         378 drivers/misc/lkdtm/core.c 	crashtype = find_crashtype(buf);
crashtype         380 drivers/misc/lkdtm/core.c 	if (!crashtype)
crashtype         383 drivers/misc/lkdtm/core.c 	pr_info("Performing direct entry %s\n", crashtype->name);
crashtype         384 drivers/misc/lkdtm/core.c 	lkdtm_do_action(crashtype);
crashtype         395 drivers/misc/lkdtm/core.c 	const struct crashtype *crashtype = NULL;
crashtype         406 drivers/misc/lkdtm/core.c 		crashtype = find_crashtype(cpoint_type);
crashtype         407 drivers/misc/lkdtm/core.c 		if (!crashtype) {
crashtype         450 drivers/misc/lkdtm/core.c 		ret = lkdtm_register_cpoint(crashpoint, crashtype);