entry              70 htags/incop.c  	struct sh_entry *entry;
entry              73 htags/incop.c  	entry = strhash_assign(head_inc, HASH_KEY(file), 1);
entry              74 htags/incop.c  	data = entry->value;
entry              80 htags/incop.c  		data->name = entry->name;
entry              87 htags/incop.c  		entry->value = data;
entry             101 htags/incop.c  	struct sh_entry *entry = strhash_assign(head_inc, HASH_KEY(name), 0);
entry             103 htags/incop.c  	return entry ? entry->value : NULL;
entry             113 htags/incop.c  	struct sh_entry *entry = strhash_first(head_inc);
entry             115 htags/incop.c  	return entry ? entry->value : NULL;
entry             125 htags/incop.c  	struct sh_entry *entry = strhash_next(head_inc);
entry             127 htags/incop.c  	return entry ? entry->value : NULL;
entry              79 libdb/mpool.c  	int entry;
entry              98 libdb/mpool.c  	for (entry = 0; entry < HASHSIZE; ++entry)
entry              99 libdb/mpool.c  		CIRCLEQ_INIT(&mp->hqh[entry]);
entry             393 libutil/gtagsop.c 		struct sh_entry *entry;
entry             419 libutil/gtagsop.c 		entry = strhash_assign(gtop->path_hash, key, 1);
entry             420 libutil/gtagsop.c 		if (entry->value == NULL)
entry             421 libutil/gtagsop.c 			entry->value = varray_open(sizeof(int), 100);
entry             422 libutil/gtagsop.c 		lno = varray_append((VARRAY *)entry->value);
entry             559 libutil/gtagsop.c 		struct sh_entry *entry;
entry             583 libutil/gtagsop.c 			entry = strhash_assign(gtop->path_hash, tagline, 1);
entry             585 libutil/gtagsop.c 			if (entry->value == NULL) {
entry             589 libutil/gtagsop.c 				entry->value = strhash_strdup(gtop->path_hash, cp, 0);
entry             603 libutil/gtagsop.c 		for (entry = strhash_first(gtop->path_hash); entry != NULL; entry = strhash_next(gtop->path_hash))
entry             604 libutil/gtagsop.c 			gtop->path_array[i++] = entry->value;
entry             716 libutil/gtagsop.c 	struct sh_entry *entry;
entry             727 libutil/gtagsop.c 	for (entry = strhash_first(gtop->path_hash); entry; entry = strhash_next(gtop->path_hash)) {
entry             728 libutil/gtagsop.c 		VARRAY *vb = (VARRAY *)entry->value;
entry             730 libutil/gtagsop.c 		const char *key = entry->name;
entry             741 libutil/gtagsop.c 			if ((key = locatestring(entry->name, ".", MATCH_LAST)) != NULL)
entry             743 libutil/gtagsop.c 			else if ((key = locatestring(entry->name, "::", MATCH_LAST)) != NULL)
entry             746 libutil/gtagsop.c 				key = entry->name;
entry             755 libutil/gtagsop.c 			strbuf_puts(gtop->sb, compress(entry->name, key));
entry             757 libutil/gtagsop.c 			strbuf_puts(gtop->sb, entry->name);
entry             119 libutil/linetable.c 	int *entry;
entry             123 libutil/linetable.c 	entry = varray_assign(vb, lineno - 1, 1);
entry             124 libutil/linetable.c 	*entry = offset;
entry             113 libutil/strhash.c 	struct sh_entry *entry;
entry             118 libutil/strhash.c 	SLIST_FOREACH(entry, head, ptr)
entry             119 libutil/strhash.c 		if (strcmp(entry->name, name) == 0)
entry             124 libutil/strhash.c 	if (entry == NULL && force) {
entry             125 libutil/strhash.c 		entry = pool_malloc(sh->pool, sizeof(struct sh_entry));
entry             126 libutil/strhash.c 		entry->name = pool_strdup(sh->pool, name, 0);
entry             127 libutil/strhash.c 		entry->value = NULL;
entry             128 libutil/strhash.c 		SLIST_INSERT_HEAD(head, entry, ptr);
entry             131 libutil/strhash.c 	return entry;
entry             167 libutil/strhash.c 	struct sh_entry *entry = NULL;
entry             170 libutil/strhash.c 		entry = sh->cur_entry;
entry             171 libutil/strhash.c 		if (entry == NULL) {
entry             173 libutil/strhash.c 				entry = SLIST_FIRST(&sh->htab[sh->cur_bucket]);
entry             174 libutil/strhash.c 				if (entry)
entry             178 libutil/strhash.c 		sh->cur_entry = (entry) ? SLIST_NEXT(entry, ptr) : NULL;
entry             180 libutil/strhash.c 	return entry;