MCPcopy Create free account
hub / github.com/git/git / packfile_list_find_oid

Function packfile_list_find_oid

packfile.c:125–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125struct packed_git *packfile_list_find_oid(struct packfile_list_entry *packs,
126 const struct object_id *oid)
127{
128 for (; packs; packs = packs->next)
129 if (find_pack_entry_one(oid, packs->pack))
130 return packs->pack;
131 return NULL;
132}
133
134void pack_report(struct repository *repo)
135{

Callers 5

http_fetch_packFunction · 0.85
start_fetch_packedFunction · 0.85
add_send_requestFunction · 0.85
store_objectFunction · 0.85
stream_blobFunction · 0.85

Calls 1

find_pack_entry_oneFunction · 0.85

Tested by

no test coverage detected