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

Function odb_close

odb.c:1030–1036  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1028}
1029
1030void odb_close(struct object_database *o)
1031{
1032 struct odb_source *source;
1033 for (source = o->sources; source; source = source->next)
1034 odb_source_close(source);
1035 close_commit_graph(o);
1036}
1037
1038static void odb_free_sources(struct object_database *o)
1039{

Callers 7

write_midx_internalFunction · 0.85
start_commandFunction · 0.85
cmd_deleteFunction · 0.85
odb_freeFunction · 0.85
cmd_cloneFunction · 0.85
cmd_gcFunction · 0.85
cmd_repackFunction · 0.85

Calls 2

odb_source_closeFunction · 0.85
close_commit_graphFunction · 0.85

Tested by

no test coverage detected