Home | History | Annotate | Download | only in bnep

Lines Matching full:handle

128 **                  p_handle    - pointer to return the handle for the connection
205 (*bnep_cb.p_conn_state_cb) (p_bcb->handle, p_bcb->rem_bda, BNEP_CONN_FAILED, FALSE);
214 *p_handle = p_bcb->handle;
226 ** Parameters: handle - handle given in the connection indication
234 tBNEP_RESULT BNEP_ConnectResp (UINT16 handle, tBNEP_RESULT resp)
239 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
242 p_bcb = &(bnep_cb.bcb[handle - 1]);
248 BNEP_TRACE_API ("BNEP_ConnectResp() for handle %d, responce %d", handle, resp);
306 ** Parameters: handle - handle of the connection
312 tBNEP_RESULT BNEP_Disconnect (UINT16 handle)
316 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
319 p_bcb = &(bnep_cb.bcb[handle - 1]);
324 BNEP_TRACE_API ("BNEP_Disconnect() for handle %d", handle);
340 ** Parameters: handle - handle of the connection to write
348 ** Returns: BNEP_WRONG_HANDLE - if passed handle is not valid
355 tBNEP_RESULT BNEP_WriteBuf (UINT16 handle,
365 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
371 p_bcb = &(bnep_cb.bcb[handle - 1]);
451 ** Parameters: handle - handle of the connection to write
459 ** Returns: BNEP_WRONG_HANDLE - if passed handle is not valid
467 tBNEP_RESULT BNEP_Write (UINT16 handle,
486 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
489 p_bcb = &(bnep_cb.bcb[handle - 1]);
567 ** Parameters: handle - Handle for the connection
572 ** Returns BNEP_WRONG_HANDLE - if the connection handle is not valid
578 tBNEP_RESULT BNEP_SetProtocolFilters (UINT16 handle,
586 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
589 p_bcb = &(bnep_cb.bcb[handle - 1]);
624 ** Parameters: handle - Handle for the connection
631 ** Returns BNEP_WRONG_HANDLE - if the connection handle is not valid
637 tBNEP_RESULT BNEP_SetMulticastFilters (UINT16 handle,
645 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
648 p_bcb = &(bnep_cb.bcb[handle - 1]);
706 ** BNEP_WRONG_HANDLE - if the handle is invalid
710 tBNEP_RESULT BNEP_GetStatus (UINT16 handle, tBNEP_STATUS *p_status)
718 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
721 p_bcb = &(bnep_cb.bcb[handle - 1]);