Home
last modified time | relevance | path

Searched refs:StorageId (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/incremental/
DIncrementalService.h59 using StorageId = int; variable
86 using IfsStateCallback = std::function<bool(StorageId, IfsState)>;
97 static constexpr StorageId kInvalidStorageId = -1;
98 static constexpr StorageId kMaxStorageId = std::numeric_limits<int>::max() - 1;
99 static constexpr StorageId kAllStoragesId = kMaxStorageId + 1;
154 StorageId createStorage(std::string_view mountPoint,
157 StorageId createLinkedStorage(std::string_view mountPoint, StorageId linkedStorage,
159 StorageId openStorage(std::string_view path);
161 bool startLoading(StorageId storage, content::pm::DataLoaderParamsParcel dataLoaderParams,
166 void onInstallationComplete(StorageId storage);
[all …]
DIncrementalService.cpp259 auto IncrementalService::IncFsMount::makeStorage(StorageId id) -> StorageMap::iterator { in makeStorage()
580 StorageId IncrementalService::createStorage(std::string_view mountPoint, in createStorage()
726 StorageId IncrementalService::createLinkedStorage(std::string_view mountPoint, in createLinkedStorage()
727 StorageId linkedStorage, in createLinkedStorage()
768 bool IncrementalService::startLoading(StorageId storageId, in startLoading()
848 void IncrementalService::onInstallationComplete(StorageId storage) { in onInstallationComplete()
865 StorageId IncrementalService::findStorageId(std::string_view path) const { in findStorageId()
874 void IncrementalService::disallowReadLogs(StorageId storageId) { in disallowReadLogs()
900 int IncrementalService::setStorageParams(StorageId storageId, bool enableReadLogs) { in setStorageParams()
1003 void IncrementalService::deleteStorage(StorageId storageId) { in deleteStorage()
[all …]