Searched refs:p_eir_uuid (Results 1 – 4 of 4) sorted by relevance
/system/bt/stack/include/ |
D | btm_api.h | 1498 extern bool BTM_HasEirService(const uint32_t* p_eir_uuid, uint16_t uuid16); 1530 extern void BTM_AddEirService(uint32_t* p_eir_uuid, uint16_t uuid16); 1545 extern void BTM_RemoveEirService(uint32_t* p_eir_uuid, uint16_t uuid16); 1563 extern uint8_t BTM_GetEirSupportedServices(uint32_t* p_eir_uuid, uint8_t** p,
|
/system/bt/main/shim/ |
D | btm_api.h | 370 bool BTM_HasEirService(const uint32_t* p_eir_uuid, uint16_t uuid16); 402 void BTM_AddEirService(uint32_t* p_eir_uuid, uint16_t uuid16); 417 void BTM_RemoveEirService(uint32_t* p_eir_uuid, uint16_t uuid16); 435 uint8_t BTM_GetEirSupportedServices(uint32_t* p_eir_uuid, uint8_t** p,
|
D | btm_api.cc | 717 bool bluetooth::shim::BTM_HasEirService(const uint32_t* p_eir_uuid, in BTM_HasEirService() argument 720 CHECK(p_eir_uuid != nullptr); in BTM_HasEirService() 731 void bluetooth::shim::BTM_AddEirService(uint32_t* p_eir_uuid, uint16_t uuid16) { in BTM_AddEirService() argument 733 CHECK(p_eir_uuid != nullptr); in BTM_AddEirService() 736 void bluetooth::shim::BTM_RemoveEirService(uint32_t* p_eir_uuid, in BTM_RemoveEirService() argument 739 CHECK(p_eir_uuid != nullptr); in BTM_RemoveEirService() 742 uint8_t bluetooth::shim::BTM_GetEirSupportedServices(uint32_t* p_eir_uuid, in BTM_GetEirSupportedServices() argument 747 CHECK(p_eir_uuid != nullptr); in BTM_GetEirSupportedServices()
|
/system/bt/stack/btm/ |
D | btm_inq.cc | 2123 bool BTM_HasEirService(const uint32_t* p_eir_uuid, uint16_t uuid16) { in BTM_HasEirService() argument 2128 return (BTM_EIR_HAS_SERVICE(p_eir_uuid, service_id)); in BTM_HasEirService() 2171 void BTM_AddEirService(uint32_t* p_eir_uuid, uint16_t uuid16) { in BTM_AddEirService() argument 2176 BTM_EIR_SET_SERVICE(p_eir_uuid, service_id); in BTM_AddEirService() 2192 void BTM_RemoveEirService(uint32_t* p_eir_uuid, uint16_t uuid16) { in BTM_RemoveEirService() argument 2197 BTM_EIR_CLR_SERVICE(p_eir_uuid, service_id); in BTM_RemoveEirService() 2216 uint8_t BTM_GetEirSupportedServices(uint32_t* p_eir_uuid, uint8_t** p, in BTM_GetEirSupportedServices() argument 2225 if (BTM_EIR_HAS_SERVICE(p_eir_uuid, service_index)) { in BTM_GetEirSupportedServices()
|