Lines Matching full:dependency

3  * compilation of a list of packages into a world dependency set
25 * The `queue` module provides an interface that allows easily building a dependency graph from an
27 * dependency graph prior to working with it.
29 * Using the `queue` module functions is the recommended way of working with dependency graphs.
37 * Pushes a requested dependency onto the dependency resolver's queue.
39 * :param pkgconf_list_t* list: the dependency resolution queue to add the package request to.
40 * :param char* package: the dependency atom requested
57 …* Compile a dependency resolution queue into a dependency resolution problem if possible, other…
59 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
60 * :param pkgconf_pkg_t* world: The designated root of the dependency graph.
61 * :param pkgconf_list_t* list: The list of dependency requests to consider.
62 * :return: true if the built dependency resolution problem is consistent, else false
86 * Release any memory related to a dependency resolution queue.
88 * :param pkgconf_list_t* list: The dependency resolution queue to release.
153 PKGCONF_TRACE(client, "WTF: unmatched dependency %p <%s>", dep, dep->package); in pkgconf_queue_collect_dependencies_walk()
283 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
284 …* :param pkgconf_pkg_t* world: The root for the generated dependency graph. Should have PKGCON…
304 * Solves and flattens the dependency graph for the supplied dependency list.
306 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
307 * :param pkgconf_list_t* list: The list of dependency requests to consider.
308 …* :param pkgconf_pkg_t* world: The root for the generated dependency graph, provided by the cal…
309 …* :param int maxdepth: The maximum allowed depth for the dependency resolver. A depth of -1 me…
310 * :returns: true if the dependency resolver found a solution, otherwise false.
334 …* Attempt to compile a dependency resolution queue into a dependency resolution problem, then a…
335 * feed the solution to a callback function if a complete dependency graph is found.
339 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
340 * :param pkgconf_list_t* list: The list of dependency requests to consider.
341 …apply_func_t func: The callback function to call if a solution is found by the dependency resolver.
342 …* :param int maxdepth: The maximum allowed depth for the dependency resolver. A depth of -1 me…
344 * :returns: true if the dependency resolver found a solution, otherwise false.
364 /* the world dependency set is flattened after it is returned from pkgconf_queue_verify */ in pkgconf_queue_apply()
380 …* Attempt to compile a dependency resolution queue into a dependency resolution problem, then a…
382 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
383 * :param pkgconf_list_t* list: The list of dependency requests to consider.
384 …* :param int maxdepth: The maximum allowed depth for the dependency resolver. A depth of -1 me…
385 * :returns: true if the dependency resolver found a solution, otherwise false.