Home
last modified time | relevance | path

Searched refs:pending_frames_count_ (Results 1 – 2 of 2) sorted by relevance

/system/bt/gd/l2cap/internal/
Dle_credit_based_channel_data_controller.cc60 pending_frames_count_ += (segments.size() - credits_); in OnSdu()
63 pending_frames_count_ += segments.size(); in OnSdu()
125 if (pending_frames_count_ > 0 && credits_ >= pending_frames_count_) { in OnCredit()
126 scheduler_->OnPacketsReady(cid_, pending_frames_count_); in OnCredit()
127 pending_frames_count_ = 0; in OnCredit()
128 credits_ -= pending_frames_count_; in OnCredit()
129 } else if (pending_frames_count_ > 0) { in OnCredit()
131 pending_frames_count_ -= credits_; in OnCredit()
Dle_credit_based_channel_data_controller.h72 uint16_t pending_frames_count_ = 0; variable