Home | History | Annotate | Download | only in bnep

Lines Matching refs:handle

129 **                  p_handle    - pointer to return the handle for the connection
211 (*bnep_cb.p_conn_state_cb) (p_bcb->handle, p_bcb->rem_bda, BNEP_CONN_FAILED, FALSE);
220 *p_handle = p_bcb->handle;
232 ** Parameters: handle - handle given in the connection indication
240 tBNEP_RESULT BNEP_ConnectResp (UINT16 handle, tBNEP_RESULT resp)
245 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
248 p_bcb = &(bnep_cb.bcb[handle - 1]);
254 BNEP_TRACE_API2 ("BNEP_ConnectResp() for handle %d, responce %d", handle, resp);
312 ** Parameters: handle - handle of the connection
318 tBNEP_RESULT BNEP_Disconnect (UINT16 handle)
322 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
325 p_bcb = &(bnep_cb.bcb[handle - 1]);
330 BNEP_TRACE_API1 ("BNEP_Disconnect() for handle %d", handle);
346 ** Parameters: handle - handle of the connection to write
354 ** Returns: BNEP_WRONG_HANDLE - if passed handle is not valid
361 tBNEP_RESULT BNEP_WriteBuf (UINT16 handle,
371 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
377 p_bcb = &(bnep_cb.bcb[handle - 1]);
457 ** Parameters: handle - handle of the connection to write
465 ** Returns: BNEP_WRONG_HANDLE - if passed handle is not valid
473 tBNEP_RESULT BNEP_Write (UINT16 handle,
492 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
495 p_bcb = &(bnep_cb.bcb[handle - 1]);
573 ** Parameters: handle - Handle for the connection
578 ** Returns BNEP_WRONG_HANDLE - if the connection handle is not valid
584 tBNEP_RESULT BNEP_SetProtocolFilters (UINT16 handle,
593 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
596 p_bcb = &(bnep_cb.bcb[handle - 1]);
634 ** Parameters: handle - Handle for the connection
641 ** Returns BNEP_WRONG_HANDLE - if the connection handle is not valid
647 tBNEP_RESULT BNEP_SetMulticastFilters (UINT16 handle,
656 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
659 p_bcb = &(bnep_cb.bcb[handle - 1]);
739 ** BNEP_WRONG_HANDLE - if the handle is invalid
743 tBNEP_RESULT BNEP_GetStatus (UINT16 handle, tBNEP_STATUS *p_status)
751 if ((!handle) || (handle > BNEP_MAX_CONNECTIONS))
754 p_bcb = &(bnep_cb.bcb[handle - 1]);