Home
last modified time | relevance | path

Searched refs:fetcher (Results 1 – 8 of 8) sorted by relevance

/aosp14/system/core/fs_mgr/libsnapshot/
H A Dutility.cpp224 auto fetcher = IPropertyFetcher::GetInstance(); in GetLegacyCompressionEnabledProperty() local
225 return fetcher->GetBoolProperty("ro.virtual_ab.compression.enabled", false); in GetLegacyCompressionEnabledProperty()
229 auto fetcher = IPropertyFetcher::GetInstance(); in GetUserspaceSnapshotsEnabledProperty() local
230 return fetcher->GetBoolProperty("ro.virtual_ab.userspace.snapshots.enabled", false); in GetUserspaceSnapshotsEnabledProperty()
238 auto fetcher = IPropertyFetcher::GetInstance(); in CanUseUserspaceSnapshots() local
263 auto fetcher = IPropertyFetcher::GetInstance(); in GetIouringEnabledProperty() local
264 return fetcher->GetBoolProperty("ro.virtual_ab.io_uring.enabled", false); in GetIouringEnabledProperty()
268 auto fetcher = IPropertyFetcher::GetInstance(); in GetXorCompressionEnabledProperty() local
269 return fetcher->GetBoolProperty("ro.virtual_ab.compression.xor.enabled", false); in GetXorCompressionEnabledProperty()
281 auto fetcher = IPropertyFetcher::GetInstance(); in IsDmSnapshotTestingEnabled() local
[all …]
H A Dsnapshot_test.cpp162 auto fetcher = std::make_unique<SnapshotTestPropertyFetcher>("_a", std::move(properties)); in SetupProperties() local
163 IPropertyFetcher::OverrideForTesting(std::move(fetcher)); in SetupProperties()
/aosp14/system/core/fs_mgr/liblp/
H A Dproperty_fetcher.cpp43 void IPropertyFetcher::OverrideForTesting(std::unique_ptr<IPropertyFetcher>&& fetcher) { in OverrideForTesting() argument
44 GetInstanceAllocation()->swap(fetcher); in OverrideForTesting()
45 fetcher.reset(); in OverrideForTesting()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/
H A DSwipeChipbarAwayGestureHandler.kt59 fun setViewFetcher(fetcher: () -> View?) {
60 viewFetcher = fetcher
/aosp14/frameworks/base/packages/StatementService/src/com/android/statementservice/network/retriever/
H A DStatementRetriever.kt52 private val fetcher = UrlFetcher() regex
102 val webResponse = fetcher.fetch(
/aosp14/system/core/fastboot/device/
H A Dcommands.cpp758 PartitionFetcher fetcher(device, args); in Fetch() local
759 if (fetcher.Open()) { in Fetch()
760 fetcher.Fetch(); in Fetch()
762 CHECK(fetcher.ret_.has_value()); in Fetch()
763 return *fetcher.ret_; in Fetch()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/
H A DBatteryMeterView.java257 void setBatteryEstimateFetcher(BatteryEstimateFetcher fetcher) { in setBatteryEstimateFetcher() argument
258 mBatteryEstimateFetcher = fetcher; in setBatteryEstimateFetcher()
/aosp14/frameworks/base/core/java/android/app/
H A DSystemServiceRegistry.java1626 final ServiceFetcher<?> fetcher = SYSTEM_SERVICE_FETCHERS.get(name); in getSystemService() local
1627 if (fetcher == null) { in getSystemService()
1634 final Object ret = fetcher.getService(ctx); in getSystemService()