| 625 | } |
| 626 | |
| 627 | static int odb_source_loose_write_object_stream(struct odb_source *source, |
| 628 | struct odb_write_stream *in_stream, |
| 629 | size_t len, |
| 630 | struct object_id *oid) |
| 631 | { |
| 632 | /* |
| 633 | * TODO: the implementation should be moved here, see the comment on |
| 634 | * the called function in "object-file.h". |
| 635 | */ |
| 636 | struct odb_source_loose *loose = odb_source_loose_downcast(source); |
| 637 | return odb_source_loose_write_stream(loose, in_stream, len, oid); |
| 638 | } |
| 639 | |
| 640 | static int odb_source_loose_begin_transaction(struct odb_source *source UNUSED, |
| 641 | struct odb_transaction **out UNUSED) |
nothing calls this directly
no test coverage detected