HomeSort by: relevance | last modified time | path
    Searched defs:best_installed (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/pkg_install/dist/create/
perform.c 70 char *best_installed; local
71 best_installed = find_best_matching_installed_pkg(cp, 1);
72 if (best_installed != NULL) {
73 add_plist(plist, PLIST_BLDDEP, best_installed);
78 free(best_installed);
  /src/external/bsd/pkg_install/dist/admin/
main.c 323 char *best_installed; local
326 best_installed = find_best_matching_installed_pkg(pattern, 1);
327 if (best_installed == NULL) {
333 * Find correct reqd_by head based on hash of best_installed, which is
336 phead = &hash[PKG_HASH_ENTRY(best_installed)];
342 if (strcmp(pkg->pkgname, best_installed) == 0) {
370 pkg->pkgname = xstrdup(best_installed);
382 free(best_installed);
  /src/external/bsd/pkg_install/dist/add/
perform.c 1229 char *best_installed; local
1264 best_installed = find_best_matching_installed_pkg(p->name, 0);
1265 if (best_installed == NULL) {
1271 if (strcmp(best_installed, pkg->dependencies[i]) == 0)
1276 free(best_installed);
1285 pkg->dependencies[pkg->dep_length++] = best_installed;

Completed in 15 milliseconds