Lines Matching refs:tmp
50 pkg_list *tmp; in processed_package() local
53 for (tmp = packages[bucket]; tmp != NULL; tmp = tmp->next) { in processed_package()
54 if (strcmp(tmp->pkg_name, pkgname) == 0) in processed_package()
64 pkg_list *tmp; in mark_processed() local
67 tmp = malloc(sizeof (pkg_list)); in mark_processed()
68 bzero(tmp, sizeof (pkg_list)); in mark_processed()
69 (void) strcpy(tmp->pkg_name, pkgname); in mark_processed()
70 tmp->next = packages[bucket]; in mark_processed()
71 packages[bucket] = tmp; in mark_processed()
77 pkg_list *tmp; in add_dependency() local
88 for (tmp = dependlist; tmp->next != NULL; tmp = tmp->next) { in add_dependency()
91 tmp->next = pkg; in add_dependency()
98 pkg_list *tmp; in free_dependency_list() local
101 tmp = dependlist; in free_dependency_list()
103 tmp->next = NULL; in free_dependency_list()
104 free(tmp); in free_dependency_list()
112 pkg_list *tmp; in print_dependencies() local
115 for (tmp = dependlist; tmp != NULL; tmp = tmp->next) in print_dependencies()
116 fprintf(stderr, " %s", tmp->pkg_name); in print_dependencies()
223 pkg_list *tmp; in process_dependencies() local
232 for (tmp = dependlist; tmp != NULL; tmp = tmp->next) { in process_dependencies()
233 (void) sprintf(pkgdir, "%s/%s", parentdir, tmp->pkg_name); in process_dependencies()
234 count += process_package_dir(tmp->pkg_name, pkgdir, list, in process_dependencies()