/packages/modules/Bluetooth/system/bta/test/ |
D | bta_hf_client_test.cc | 46 uint16_t p_handle = 0; in TEST_F() local 47 bool status = bta_hf_client_allocate_handle(bdaddr1, &p_handle); in TEST_F() 51 EXPECT_GT(p_handle, 0); in TEST_F() 56 uint16_t p_handle; in TEST_F() local 57 bool status = bta_hf_client_allocate_handle(bdaddr1, &p_handle); in TEST_F() 61 EXPECT_GT(p_handle, 0); in TEST_F() 65 status = bta_hf_client_allocate_handle(bdaddr1, &p_handle); in TEST_F()
|
D | bta_hf_client_security_test.cc | 47 uint16_t p_handle; in TEST_F() local 48 bool status = bta_hf_client_allocate_handle(bdaddr1, &p_handle); in TEST_F() 54 ASSERT_GT(p_handle, 0); in TEST_F()
|
/packages/modules/Bluetooth/system/bta/hf_client/ |
D | bta_hf_client_api.cc | 90 bt_status_t BTA_HfClientOpen(const RawAddress& bd_addr, uint16_t* p_handle) { in BTA_HfClientOpen() argument 95 if (!bta_hf_client_allocate_handle(bd_addr, p_handle)) { in BTA_HfClientOpen() 101 p_buf->hdr.layer_specific = *p_handle; in BTA_HfClientOpen()
|
D | bta_hf_client_main.cc | 595 uint16_t* p_handle) { in bta_hf_client_allocate_handle() argument 613 *p_handle = client_cb->handle; in bta_hf_client_allocate_handle()
|
D | bta_hf_client_int.h | 227 uint16_t* p_handle);
|
/packages/modules/Bluetooth/system/bta/dm/ |
D | bta_dm_api.cc | 144 uint32_t* p_handle) { in BTA_DmSetLocalDiRecord() argument 149 (tSDP_DI_RECORD*)p_device_info, p_handle) == SDP_SUCCESS) { in BTA_DmSetLocalDiRecord() 151 bta_dm_di_cb.di_handle[bta_dm_di_cb.di_num] = *p_handle; in BTA_DmSetLocalDiRecord()
|
/packages/modules/Bluetooth/system/stack/avrc/ |
D | avrc_api.cc | 1077 uint16_t AVRC_Open(uint8_t* p_handle, tAVRC_CONN_CB* p_ccb, in AVRC_Open() argument 1088 status = AVCT_CreateConn(p_handle, &cc, peer_addr); in AVRC_Open() 1090 avrc_cb.ccb[*p_handle] = *p_ccb; in AVRC_Open() 1091 memset(&avrc_cb.ccb_int[*p_handle], 0, sizeof(tAVRC_CONN_INT_CB)); in AVRC_Open() 1092 memset(&avrc_cb.fcb[*p_handle], 0, sizeof(tAVRC_FRAG_CB)); in AVRC_Open() 1093 memset(&avrc_cb.rcb[*p_handle], 0, sizeof(tAVRC_RASM_CB)); in AVRC_Open() 1094 avrc_cb.ccb_int[*p_handle].tle = alarm_new("avrcp.commandTimer"); in AVRC_Open() 1095 avrc_cb.ccb_int[*p_handle].cmd_q = fixed_queue_new(SIZE_MAX); in AVRC_Open() 1098 status, *p_handle); in AVRC_Open()
|
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_stack_sdp_api.h | 270 uint32_t* p_handle)> 273 uint16_t operator()(const tSDP_DI_RECORD* p_device_info, uint32_t* p_handle) { in operator() 274 return body(p_device_info, p_handle); in operator()
|
D | mock_stack_sdp_api.cc | 159 uint32_t* p_handle) { in SDP_SetLocalDiRecord() argument 162 p_handle); in SDP_SetLocalDiRecord()
|
D | mock_bta_dm_api.h | 529 std::function<tBTA_STATUS(tSDP_DI_RECORD* p_device_info, uint32_t* p_handle)> 533 tBTA_STATUS operator()(tSDP_DI_RECORD* p_device_info, uint32_t* p_handle) { in operator() 534 return body(p_device_info, p_handle); in operator()
|
D | mock_bta_dm_api.cc | 288 uint32_t* p_handle) { in BTA_DmSetLocalDiRecord() argument 291 p_handle); in BTA_DmSetLocalDiRecord()
|
/packages/modules/Bluetooth/system/stack/rfcomm/ |
D | port_api.cc | 114 uint16_t* p_handle, in RFCOMM_CreateConnectionWithSecurity() argument 117 *p_handle = 0; in RFCOMM_CreateConnectionWithSecurity() 153 *p_handle = p_port->handle; in RFCOMM_CreateConnectionWithSecurity() 169 *p_handle = p_port->handle; in RFCOMM_CreateConnectionWithSecurity() 233 *p_handle, scn, dlci, mtu)); in RFCOMM_CreateConnectionWithSecurity() 239 *p_handle, scn, dlci, mtu)); in RFCOMM_CreateConnectionWithSecurity()
|
/packages/modules/Bluetooth/system/stack/avct/ |
D | avct_api.cc | 123 uint16_t AVCT_CreateConn(uint8_t* p_handle, tAVCT_CC* p_cc, in AVCT_CreateConn() argument 137 *p_handle = avct_ccb_to_idx(p_ccb); in AVCT_CreateConn()
|
/packages/modules/Bluetooth/system/stack/include/ |
D | avct_api.h | 177 uint16_t AVCT_CreateConn(uint8_t* p_handle, tAVCT_CC* p_cc,
|
D | bnep_api.h | 236 const bluetooth::Uuid& dst_uuid, uint16_t* p_handle,
|
D | sdp_api.h | 523 const tSDP_DI_RECORD* device_info, uint32_t* p_handle);
|
D | port_api.h | 230 const RawAddress& bd_addr, uint16_t* p_handle,
|
D | avrc_api.h | 432 uint16_t AVRC_Open(uint8_t* p_handle, tAVRC_CONN_CB* p_ccb,
|
/packages/modules/Bluetooth/system/profile/avrcp/ |
D | avrcp_internal.h | 52 virtual uint16_t Open(uint8_t* p_handle, tAVRC_CONN_CB* p_ccb,
|
/packages/modules/Bluetooth/system/stack/bnep/ |
D | bnep_api.cc | 135 const Uuid& dst_uuid, uint16_t* p_handle, in BNEP_Connect() argument 194 *p_handle = p_bcb->handle; in BNEP_Connect()
|
/packages/modules/Bluetooth/system/stack/avdt/ |
D | avdt_api.cc | 162 uint16_t AVDT_CreateStream(uint8_t peer_id, uint8_t* p_handle, in AVDT_CreateStream() argument 185 *p_handle = avdt_scb_to_hdl(p_scb); in AVDT_CreateStream() 187 *p_handle); in AVDT_CreateStream()
|
/packages/modules/Bluetooth/system/stack/sdp/internal/ |
D | sdp_api.h | 400 uint32_t* p_handle);
|
/packages/modules/Bluetooth/system/stack/sdp/ |
D | sdp_api.cc | 936 uint32_t* p_handle) { in SDP_SetLocalDiRecord() argument 945 *p_handle = 0; in SDP_SetLocalDiRecord() 956 *p_handle = handle; in SDP_SetLocalDiRecord()
|
/packages/modules/Bluetooth/system/bta/include/ |
D | bta_hf_client_api.h | 334 bt_status_t BTA_HfClientOpen(const RawAddress& bd_addr, uint16_t* p_handle);
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | att_protocol.cc | 208 uint16_t* p_handle) { in attp_build_read_multi_cmd() argument 221 UINT16_TO_STREAM(p, *(p_handle + i)); in attp_build_read_multi_cmd()
|