Lines Matching refs:name
29 static struct ps_internal *__find_path_selector_type(const char *name) in __find_path_selector_type() argument
34 if (!strcmp(name, psi->pst.name)) in __find_path_selector_type()
41 static struct ps_internal *get_path_selector(const char *name) in get_path_selector() argument
46 psi = __find_path_selector_type(name); in get_path_selector()
54 struct path_selector_type *dm_get_path_selector(const char *name) in dm_get_path_selector() argument
58 if (!name) in dm_get_path_selector()
61 psi = get_path_selector(name); in dm_get_path_selector()
63 request_module("dm-%s", name); in dm_get_path_selector()
64 psi = get_path_selector(name); in dm_get_path_selector()
78 psi = __find_path_selector_type(pst->name); in dm_put_path_selector()
107 if (__find_path_selector_type(pst->name)) { in dm_register_path_selector()
124 psi = __find_path_selector_type(pst->name); in dm_unregister_path_selector()