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

Function error_errno

usage.c:279–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277
278#undef error_errno
279int error_errno(const char *fmt, ...)
280{
281 char buf[1024];
282 va_list params;
283
284 va_start(params, fmt);
285 error_routine(fmt_with_err(buf, sizeof(buf), fmt), params);
286 va_end(params);
287 return -1;
288}
289
290#undef error
291int error(const char *err, ...)

Callers 15

open_midx_bitmap_1Function · 0.85
open_pack_bitmap_1Function · 0.85
write_entryFunction · 0.85
checkout_entry_caFunction · 0.85
create_pack_fileFunction · 0.85
enable_keepaliveFunction · 0.85
write_one_objectFunction · 0.85
grep_source_load_fileFunction · 0.85
check_collisionFunction · 0.85

Calls 1

fmt_with_errFunction · 0.85

Tested by 3

daemon__run_serverFunction · 0.68
cmd__genrandomFunction · 0.68
cmd__path_utilsFunction · 0.68