Searched refs:GetBool (Results 1 – 8 of 8) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | config_cache_helper_test.cc | 38 ASSERT_THAT(ConfigCacheHelper(config).GetBool("A", "B"), Optional(IsTrue())); in TEST() 42 ASSERT_THAT(ConfigCacheHelper(config).GetBool("A", "B"), Optional(IsFalse())); in TEST()
|
D | config_cache_helper.h | 47 virtual std::optional<bool> GetBool(const std::string& section, 104 return GetBool(section, property); in Get()
|
D | config_cache_helper.cc | 32 std::optional<bool> ConfigCacheHelper::GetBool(const std::string& section, in GetBool() function in bluetooth::storage::ConfigCacheHelper
|
D | storage_module.cc | 303 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()
|
D | storage_module.h | 174 std::optional<bool> GetBool(const std::string& section, const std::string& property) const;
|
/packages/modules/StatsD/statsd/src/ |
D | StatsLogProcessor.cpp | 183 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/ |
D | LogEvent.h | 160 bool GetBool(size_t key, status_t* err) const;
|
D | LogEvent.cpp | 681 bool LogEvent::GetBool(size_t key, status_t* err) const { in GetBool() function in android::os::statsd::LogEvent
|