Home
last modified time | relevance | path

Searched refs:credits_ (Results 1 – 4 of 4) sorted by relevance

/system/bt/gd/l2cap/internal/
Dle_credit_based_channel_data_controller.cc55 if (credits_ >= segments.size()) { in OnSdu()
57 credits_ -= segments.size(); in OnSdu()
58 } else if (credits_ > 0) { in OnSdu()
59 scheduler_->OnPacketsReady(cid_, credits_); in OnSdu()
60 pending_frames_count_ += (segments.size() - credits_); in OnSdu()
61 credits_ = 0; in OnSdu()
120 int total_credits = credits_ + credits; in OnCredit()
124 credits_ = total_credits; in OnCredit()
125 if (pending_frames_count_ > 0 && credits_ >= pending_frames_count_) { in OnCredit()
128 credits_ -= pending_frames_count_; in OnCredit()
[all …]
Dle_credit_based_channel_data_controller.h71 uint16_t credits_ = 0; variable
/system/bt/gd/l2cap/le/internal/
Dsignalling_manager.h51 uint16_t credits_; member
66 pending_command.credits_ = initial_credits; in CreditBasedConnectionRequest()
Dsignalling_manager.cc490 command_just_sent_.mtu_, command_just_sent_.mps_, command_just_sent_.credits_); in handle_send_next_command()