| 171 | } |
| 172 | |
| 173 | static int odb_source_files_write_object_stream(struct odb_source *source, |
| 174 | struct odb_write_stream *stream, |
| 175 | size_t len, |
| 176 | struct object_id *oid) |
| 177 | { |
| 178 | struct odb_source_files *files = odb_source_files_downcast(source); |
| 179 | return odb_source_write_object_stream(&files->loose->base, stream, len, oid); |
| 180 | } |
| 181 | |
| 182 | static int odb_source_files_begin_transaction(struct odb_source *source, |
| 183 | struct odb_transaction **out) |
nothing calls this directly
no test coverage detected