Home
last modified time | relevance | path

Searched refs:reserveSpace (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/incremental/
DServiceWrappers.cpp236 ErrorCode reserveSpace(const Control& control, FileId id, IncFsSize size) const final { in reserveSpace() function in android::incremental::RealIncFs
237 return incfs::reserveSpace(control, id, size); in reserveSpace()
DServiceWrappers.h120 virtual ErrorCode reserveSpace(const Control& control, FileId id, IncFsSize size) const = 0;
DIncrementalService.cpp1207 if (auto err = mIncFs->reserveSpace(ifs->control, id, params.size)) { in makeFile()
1807 mIncFs->reserveSpace(control, fileId, -1); in trimReservedSpaceV1()
/frameworks/base/services/incremental/test/
DIncrementalServiceTest.cpp410 MOCK_CONST_METHOD3(reserveSpace, ErrorCode(const Control& control, FileId id, IncFsSize size));
424 ON_CALL(*this, reserveSpace(_, _, _)).WillByDefault(Return(0)); in MockIncFs()