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

Function strmap_get

strmap.c:128–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128void *strmap_get(struct strmap *map, const char *str)
129{
130 struct strmap_entry *entry = find_strmap_entry(map, str);
131 return entry ? entry->value : NULL;
132}
133
134int strmap_contains(struct strmap *map, const char *str)
135{

Callers 15

path_msgFunction · 0.85
handle_deferred_entriesFunction · 0.85
initialize_attr_indexFunction · 0.85
path_in_wayFunction · 0.85
compute_collisionsFunction · 0.85
process_renamesFunction · 0.85
use_cached_pairsFunction · 0.85
idx_possible_renameFunction · 0.85

Calls 1

find_strmap_entryFunction · 0.85

Tested by 1

command_loopFunction · 0.68