| 503 | } |
| 504 | |
| 505 | int _go_git_indexer_new( |
| 506 | git_indexer **out, |
| 507 | const char *path, |
| 508 | unsigned int mode, |
| 509 | git_odb *odb, |
| 510 | void *progress_cb_payload) |
| 511 | { |
| 512 | git_indexer_options indexer_options = GIT_INDEXER_OPTIONS_INIT; |
| 513 | indexer_options.progress_cb = transfer_progress_callback; |
| 514 | indexer_options.progress_cb_payload = progress_cb_payload; |
| 515 | return git_indexer_new(out, path, mode, odb, &indexer_options); |
| 516 | } |
| 517 | |
| 518 | static int smart_transport_callback( |
| 519 | git_transport **out, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…