/packages/modules/Bluetooth/system/gd/l2cap/internal/ |
D | data_pipeline_manager.cc | 30 void DataPipelineManager::AttachChannel(Cid cid, std::shared_ptr<ChannelImpl> channel, ChannelMode … in AttachChannel() 36 void DataPipelineManager::DetachChannel(Cid cid) { in DetachChannel() 43 DataController* DataPipelineManager::GetDataController(Cid cid) { in GetDataController() 50 void DataPipelineManager::OnPacketSent(Cid cid) { in OnPacketSent() 55 void DataPipelineManager::UpdateClassicConfiguration(Cid cid, classic::internal::ChannelConfigurati… in UpdateClassicConfiguration() 60 void DataPipelineManager::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority()
|
D | fixed_channel_allocator.h | 52 virtual std::shared_ptr<FixedChannelImplType> AllocateChannel(Cid cid) { in AllocateChannel() 62 virtual void FreeChannel(Cid cid) { in FreeChannel() 67 virtual bool IsChannelAllocated(Cid cid) const { in IsChannelAllocated() 71 virtual std::shared_ptr<FixedChannelImplType> FindChannel(Cid cid) { in FindChannel()
|
D | scheduler.h | 55 virtual void OnPacketsReady(Cid cid, int number_packets) {} in OnPacketsReady() 61 virtual void SetChannelTxPriority(Cid cid, bool high_priority) {} in SetChannelTxPriority() 66 virtual void RemoveChannel(Cid cid) {} in RemoveChannel()
|
D | dynamic_channel_allocator.cc | 35 Cid cid = kFirstDynamicChannel; in AllocateChannel() local 69 Cid cid = kFirstDynamicChannel; in ReserveChannel() local 81 void DynamicChannelAllocator::FreeChannel(Cid cid) { in FreeChannel() 101 std::shared_ptr<DynamicChannelImpl> DynamicChannelAllocator::FindChannelByCid(Cid cid) { in FindChannelByCid()
|
D | scheduler_fifo.cc | 42 void Fifo::OnPacketsReady(Cid cid, int number_packets) { in OnPacketsReady() 52 void Fifo::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority() 60 void Fifo::RemoveChannel(Cid cid) { in RemoveChannel()
|
D | receiver.cc | 52 Cid cid = static_cast<Cid>(basic_frame_view.GetChannelId()); in link_queue_dequeue_callback() local 76 Cid cid = static_cast<Cid>(basic_frame_view.GetChannelId()); in check_buffered_packets() local
|
D | fixed_channel_allocator_test.cc | 66 Cid cid = kFirstFixedChannel; in TEST_F() local 71 Cid cid = kFirstFixedChannel; in TEST_F() local
|
D | sender_test.cc | 54 void OnPacketsReady(Cid cid, int number_packets) override { in OnPacketsReady() 58 void SetOnPacketsReady(std::function<void(Cid cid, int number_packets)> callback) { in SetOnPacketsReady() 107 scheduler_.SetOnPacketsReady([&promise](Cid cid, int number_packets) { promise.set_value(); }); in TEST_F()
|
/packages/modules/Virtualization/virtualizationservice/aidl/android/system/virtualizationservice/ |
D | IVirtualMachineCallback.aidl | 32 void onPayloadStarted(int cid, in @nullable ParcelFileDescriptor stream); in onPayloadStarted() 37 void onPayloadReady(int cid); in onPayloadReady() 42 void onPayloadFinished(int cid, int exitCode); in onPayloadFinished() 47 void onError(int cid, int errorCode, in String message); in onError() 55 void onDied(int cid, in DeathReason reason); in onDied()
|
/packages/modules/Bluetooth/system/stack/hid/ |
D | hidd_conn.cc | 101 static void hidd_l2cif_connect_ind(const RawAddress& bd_addr, uint16_t cid, in hidd_l2cif_connect_ind() 196 static void hidd_l2cif_connect_cfm(uint16_t cid, uint16_t result) { in hidd_l2cif_connect_cfm() 240 static void hidd_l2cif_config_ind(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in hidd_l2cif_config_ind() 265 static void hidd_l2cif_config_cfm(uint16_t cid, uint16_t initiator, in hidd_l2cif_config_cfm() 312 static void hidd_l2cif_disconnect_ind(uint16_t cid, bool ack_needed) { in hidd_l2cif_disconnect_ind() 348 static void hidd_l2cif_disconnect(uint16_t cid) { in hidd_l2cif_disconnect() 400 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested) { in hidd_l2cif_cong_ind() 428 static void hidd_l2cif_data_ind(uint16_t cid, BT_HDR* p_msg) { in hidd_l2cif_data_ind() 711 uint16_t cid; in hidd_conn_send_data() local
|
/packages/modules/Bluetooth/system/stack/test/common/ |
D | mock_eatt.cc | 49 void EattExtension::Disconnect(const RawAddress& bd_addr, uint16_t cid) { in Disconnect() 53 void EattExtension::Reconfigure(const RawAddress& bd_addr, uint16_t cid, in Reconfigure() 62 uint16_t cid) { in FindEattChannelByCid() 101 uint16_t cid) { in StartIndicationConfirmationTimer() 106 uint16_t cid) { in StopIndicationConfirmationTimer() 112 uint16_t cid) { in StartAppIndicationTimer() 117 uint16_t cid) { in StopAppIndicationTimer()
|
D | mock_l2cap_layer.cc | 47 bool L2CA_DisconnectReq(uint16_t cid) { in L2CA_DisconnectReq() 51 bool L2CA_DisconnectRsp(uint16_t cid) { in L2CA_DisconnectRsp() 55 bool L2CA_ConfigReq(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in L2CA_ConfigReq() 59 bool L2CA_ConfigRsp(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in L2CA_ConfigRsp() 63 uint8_t L2CA_DataWrite(uint16_t cid, BT_HDR* p_data) { in L2CA_DataWrite()
|
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/ |
D | fixed_channel_service_manager_impl.cc | 29 void FixedChannelServiceManagerImpl::Register(Cid cid, in Register() 52 void FixedChannelServiceManagerImpl::Unregister(Cid cid, FixedChannelService::OnUnregisteredCallbac… in Unregister() 66 FixedChannelServiceImpl* FixedChannelServiceManagerImpl::GetService(Cid cid) { in GetService() 89 Cid cid = elem.first; in GetSupportedFixedChannelMask() local
|
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/ |
D | fixed_channel_service_manager_impl.cc | 29 void FixedChannelServiceManagerImpl::Register(Cid cid, in Register() 52 void FixedChannelServiceManagerImpl::Unregister(Cid cid, FixedChannelService::OnUnregisteredCallbac… in Unregister() 66 FixedChannelServiceImpl* FixedChannelServiceManagerImpl::GetService(Cid cid) { in GetService()
|
D | link.cc | 160 std::shared_ptr<FixedChannelImpl> Link::AllocateFixedChannel(Cid cid, SecurityPolicy security_polic… in AllocateFixedChannel() 166 bool Link::IsFixedChannelAllocated(Cid cid) { in IsFixedChannelAllocated() 231 void Link::FreeDynamicChannel(Cid cid) { in FreeDynamicChannel() 253 void Link::NotifyChannelCreation(Cid cid, std::unique_ptr<DynamicChannel> user_channel) { in NotifyChannelCreation() 262 void Link::NotifyChannelFail(Cid cid, DynamicChannelManager::ConnectionResult result) { in NotifyChannelFail()
|
D | fixed_channel_service_manager_test.cc | 78 Cid cid = kSmpBrCid; in TEST_F() local 93 Cid cid = 0x1000; in TEST_F() local
|
/packages/modules/Bluetooth/system/stack/eatt/ |
D | eatt.cc | 138 void EattExtension::Disconnect(const RawAddress& bd_addr, uint16_t cid) { in Disconnect() 142 void EattExtension::Reconfigure(const RawAddress& bd_addr, uint16_t cid, in Reconfigure() 151 uint16_t cid) { in FindEattChannelByCid() 190 uint16_t cid) { in StartIndicationConfirmationTimer() 195 uint16_t cid) { in StopIndicationConfirmationTimer() 201 uint16_t cid) { in StartAppIndicationTimer() 206 uint16_t cid) { in StopAppIndicationTimer()
|
/packages/apps/Settings/src/com/android/settings/network/telephony/ |
D | CellInfoUtil.java | 145 final CellIdentity cid = getCellIdentity(cellInfo); in cellInfoToString() local 166 public static String getCellIdentityMccMnc(CellIdentity cid) { in getCellIdentityMccMnc() 178 public static String getCellIdentityMcc(CellIdentity cid) { in getCellIdentityMcc() 202 public static String getCellIdentityMnc(CellIdentity cid) { in getCellIdentityMnc()
|
/packages/modules/Bluetooth/system/stack/test/sdp/ |
D | stack_sdp_test.cc | 49 test::mock::stack_l2cap_api::L2CA_DisconnectReq.body = [](uint16_t cid) { in SetUp() 83 int cid = L2CA_ConnectReq2_cid; in TEST_F() local 99 tCONN_CB* find_ccb(uint16_t cid, uint8_t state) { in find_ccb() 114 const int cid = L2CA_ConnectReq2_cid; in TEST_F() local
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_sr.cc | 57 uint32_t gatt_sr_enqueue_cmd(tGATT_TCB& tcb, uint16_t cid, uint8_t op_code, in gatt_sr_enqueue_cmd() 101 bool gatt_sr_cmd_empty(tGATT_TCB& tcb, uint16_t cid) { in gatt_sr_cmd_empty() 119 void gatt_dequeue_sr_cmd(tGATT_TCB& tcb, uint16_t cid) { in gatt_dequeue_sr_cmd() 345 void gatt_process_exec_write_req(tGATT_TCB& tcb, uint16_t cid, uint8_t op_code, in gatt_process_exec_write_req() 410 void gatt_process_read_multi_req(tGATT_TCB& tcb, uint16_t cid, uint8_t op_code, in gatt_process_read_multi_req() 515 BT_HDR* p_msg, tGATT_TCB& tcb, uint16_t cid, uint8_t op_code, in gatt_build_primary_service_rsp() 681 void gatts_process_primary_service_req(tGATT_TCB& tcb, uint16_t cid, in gatts_process_primary_service_req() 744 static void gatts_process_find_info(tGATT_TCB& tcb, uint16_t cid, in gatts_process_find_info() 798 static void gatts_process_mtu_req(tGATT_TCB& tcb, uint16_t cid, uint16_t len, in gatts_process_mtu_req() 862 static void gatts_process_read_by_type_req(tGATT_TCB& tcb, uint16_t cid, in gatts_process_read_by_type_req() [all …]
|
D | gatt_utils.cc | 576 void gatt_start_conf_timer(tGATT_TCB* p_tcb, uint16_t cid) { in gatt_start_conf_timer() 594 void gatt_stop_conf_timer(tGATT_TCB& tcb, uint16_t cid) { in gatt_stop_conf_timer() 611 void gatt_start_ind_ack_timer(tGATT_TCB& tcb, uint16_t cid) { in gatt_start_ind_ack_timer() 629 void gatt_stop_ind_ack_timer(tGATT_TCB* p_tcb, uint16_t cid) { in gatt_stop_ind_ack_timer() 815 tGATT_STATUS gatt_send_error_rsp(tGATT_TCB& tcb, uint16_t cid, uint8_t err_code, in gatt_send_error_rsp() 960 bool gatt_tcb_is_cid_busy(tGATT_TCB& tcb, uint16_t cid) { in gatt_tcb_is_cid_busy() 1049 bool gatt_tcb_find_indicate_handle(tGATT_TCB& tcb, uint16_t cid, in gatt_tcb_find_indicate_handle() 1100 uint16_t gatt_tcb_get_payload_size_tx(tGATT_TCB& tcb, uint16_t cid) { in gatt_tcb_get_payload_size_tx() 1119 uint16_t gatt_tcb_get_payload_size_rx(tGATT_TCB& tcb, uint16_t cid) { in gatt_tcb_get_payload_size_rx() 1163 uint16_t cid = p_clcb->cid; in gatt_clcb_invalidate() local [all …]
|
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_main_shim_l2cap_api.cc | 132 bool bluetooth::shim::L2CA_DisconnectReq(uint16_t cid) { in L2CA_DisconnectReq() 136 uint8_t bluetooth::shim::L2CA_DataWrite(uint16_t cid, BT_HDR* p_data) { in L2CA_DataWrite() 181 bool bluetooth::shim::L2CA_RegisterFixedChannel(uint16_t cid, in L2CA_RegisterFixedChannel() 187 bool bluetooth::shim::L2CA_ConnectFixedChnl(uint16_t cid, in L2CA_ConnectFixedChnl() 192 uint16_t bluetooth::shim::L2CA_SendFixedChnlData(uint16_t cid, in L2CA_SendFixedChnlData() 199 bool bluetooth::shim::L2CA_RemoveFixedChnl(uint16_t cid, in L2CA_RemoveFixedChnl() 226 bool bluetooth::shim::L2CA_SetTxPriority(uint16_t cid, in L2CA_SetTxPriority() 237 bool bluetooth::shim::L2CA_SetChnlFlushability(uint16_t cid, in L2CA_SetChnlFlushability() 320 bool bluetooth::shim::L2CA_GetPeerLECocConfig(uint16_t cid, in L2CA_GetPeerLECocConfig() 326 bool bluetooth::shim::L2CA_DisconnectLECocReq(uint16_t cid) { in L2CA_DisconnectLECocReq() [all …]
|
/packages/modules/Bluetooth/system/stack/test/eatt/ |
D | eatt_test.cc | 53 void gatt_data_process(tGATT_TCB& tcb, uint16_t cid, BT_HDR* p_buf) { return; } in gatt_data_process() 97 for (uint16_t cid : test_local_cids) { in ConnectDeviceEattSupported() local 163 for (uint16_t cid : test_local_cids) { in ConnectDeviceBothSides() local 187 for (auto cid : incoming_cids) { in ConnectDeviceBothSides() local 200 for (uint16_t cid : connected_cids_) in DisconnectEattByPeer() local 453 uint16_t cid = connected_cids_[0]; in TEST_F() local 478 for (uint16_t cid : cids) { in TEST_F() local 506 for (uint16_t cid : cids) { in TEST_F() local 580 for (uint16_t cid : connected_cids_) { in TEST_F() local 600 for (uint16_t cid : connected_cids_) { in TEST_F() local
|
/packages/modules/Bluetooth/system/stack/l2cap/ |
D | l2c_api.cc | 728 for (uint16_t cid : accepted_lcids) { in L2CA_ConnectCreditBasedRsp() local 907 for (uint16_t cid : lcids) { in L2CA_ReconfigCreditBasedConnsReq() local 928 for (uint16_t cid : lcids) { in L2CA_ReconfigCreditBasedConnsReq() local 965 bool L2CA_DisconnectReq(uint16_t cid) { in L2CA_DisconnectReq() 986 bool L2CA_DisconnectLECocReq(uint16_t cid) { in L2CA_DisconnectLECocReq() 1142 bool L2CA_SetTxPriority(uint16_t cid, tL2CAP_CHNL_PRIORITY priority) { in L2CA_SetTxPriority() 1620 uint8_t L2CA_DataWrite(uint16_t cid, BT_HDR* p_data) { in L2CA_DataWrite() 1629 uint8_t L2CA_LECocDataWrite(uint16_t cid, BT_HDR* p_data) { in L2CA_LECocDataWrite() 1647 bool L2CA_SetChnlFlushability(uint16_t cid, bool is_flushable) { in L2CA_SetChnlFlushability()
|
/packages/modules/Bluetooth/system/stack/test/gatt/ |
D | mock_gatt_utils_ref.cc | 40 tGATT_STATUS attp_send_cl_confirmation_msg(tGATT_TCB& tcb, uint16_t cid) { in attp_send_cl_confirmation_msg() 47 tGATT_STATUS attp_send_sr_msg(tGATT_TCB& tcb, uint16_t cid, BT_HDR* p_msg) { in attp_send_sr_msg() 66 uint32_t gatt_sr_enqueue_cmd(tGATT_TCB& tcb, uint16_t cid, uint8_t op_code, in gatt_sr_enqueue_cmd() 68 void gatt_dequeue_sr_cmd(tGATT_TCB& tcb, uint16_t cid) {} in gatt_dequeue_sr_cmd()
|