Lines Matching defs:depmod
889 struct depmod { struct
890 const struct cfg *cfg;
891 struct kmod_ctx *ctx;
892 struct array modules;
893 struct hash *modules_by_uncrelpath;
894 struct hash *modules_by_name;
895 struct hash *symbols;
938 static int depmod_init(struct depmod *depmod, struct cfg *cfg, in depmod_init()
976 static void depmod_shutdown(struct depmod *depmod) in depmod_shutdown()
993 static int depmod_module_add(struct depmod *depmod, struct kmod_module *kmod) in depmod_module_add()
1055 static int depmod_module_del(struct depmod *depmod, struct mod *mod) in depmod_module_del()
1098 static int depmod_module_is_higher_priority(const struct depmod *depmod, const struct mod *mod, siz… in depmod_module_is_higher_priority()
1175 static int depmod_modules_search_file(struct depmod *depmod, size_t baselen, size_t namelen, const … in depmod_modules_search_file()
1231 static int depmod_modules_search_dir(struct depmod *depmod, DIR *d, size_t baselen, struct scratchb… in depmod_modules_search_dir()
1312 static int depmod_modules_search_path(struct depmod *depmod, in depmod_modules_search_path()
1349 static int depmod_modules_search(struct depmod *depmod) in depmod_modules_search()
1374 static int depmod_modules_build_array(struct depmod *depmod) in depmod_modules_build_array()
1421 static void depmod_modules_sort(struct depmod *depmod) in depmod_modules_sort()
1471 static int depmod_symbol_add(struct depmod *depmod, const char *name, in depmod_symbol_add()
1503 static struct symbol *depmod_symbol_find(const struct depmod *depmod, in depmod_symbol_find()
1513 static int depmod_load_modules(struct depmod *depmod) in depmod_load_modules()
1554 static int depmod_load_module_dependencies(struct depmod *depmod, struct mod *mod) in depmod_load_module_dependencies()
1590 static int depmod_load_dependencies(struct depmod *depmod) in depmod_load_dependencies()
1623 static void depmod_sort_dependencies(struct depmod *depmod) in depmod_sort_dependencies()
1661 static int depmod_report_one_cycle(struct depmod *depmod, in depmod_report_one_cycle()
1716 static int depmod_report_cycles_from_root(struct depmod *depmod, in depmod_report_cycles_from_root()
1817 static void depmod_report_cycles(struct depmod *depmod, uint16_t n_mods, in depmod_report_cycles()
1880 static int depmod_calculate_dependencies(struct depmod *depmod) in depmod_calculate_dependencies()
1948 static int depmod_load(struct depmod *depmod) in depmod_load()
2037 static int output_deps(struct depmod *depmod, FILE *out) in output_deps()
2069 static int output_deps_bin(struct depmod *depmod, FILE *out) in output_deps_bin()
2141 static int output_aliases(struct depmod *depmod, FILE *out) in output_aliases()
2165 static int output_aliases_bin(struct depmod *depmod, FILE *out) in output_aliases_bin()
2211 static int output_softdeps(struct depmod *depmod, FILE *out) in output_softdeps()
2235 static int output_symbols(struct depmod *depmod, FILE *out) in output_symbols()
2256 static int output_symbols_bin(struct depmod *depmod, FILE *out) in output_symbols_bin()
2312 static int output_builtin_bin(struct depmod *depmod, FILE *out) in output_builtin_bin()
2348 static int output_devname(struct depmod *depmod, FILE *out) in output_devname()
2405 static int depmod_output(struct depmod *depmod, FILE *out) in depmod_output()
2502 static void depmod_add_fake_syms(struct depmod *depmod) in depmod_add_fake_syms()
2513 static int depmod_load_symvers(struct depmod *depmod, const char *filename) in depmod_load_symvers()
2561 static int depmod_load_system_map(struct depmod *depmod, const char *filename) in depmod_load_system_map()
2751 struct depmod depmod; in do_depmod() local