• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/netgraph/bluetooth/l2cap/

Lines Matching defs:con_handle

81 "Connection already exists, state=%d, con_handle=%d\n",
83 con->con_handle);
171 "Invalid connection state, state=%d, con_handle=%d\n",
173 con->con_handle);
190 con->con_handle = ep->con_handle;
232 "Connection already exists, state=%d, con_handle=%d\n",
234 con->con_handle);
309 con = ng_l2cap_con_by_handle(l2cap, ep->con_handle);
313 "Connection does not exist, con_handle=%d\n",
314 __func__, NG_NODE_NAME(l2cap->node), ep->con_handle);
323 "Invalid connection state, state=%d, con_handle=%d\n",
325 con->con_handle);
351 ng_l2cap_lp_qos_req(ng_l2cap_p l2cap, u_int16_t con_handle,
360 con = ng_l2cap_con_by_handle(l2cap, con_handle);
364 "Connection does not exist, con_handle=%d\n",
365 __func__, NG_NODE_NAME(l2cap->node), con_handle);
374 "Invalid connection state, state=%d, con_handle=%d\n",
376 con->con_handle);
397 ep->con_handle = con_handle;
460 con = ng_l2cap_con_by_handle(l2cap, ep->con_handle);
464 "Connection does not exist, con_handle=%d\n",
465 __func__, NG_NODE_NAME(l2cap->node), ep->con_handle);
474 "Invalid connection state, state=%d, con_handle=%d\n",
476 con->con_handle);
505 con = ng_l2cap_con_by_handle(l2cap, ep->con_handle);
509 "Connection does not exist, con_handle=%d\n",
510 __func__, NG_NODE_NAME(l2cap->node), ep->con_handle);
519 "Invalid connection state, state=%d, con_handle=%d\n",
521 con->con_handle);
529 if((ch->con->con_handle == ep->con_handle) &&
608 acl_hdr->con_handle = htole16(NG_HCI_MK_CON_HANDLE(
609 con->con_handle, flag, 0));
622 "%s: %s - attaching ACL packet, con_handle=%d, PB=%#x, length=%d\n",
623 __func__, NG_NODE_NAME(l2cap->node), con->con_handle,
665 u_int16_t con_handle, length, pb;
686 acl_hdr->con_handle = le16toh(acl_hdr->con_handle);
687 con_handle = NG_HCI_CON_HANDLE(acl_hdr->con_handle);
688 pb = NG_HCI_PB_FLAG(acl_hdr->con_handle);
692 "%s: %s - got ACL data packet, con_handle=%d, PB=%#x, length=%d\n",
693 __func__, NG_NODE_NAME(l2cap->node), con_handle, pb, length);
696 con = ng_l2cap_con_by_handle(l2cap, con_handle);
700 "Connection does not exist, con_handle=%d\n",
701 __func__, NG_NODE_NAME(l2cap->node), con_handle);
744 "%s: %s - staring new L2CAP packet, con_handle=%d, length=%d\n",
745 __func__, NG_NODE_NAME(l2cap->node), con_handle,
754 "%s: %s - unexpected ACL data packet fragment, con_handle=%d\n",
756 con->con_handle);
835 "%s: %s - sending ACL packet, con_handle=%d, len=%d\n",
836 __func__, NG_NODE_NAME(l2cap->node), con->con_handle,
842 "%s: %s - could not send ACL data packet, con_handle=%d, error=%d\n",
844 con->con_handle, error);
853 "%s: %s - %d ACL packets have been sent, con_handle=%d\n",
855 con->con_handle);
874 ng_l2cap_process_lp_timeout(node_p node, hook_p hook, void *arg1, int con_handle)
885 con = ng_l2cap_con_by_handle(l2cap, con_handle);
889 "%s: %s - could not find connection, con_handle=%d\n",
890 __func__, NG_NODE_NAME(node), con_handle);
896 "%s: %s - no pending LP timeout, con_handle=%d, state=%d, flags=%#x\n",
897 __func__, NG_NODE_NAME(node), con_handle, con->state,
917 ng_l2cap_process_discon_timeout(node_p node, hook_p hook, void *arg1, int con_handle)
931 con = ng_l2cap_con_by_handle(l2cap, con_handle);
935 "%s: %s - could not find connection, con_handle=%d\n",
936 __func__, NG_NODE_NAME(node), con_handle);
942 "%s: %s - no pending disconnect timeout, con_handle=%d, state=%d, flags=%#x\n",
943 __func__, NG_NODE_NAME(node), con_handle, con->state,
965 ep->con_handle = con->con_handle;