/packages/modules/Bluetooth/system/gd/sysprops/ |
D | sysprops_module_test.cc | 78 EXPECT_THAT(bluetooth::os::GetSystemProperty(kSupportedSyspropName), std::nullopt); in TEST_F() 79 EXPECT_THAT(bluetooth::os::GetSystemProperty(kUnsupportedSyspropName), std::nullopt); in TEST_F() 80 EXPECT_THAT(bluetooth::os::GetSystemProperty(kCorrectPrefixAflagName), std::nullopt); in TEST_F() 81 EXPECT_THAT(bluetooth::os::GetSystemProperty(kIncorrectPrefixAflagName), std::nullopt); in TEST_F() 88 bluetooth::os::GetSystemProperty(kSupportedSyspropName), in TEST_F() 90 EXPECT_THAT(bluetooth::os::GetSystemProperty(kUnsupportedSyspropName), std::nullopt); in TEST_F() 92 bluetooth::os::GetSystemProperty(kCorrectPrefixAflagName), in TEST_F() 94 EXPECT_THAT(bluetooth::os::GetSystemProperty(kIncorrectPrefixAflagName), std::nullopt); in TEST_F() 99 EXPECT_THAT(bluetooth::os::GetSystemProperty(kSupportedSyspropName), std::nullopt); in TEST_F() 100 EXPECT_THAT(bluetooth::os::GetSystemProperty(kUnsupportedSyspropName), std::nullopt); in TEST_F() [all …]
|
/packages/modules/Bluetooth/system/gd/os/ |
D | system_properties_common_test.cc | 27 using bluetooth::os::GetSystemProperty; 32 auto ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST() 36 ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST() 39 ret = GetSystemProperty("persist.bluetooth.factoryreset_do_not_exist"); in TEST() 42 ASSERT_FALSE(GetSystemProperty("persist.bluetooth.factoryreset")); in TEST()
|
D | system_properties_common.cc | 31 std::optional<std::string> result = GetSystemProperty(property); in GetSystemPropertyUint32Base() 39 std::optional<std::string> result = GetSystemProperty(property); in GetSystemPropertyBool()
|
D | system_properties.h | 34 std::optional<std::string> GetSystemProperty(const std::string& property);
|
/packages/modules/Bluetooth/system/osi/src/ |
D | properties.cc | 38 std::optional<std::string> result = bluetooth::os::GetSystemProperty(key); in osi_property_get() 59 std::optional<std::string> result = bluetooth::os::GetSystemProperty(key); in osi_property_get_int32() 68 std::optional<std::string> result = bluetooth::os::GetSystemProperty(key); in osi_property_get_bool() 78 std::optional<std::string> result = bluetooth::os::GetSystemProperty(key); in osi_property_get_uintlist()
|
/packages/modules/Bluetooth/system/gd/os/android/ |
D | system_properties.cc | 31 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function 57 auto value = GetSystemProperty("ro.vendor.build.fingerprint"); in IsRootCanalEnabled() 73 auto value = GetSystemProperty("ro.vendor.build.version.release_or_codename"); in GetAndroidVendorReleaseVersion()
|
/packages/modules/Bluetooth/system/gd/hal/ |
D | snoop_logger_test.cc | 663 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileA2dpProperty); in TEST_F() 708 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileA2dpProperty); in TEST_F() 750 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterHeadersProperty); in TEST_F() 802 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileRfcommProperty); in TEST_F() 861 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileRfcommProperty); in TEST_F() 917 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileRfcommProperty); in TEST_F() 971 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileRfcommProperty); in TEST_F() 1022 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileRfcommProperty); in TEST_F() 1084 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfilePbapModeProperty); in TEST_F() 1093 bluetooth::os::GetSystemProperty(SnoopLogger::kBtSnoopLogFilterProfileMapModeProperty); in TEST_F() [all …]
|
D | snoop_logger.cc | 580 auto filter_enabled_property = os::GetSystemProperty(itr->first); in EnableFilters() 587 auto filter_mode_property = os::GetSystemProperty(itr->first); in EnableFilters() 1384 auto max_packets_per_file_prop = os::GetSystemProperty(kBtSnoopMaxPacketsPerFileProperty); in GetMaxPacketsPerFile() 1412 auto default_mode_property = os::GetSystemProperty(kBtSnoopDefaultLogModeProperty); in GetBtSnoopMode() 1424 auto btsnoop_mode_prop = os::GetSystemProperty(kBtSnoopLogModeProperty); in GetBtSnoopMode() 1454 auto soc_manufacturer_prop = os::GetSystemProperty(kSoCManufacturerProperty); in IsQualcommDebugLogEnabled()
|
D | hci_backend_hidl.cc | 100 auto board_name = os::GetSystemProperty(kBoardProperty); in HidlHci()
|
/packages/modules/Bluetooth/floss/libflags/ |
D | get_flags.cc | 28 return bluetooth::os::GetSystemProperty(prop_name).value_or(default_value); in GetServerConfigurableFlag()
|
/packages/modules/Bluetooth/floss/android-base/ |
D | properties.cc | 26 return bluetooth::os::GetSystemProperty(key).value_or(default_value); in GetProperty()
|
/packages/modules/Bluetooth/system/gd/os/chromeos/ |
D | system_properties.cc | 35 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
|
/packages/modules/Bluetooth/system/gd/os/host/ |
D | system_properties.cc | 31 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
|
/packages/modules/Bluetooth/system/gd/os/linux/ |
D | system_properties.cc | 35 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
|
/packages/modules/Bluetooth/system/gd/shim/ |
D | dumpsys.cc | 80 return (os::GetSystemProperty(kReadOnlyDebuggableProperty) == "1"); in IsDebuggable()
|
/packages/modules/Bluetooth/system/gd/storage/ |
D | storage_module.cc | 151 if (os::GetSystemProperty(kFactoryResetProperty) == "true") { in Start()
|
/packages/modules/Bluetooth/system/gd/hci/ |
D | le_scanning_manager.cc | 312 auto compensation_prop = os::GetSystemProperty(kLeRxPathLossCompProperty); in get_rx_path_loss_compensation()
|
D | le_advertising_manager.cc | 195 auto compensation_prop = os::GetSystemProperty(kLeTxPathLossCompProperty); in get_tx_path_loss_compensation()
|