path_hash         452 libutil/gtagsop.c 			gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         484 libutil/gtagsop.c 		entry = strhash_assign(gtop->path_hash, tag, 1);
path_hash         529 libutil/gtagsop.c 		strhash_reset(gtop->path_hash);
path_hash         584 libutil/gtagsop.c 	if (gtop->path_hash) {
path_hash         585 libutil/gtagsop.c 		strhash_close(gtop->path_hash);
path_hash         586 libutil/gtagsop.c 		gtop->path_hash = NULL;
path_hash         648 libutil/gtagsop.c 		gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         668 libutil/gtagsop.c 			entry = strhash_assign(gtop->path_hash, tagline, 1);
path_hash         674 libutil/gtagsop.c 				entry->value = strhash_strdup(gtop->path_hash, cp, 0);
path_hash         686 libutil/gtagsop.c 		gtop->path_array = (char **)check_malloc(gtop->path_hash->entries * sizeof(char *));
path_hash         688 libutil/gtagsop.c 		for (entry = strhash_first(gtop->path_hash); entry != NULL; entry = strhash_next(gtop->path_hash))
path_hash         690 libutil/gtagsop.c 		if (i != gtop->path_hash->entries)
path_hash         691 libutil/gtagsop.c 			die("Something is wrong. 'i = %lu, entries = %lu'" , i, gtop->path_hash->entries);
path_hash         693 libutil/gtagsop.c 			qsort(gtop->path_array, gtop->path_hash->entries, sizeof(char *), compare_path);
path_hash         694 libutil/gtagsop.c 		gtop->path_count = gtop->path_hash->entries;
path_hash         719 libutil/gtagsop.c 		if (gtop->path_hash == NULL)
path_hash         720 libutil/gtagsop.c 			gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         722 libutil/gtagsop.c 			strhash_reset(gtop->path_hash);
path_hash         797 libutil/gtagsop.c 	if (gtop->path_hash)
path_hash         798 libutil/gtagsop.c 		strhash_close(gtop->path_hash);
path_hash         824 libutil/gtagsop.c 	for (entry = strhash_first(gtop->path_hash); entry; entry = strhash_next(gtop->path_hash)) {
path_hash         992 libutil/gtagsop.c 		sh = strhash_assign(gtop->path_hash, path, 1);
path_hash         141 libutil/gtagsop.h 	STRHASH *path_hash;