Lines Matching refs:kmod_elf
153 struct kmod_elf *kmod_file_get_elf(struct kmod_file *file) __attribute__((nonnull(1)));
161 struct kmod_elf;
168 struct kmod_elf *kmod_elf_new(const void *memory, off_t size) _must_check_ __attribute__((nonnull(1…
169 void kmod_elf_unref(struct kmod_elf *elf) __attribute__((nonnull(1)));
170 const void *kmod_elf_get_memory(const struct kmod_elf *elf) _must_check_ __attribute__((nonnull(1))…
171 int kmod_elf_get_strings(const struct kmod_elf *elf, const char *section, char ***array) _must_chec…
172 int kmod_elf_get_modversions(const struct kmod_elf *elf, struct kmod_modversion **array) _must_chec…
173 int kmod_elf_get_symbols(const struct kmod_elf *elf, struct kmod_modversion **array) _must_check_ _…
174 int kmod_elf_get_dependency_symbols(const struct kmod_elf *elf, struct kmod_modversion **array) _mu…
175 int kmod_elf_strip_section(struct kmod_elf *elf, const char *section) _must_check_ __attribute__((n…
176 int kmod_elf_strip_vermagic(struct kmod_elf *elf) _must_check_ __attribute__((nonnull(1)));
182 int kmod_elf_get_section(const struct kmod_elf *elf, const char *section, const void **buf, uint64_…