Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/l2cap/internal/
Dle_credit_based_channel_data_controller.cc62 pending_frames_count_ += (segments.size() - credits_); in OnSdu()
65 pending_frames_count_ += segments.size(); in OnSdu()
130 if (pending_frames_count_ > 0 && credits_ >= pending_frames_count_) { in OnCredit()
131 scheduler_->OnPacketsReady(cid_, pending_frames_count_); in OnCredit()
132 pending_frames_count_ = 0; in OnCredit()
133 credits_ -= pending_frames_count_; in OnCredit()
134 } else if (pending_frames_count_ > 0) { in OnCredit()
136 pending_frames_count_ -= credits_; in OnCredit()
Dle_credit_based_channel_data_controller.h73 uint16_t pending_frames_count_ = 0; variable