* Count the number of objects in the given object database source. * * Returns 0 on success, a negative error code otherwise. */
| 372 | * Returns 0 on success, a negative error code otherwise. |
| 373 | */ |
| 374 | static inline int odb_source_count_objects(struct odb_source *source, |
| 375 | enum odb_count_objects_flags flags, |
| 376 | unsigned long *out) |
| 377 | { |
| 378 | return source->count_objects(source, flags, out); |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | * Determine the minimum required length to make the given object ID unique in |
no outgoing calls