Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper_test.cc38 ASSERT_THAT(ConfigCacheHelper(config).GetBool("A", "B"), Optional(IsTrue())); in TEST()
42 ASSERT_THAT(ConfigCacheHelper(config).GetBool("A", "B"), Optional(IsFalse())); in TEST()
Dconfig_cache_helper.h46 …virtual std::optional<bool> GetBool(const std::string& section, const std::string& property) const;
94 return GetBool(section, property); in Get()
Dconfig_cache_helper.cc31 std::optional<bool> ConfigCacheHelper::GetBool(const std::string& section, const std::string& prope… in GetBool() function in bluetooth::storage::ConfigCacheHelper
Dstorage_module.cc301 std::optional<bool> StorageModule::GetBool( in GetBool() function in bluetooth::storage::StorageModule
304 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetBool(section, property); in GetBool()
Dstorage_module.h166 std::optional<bool> GetBool(const std::string& section, const std::string& property) const;
/packages/modules/StatsD/statsd/src/
DStatsLogProcessor.cpp171 bool is_create = event.GetBool(3, &err); in onIsolatedUidChangedEventLocked()
199 trainInfo.requiresStaging = event->GetBool(3 /*requires staging field id*/, &err); in onBinaryPushStateChangedEventLocked()
200 trainInfo.rollbackEnabled = event->GetBool(4 /*rollback enabled field id*/, &err); in onBinaryPushStateChangedEventLocked()
202 event->GetBool(5 /*requires low latency monitor field id*/, &err); in onBinaryPushStateChangedEventLocked()
206 bool is_rollback = event->GetBool(10 /*is rollback field id*/, &err); in onBinaryPushStateChangedEventLocked()
/packages/modules/StatsD/statsd/src/logd/
DLogEvent.h160 bool GetBool(size_t key, status_t* err) const;
DLogEvent.cpp681 bool LogEvent::GetBool(size_t key, status_t* err) const { in GetBool() function in android::os::statsd::LogEvent