Home
last modified time | relevance | path

Searched refs:p_device_type (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/bt/test/mock/
H A Dmock_btif_config.h52 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 Dmock_btif_config.cc77 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 Dbtif_config.cc129 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 Dbtif_config.h77 bool btif_get_device_type(const RawAddress& bd_addr, int* p_device_type);