Home
last modified time | relevance | path

Searched refs:high_priority (Results 1 – 18 of 18) sorted by relevance

/aosp12/system/bt/gd/l2cap/
H A Ddynamic_channel.cc46 void DynamicChannel::HACK_SetChannelTxPriority(bool high_priority) { in HACK_SetChannelTxPriority() argument
47 return impl_->SetChannelTxPriority(high_priority); in HACK_SetChannelTxPriority()
H A Ddynamic_channel.h79 void HACK_SetChannelTxPriority(bool high_priority);
/aosp12/system/bt/gd/l2cap/internal/
H A Ddata_pipeline_manager.cc60 void DataPipelineManager::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority() argument
62 scheduler_->SetChannelTxPriority(cid, high_priority); in SetChannelTxPriority()
H A Ddynamic_channel_impl.h69 virtual void SetChannelTxPriority(bool high_priority) { in SetChannelTxPriority() argument
70 link_->SetChannelTxPriority(cid_, high_priority); in SetChannelTxPriority()
H A Dscheduler_fifo.cc52 void Fifo::SetChannelTxPriority(Cid cid, bool high_priority) { in SetChannelTxPriority() argument
53 if (high_priority) { in SetChannelTxPriority()
H A Dilink.h43 virtual void SetChannelTxPriority(Cid local_cid, bool high_priority) {} in SetChannelTxPriority() argument
H A Dscheduler.h61 virtual void SetChannelTxPriority(Cid cid, bool high_priority) {} in SetChannelTxPriority() argument
H A Dscheduler_fifo.h44 void SetChannelTxPriority(Cid cid, bool high_priority) override;
H A Ddata_pipeline_manager.h69 virtual void SetChannelTxPriority(Cid cid, bool high_priority);
/aosp12/system/bt/test/mock/
H A Dmock_main_shim_l2cap_api.h228 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 Dmock_main_shim_l2cap_api.cc167 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 Dround_robin_scheduler.cc70 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 Dround_robin_scheduler.h51 void SetLinkPriority(uint16_t handle, bool high_priority);
/aosp12/system/bt/gd/hci/
H A Dacl_manager.cc278 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 Dacl_manager.h144 virtual void HACK_SetAclTxPriority(uint8_t handle, bool high_priority);
/aosp12/system/bt/main/shim/
H A Dl2c_api.cc265 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 Dlink.cc174 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 Dlink.h110 void SetChannelTxPriority(Cid local_cid, bool high_priority) override;