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

Function git_inflate_init

git-zlib.c:88–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88void git_inflate_init(git_zstream *strm)
89{
90 int status;
91
92 zlib_pre_call(strm);
93 status = inflateInit(&strm->z);
94 zlib_post_call(strm, status);
95 if (status == Z_OK)
96 return;
97 die("inflateInit: %s (%s)", zerr_to_string(status),
98 strm->z.msg ? strm->z.msg : "no message");
99}
100
101void git_inflate_init_gzip_only(git_zstream *strm)
102{

Callers 12

unpack_loose_headerFunction · 0.85
new_http_object_requestFunction · 0.85
get_size_from_deltaFunction · 0.85
unpack_compressed_entryFunction · 0.85
inflate_itFunction · 0.85
cmd__zlibFunction · 0.85
unpack_entry_dataFunction · 0.85
unpack_dataFunction · 0.85
check_pack_inflateFunction · 0.85
get_dataFunction · 0.85
stream_blobFunction · 0.85

Calls 4

zlib_pre_callFunction · 0.85
zlib_post_callFunction · 0.85
zerr_to_stringFunction · 0.85
dieFunction · 0.70

Tested by 1

cmd__zlibFunction · 0.68