path_hash         371 libutil/gtagsop.c 			gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         405 libutil/gtagsop.c 			strhash_reset(gtop->path_hash);
path_hash         419 libutil/gtagsop.c 		entry = strhash_assign(gtop->path_hash, key, 1);
path_hash         498 libutil/gtagsop.c 	if (gtop->path_hash) {
path_hash         499 libutil/gtagsop.c 		strhash_close(gtop->path_hash);
path_hash         500 libutil/gtagsop.c 		gtop->path_hash = NULL;
path_hash         564 libutil/gtagsop.c 		gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         583 libutil/gtagsop.c 			entry = strhash_assign(gtop->path_hash, tagline, 1);
path_hash         589 libutil/gtagsop.c 				entry->value = strhash_strdup(gtop->path_hash, cp, 0);
path_hash         601 libutil/gtagsop.c 		gtop->path_array = (char **)check_malloc(gtop->path_hash->entries * sizeof(char *));
path_hash         603 libutil/gtagsop.c 		for (entry = strhash_first(gtop->path_hash); entry != NULL; entry = strhash_next(gtop->path_hash))
path_hash         605 libutil/gtagsop.c 		if (i != gtop->path_hash->entries)
path_hash         606 libutil/gtagsop.c 			die("Something is wrong. 'i = %lu, entries = %lu'" , i, gtop->path_hash->entries);
path_hash         608 libutil/gtagsop.c 			qsort(gtop->path_array, gtop->path_hash->entries, sizeof(char *), compare_path);
path_hash         609 libutil/gtagsop.c 		gtop->path_count = gtop->path_hash->entries;
path_hash         628 libutil/gtagsop.c 		if (gtop->path_hash == NULL)
path_hash         629 libutil/gtagsop.c 			gtop->path_hash = strhash_open(HASHBUCKETS);
path_hash         631 libutil/gtagsop.c 			strhash_reset(gtop->path_hash);
path_hash         702 libutil/gtagsop.c 	if (gtop->path_hash)
path_hash         703 libutil/gtagsop.c 		strhash_close(gtop->path_hash);
path_hash         727 libutil/gtagsop.c 	for (entry = strhash_first(gtop->path_hash); entry; entry = strhash_next(gtop->path_hash)) {
path_hash         892 libutil/gtagsop.c 		sh = strhash_assign(gtop->path_hash, path, 1);
path_hash         106 libutil/gtagsop.h 	STRHASH *path_hash;