Searched refs:p_device_type (Results 1 – 4 of 4) sorted by relevance
/aosp12/system/bt/test/mock/ |
H A D | mock_btif_config.h | 52 std::function<bool(const RawAddress& bda, int* p_device_type)> body{ 53 [](const RawAddress& bda, int* p_device_type) { return false; }}; 54 bool operator()(const RawAddress& bda, int* p_device_type) { in operator() 55 return body(bda, p_device_type); in operator()
|
H A D | mock_btif_config.cc | 77 bool btif_get_device_type(const RawAddress& bda, int* p_device_type) { in btif_get_device_type() argument 79 return test::mock::btif_config::btif_get_device_type(bda, p_device_type); in btif_get_device_type()
|
/aosp12/system/bt/btif/src/ |
H A D | btif_config.cc | 129 bool btif_get_device_type(const RawAddress& bda, int* p_device_type) { in btif_get_device_type() argument 130 if (p_device_type == NULL) return false; in btif_get_device_type() 135 if (!btif_config_get_int(bd_addr_str, "DevType", p_device_type)) return false; in btif_get_device_type() 137 LOG_INFO("Device [%s] device type %d", bd_addr_str, *p_device_type); in btif_get_device_type()
|
/aosp12/system/bt/btif/include/ |
H A D | btif_config.h | 77 bool btif_get_device_type(const RawAddress& bd_addr, int* p_device_type);
|