Home
last modified time | relevance | path

Searched refs:GetSystemPropertyUint32 (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/gd/hci/acl_manager/
Dle_impl.h689 os::GetSystemPropertyUint32(kPropertyDirectConnTimeout, kCreateConnectionTimeoutMs); in direct_connect_add()
823 …uint16_t le_scan_interval = os::GetSystemPropertyUint32(kPropertyConnScanIntervalSlow, kScanInterv… in arm_connectability()
824 …uint16_t le_scan_window = os::GetSystemPropertyUint32(kPropertyConnScanWindowSlow, kScanWindowSlow… in arm_connectability()
829 … le_scan_interval = os::GetSystemPropertyUint32(kPropertyConnScanIntervalFast, kScanIntervalFast); in arm_connectability()
830 le_scan_window = os::GetSystemPropertyUint32(kPropertyConnScanWindowFast, kScanWindowFast); in arm_connectability()
831 … le_scan_window_2m = os::GetSystemPropertyUint32(kPropertyConnScanWindow2mFast, kScanWindow2mFast); in arm_connectability()
832 …le_scan_window_coded = os::GetSystemPropertyUint32(kPropertyConnScanWindowCodedFast, kScanWindowCo… in arm_connectability()
836 le_scan_interval = os::GetSystemPropertyUint32( in arm_connectability()
838 le_scan_window = os::GetSystemPropertyUint32( in arm_connectability()
846 …uint16_t conn_interval_min = os::GetSystemPropertyUint32(kPropertyMinConnInterval, kConnIntervalMi… in arm_connectability()
[all …]
/packages/modules/Bluetooth/system/gd/
Dstack_manager.cc100 auto gd_timeout = os::GetSystemPropertyUint32( in get_gd_stack_timeout_ms()
104 gd_timeout * os::GetSystemPropertyUint32("ro.hw_timeout_multiplier", in get_gd_stack_timeout_ms()
/packages/modules/Bluetooth/system/gd/os/
Dsystem_properties.h38 uint32_t GetSystemPropertyUint32(const std::string& property, uint32_t default_value);
Dsystem_properties_common.cc25 uint32_t GetSystemPropertyUint32(const std::string& property, uint32_t default_value) { in GetSystemPropertyUint32() function
Dsystem_properties_common_test.cc50 ASSERT_EQ(bluetooth::os::GetSystemPropertyUint32(property, 0), value); in TEST()