/aosp12/system/bt/gd/l2cap/ |
H A D | dynamic_channel.cc | 46 void DynamicChannel::HACK_SetChannelTxPriority(bool high_priority) { in HACK_SetChannelTxPriority() argument 47 return impl_->SetChannelTxPriority(high_priority); in HACK_SetChannelTxPriority()
|
H A D | dynamic_channel.h | 79 void HACK_SetChannelTxPriority(bool high_priority);
|
/aosp12/system/bt/gd/l2cap/internal/ |
H A D | data_pipeline_manager.cc | 60 void DataPipelineManager::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority() argument 62 scheduler_->SetChannelTxPriority(cid, high_priority); in SetChannelTxPriority()
|
H A D | dynamic_channel_impl.h | 69 virtual void SetChannelTxPriority(bool high_priority) { in SetChannelTxPriority() argument 70 link_->SetChannelTxPriority(cid_, high_priority); in SetChannelTxPriority()
|
H A D | scheduler_fifo.cc | 52 void Fifo::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority() argument 53 if (high_priority) { in SetChannelTxPriority()
|
H A D | ilink.h | 43 virtual void SetChannelTxPriority(Cid local_cid, bool high_priority) {} in SetChannelTxPriority() argument
|
H A D | scheduler.h | 61 virtual void SetChannelTxPriority(Cid cid, bool high_priority) {} in SetChannelTxPriority() argument
|
H A D | scheduler_fifo.h | 44 void SetChannelTxPriority(Cid cid, bool high_priority) override;
|
H A D | data_pipeline_manager.h | 69 virtual void SetChannelTxPriority(Cid cid, bool high_priority);
|
/aosp12/system/bt/test/mock/ |
H A D | mock_main_shim_l2cap_api.h | 228 std::function<bool(uint16_t handle, bool high_priority)> body{ 229 [](uint16_t handle, bool high_priority) { return false; }}; 230 bool operator()(uint16_t handle, bool high_priority) { in operator() 231 return body(handle, high_priority); in operator()
|
H A D | mock_main_shim_l2cap_api.cc | 167 bool bluetooth::shim::L2CA_SetAclPriority(uint16_t handle, bool high_priority) { in L2CA_SetAclPriority() argument 170 high_priority); in L2CA_SetAclPriority()
|
/aosp12/system/bt/gd/hci/acl_manager/ |
H A D | round_robin_scheduler.cc | 70 void RoundRobinScheduler::SetLinkPriority(uint16_t handle, bool high_priority) { in SetLinkPriority() argument 76 acl_queue_handler->second.high_priority_ = high_priority; in SetLinkPriority()
|
H A D | round_robin_scheduler.h | 51 void SetLinkPriority(uint16_t handle, bool high_priority);
|
/aosp12/system/bt/gd/hci/ |
H A D | acl_manager.cc | 278 void AclManager::HACK_SetAclTxPriority(uint8_t handle, bool high_priority) { in HACK_SetAclTxPriority() argument 279 …llOn(pimpl_->round_robin_scheduler_, &RoundRobinScheduler::SetLinkPriority, handle, high_priority); in HACK_SetAclTxPriority()
|
H A D | acl_manager.h | 144 virtual void HACK_SetAclTxPriority(uint8_t handle, bool high_priority);
|
/aosp12/system/bt/main/shim/ |
H A D | l2c_api.cc | 265 bool SetChannelTxPriority(uint16_t cid, bool high_priority) { in SetChannelTxPriority() 271 channel->second->HACK_SetChannelTxPriority(high_priority); in SetChannelTxPriority() 840 bool L2CA_SetAclPriority(uint16_t handle, bool high_priority) { in L2CA_SetAclPriority() argument 841 GetAclManager()->HACK_SetAclTxPriority(handle, high_priority); in L2CA_SetAclPriority() 1145 bool high_priority = priority == L2CAP_CHNL_PRIORITY_HIGH; in L2CA_SetTxPriority() local 1147 cid, high_priority); in L2CA_SetTxPriority()
|
/aosp12/system/bt/gd/l2cap/classic/internal/ |
H A D | link.cc | 174 void Link::SetChannelTxPriority(Cid local_cid, bool high_priority) { in SetChannelTxPriority() argument 175 data_pipeline_manager_.SetChannelTxPriority(local_cid, high_priority); in SetChannelTxPriority()
|
H A D | link.h | 110 void SetChannelTxPriority(Cid local_cid, bool high_priority) override;
|