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.h47 virtual std::optional<bool> GetBool(const std::string& section,
104 return GetBool(section, property); in Get()
Dconfig_cache_helper.cc32 std::optional<bool> ConfigCacheHelper::GetBool(const std::string& section, in GetBool() function in bluetooth::storage::ConfigCacheHelper
Dstorage_module.cc303 std::optional<bool> StorageModule::GetBool(const std::string& section, in GetBool() function in bluetooth::storage::StorageModule
306 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetBool(section, property); in GetBool()
Dstorage_module.h174 std::optional<bool> GetBool(const std::string& section, const std::string& property) const;
/packages/modules/StatsD/statsd/src/
DStatsLogProcessor.cpp183 bool is_create = event.GetBool(3, &err); in onIsolatedUidChangedEventLocked()
211 trainInfo.requiresStaging = event->GetBool(3 /*requires staging field id*/, &err); in onBinaryPushStateChangedEventLocked()
212 trainInfo.rollbackEnabled = event->GetBool(4 /*rollback enabled field id*/, &err); in onBinaryPushStateChangedEventLocked()
214 event->GetBool(5 /*requires low latency monitor field id*/, &err); in onBinaryPushStateChangedEventLocked()
218 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