Home | History | Annotate | Download | only in libkmod

Lines Matching defs:pre

1077 	struct kmod_list *pre = NULL, *post = NULL, *l;
1080 err = kmod_module_get_softdeps(mod, &pre, &post);
1087 kmod_list_foreach(l, pre) {
1101 mod->ignorecmd = (pre != NULL || post != NULL);
1111 kmod_module_unref_list(pre);
1510 * @pre: where to save the list of preceding soft dependencies.
1519 * Both @pre and @post are newly created list of kmod_module and
1525 struct kmod_list **pre,
1531 if (mod == NULL || pre == NULL || post == NULL)
1534 assert(*pre == NULL);
1548 *pre = lookup_softdep(mod->ctx, array, count);