MCPcopy Index your code
hub / github.com/git/git / hashmap_get

Function hashmap_get

hashmap.c:213–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213struct hashmap_entry *hashmap_get(const struct hashmap *map,
214 const struct hashmap_entry *key,
215 const void *keydata)
216{
217 if (!map->table)
218 return NULL;
219 return *find_entry_ptr(map, key, keydata);
220}
221
222struct hashmap_entry *hashmap_get_next(const struct hashmap *map,
223 const struct hashmap_entry *entry)

Callers 7

hashmap_get_from_hashFunction · 0.85
get_worktree_pathFunction · 0.85
make_remoteFunction · 0.85
find_branchFunction · 0.85
run_dir_diffFunction · 0.85

Calls 1

find_entry_ptrFunction · 0.85

Tested by

no test coverage detected