Home | History | Annotate | Download | only in gap

Lines Matching full:handle

42 static tGAP_CCB *gap_find_ccb_by_handle (UINT16 handle);
120 ** Returns handle of the connection if successful, else GAP_INVALID_HANDLE
221 p_ccb->con_flags |= GAP_CCB_FLAGS_SEC_DONE; /* assume btm/l2cap would handle it */
258 ** Parameters: handle - Handle of the connection returned by GAP_ConnOpen
261 ** GAP_ERR_BAD_HANDLE - invalid handle
268 GAP_TRACE_EVENT ("GAP_CONN - close handle: 0x%x", gap_handle);
293 ** Parameters: handle - Handle of the connection returned in the Open
299 ** GAP_ERR_BAD_HANDLE - invalid handle
363 ** Parameters: handle - Handle returned in the GAP_ConnOpen
368 int GAP_GetRxQueueCnt (UINT16 handle, UINT32 *p_rx_queue_count)
373 /* Check that handle is valid */
374 if (handle < GAP_MAX_CONNECTIONS)
376 p_ccb = &gap_cb.conn.ccb_pool[handle];
401 ** Parameters: handle - Handle of the connection returned in the Open
405 ** GAP_ERR_BAD_HANDLE - invalid handle
440 ** Parameters: handle - Handle of the connection returned in the Open
444 ** GAP_ERR_BAD_HANDLE - invalid handle
505 ** Parameters: handle - Handle of the connection returned in the Open
511 ** GAP_ERR_BAD_HANDLE - invalid handle
589 ** Parameters: handle - Handle of the connection
593 ** GAP_ERR_BAD_HANDLE - invalid handle
625 ** Parameters: handle - Handle of the connection
631 ** GAP_ERR_BAD_HANDLE - invalid handle
656 ** Parameters: handle - Handle of the connection returned by GAP_ConnOpen
659 ** GAP_ERR_BAD_HANDLE - invalid handle
689 ** Parameters: handle - Handle of the connection
710 ** Parameters: handle - Handle of the connection
1113 ** passed handle.
1118 static tGAP_CCB *gap_find_ccb_by_handle (UINT16 handle)
1122 /* Check that handle is valid */
1123 if (handle < GAP_MAX_CONNECTIONS)
1125 p_ccb = &gap_cb.conn.ccb_pool[handle];
1131 /* If here, handle points to invalid connection */