Lines Matching refs:el

98     for (const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el :  in is_channel_connection_pending()  local
100 if (el.second->state_ == EattChannelState::EATT_CHANNEL_PENDING) in is_channel_connection_pending()
210 for (const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el : member
212 if (el.second->state_ == EattChannelState::EATT_CHANNEL_OPENED) {
213 cid = el.first;
214 mtu = el.second->tx_mtu_;
626 [&cid](const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in find_eatt_channel_by_cid()
627 return el.first == cid; in find_eatt_channel_by_cid()
641 const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in find_eatt_channel_by_transid()
642 return el.second->server_outstanding_cmd_.trans_id == trans_id; in find_eatt_channel_by_transid()
656 const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in is_indication_pending()
657 return el.second->indicate_handle_ == indication_handle; in is_indication_pending()
667 [](const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in get_channel_available_for_indication()
668 return el.second->state_ == EattChannelState::EATT_CHANNEL_OPENED && in get_channel_available_for_indication()
669 !GATT_HANDLE_IS_VALID(el.second->indicate_handle_); in get_channel_available_for_indication()
683 [](const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in get_channel_available_for_client_request()
684 return el.second->state_ == EattChannelState::EATT_CHANNEL_OPENED && in get_channel_available_for_client_request()
685 el.second->cl_cmd_q_.empty(); in get_channel_available_for_client_request()
712 [](const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in is_outstanding_msg_in_send_queue()
713 if (el.second->cl_cmd_q_.empty()) return false; in is_outstanding_msg_in_send_queue()
715 tGATT_CMD_Q& cmd = el.second->cl_cmd_q_.front(); in is_outstanding_msg_in_send_queue()
727 [](const std::pair<uint16_t, std::shared_ptr<EattChannel>>& el) { in get_channel_with_queued_data()
728 if (el.second->cl_cmd_q_.empty()) return false; in get_channel_with_queued_data()
730 tGATT_CMD_Q& cmd = el.second->cl_cmd_q_.front(); in get_channel_with_queued_data()