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