MCPcopy Create free account
hub / github.com/libgit2/git2go / pack_progress_callback

Function pack_progress_callback

wrapper.c:312–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312static int pack_progress_callback(int stage, unsigned int current, unsigned int total, void *data)
313{
314 char *error_message = NULL;
315 const int ret = packProgressCallback(
316 &error_message,
317 stage,
318 current,
319 total,
320 data
321 );
322 return set_callback_error(error_message, ret);
323}
324
325static int push_transfer_progress_callback(
326 unsigned int current,

Callers

nothing calls this directly

Calls 2

packProgressCallbackFunction · 0.85
set_callback_errorFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…