Helper to call the private FileGroup::AllocateSpace() method.
| 244 | |
| 245 | /// Helper to call the private FileGroup::AllocateSpace() method. |
| 246 | static Status GroupAllocateSpace(TmpFileGroup* group, int64_t num_bytes, |
| 247 | TmpFile** file, int64_t* offset) { |
| 248 | return group->AllocateSpace(num_bytes, file, offset); |
| 249 | } |
| 250 | |
| 251 | /// Helper to set FileGroup::next_allocation_index_. |
| 252 | static void SetNextAllocationIndex(TmpFileGroup* group, int priority, int value) { |
nothing calls this directly
no test coverage detected