Helper to call the private File::AllocateSpace() method.
| 238 | |
| 239 | /// Helper to call the private File::AllocateSpace() method. |
| 240 | static void FileAllocateSpace( |
| 241 | TmpFile* file, int64_t num_bytes, int64_t* offset) { |
| 242 | file->AllocateSpace(num_bytes, offset); |
| 243 | } |
| 244 | |
| 245 | /// Helper to call the private FileGroup::AllocateSpace() method. |
| 246 | static Status GroupAllocateSpace(TmpFileGroup* group, int64_t num_bytes, |
nothing calls this directly
no test coverage detected