HomeSort by relevance Sort by last modified time
    Searched full:dlci (Results 1 - 25 of 268) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/bluetooth/bluedroid/stack/rfcomm/
rfc_int.h 51 extern void RFCOMM_DlcEstablishReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu);
52 extern void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result);
54 extern void RFCOMM_DataReq (tRFC_MCB *p_mcb, UINT8 dlci, BT_HDR *p_buf);
56 extern void RFCOMM_DlcReleaseReq (tRFC_MCB *p_mcb, UINT8 dlci);
58 extern void RFCOMM_ParNegReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu);
59 extern void RFCOMM_ParNegRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k);
66 extern void RFCOMM_FlowReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT8 state);
68 extern void RFCOMM_PortNegReq (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_STATE *p_pars);
69 extern void RFCOMM_PortNegRsp (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_STATE *p_pars, UINT16 param_mask);
71 extern void RFCOMM_ControlReq (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_CTRL *p_pars)
80 UINT8 dlci; member in struct:__anon6317
91 UINT8 dlci; member in struct:__anon6317::__anon6318::__anon6319
107 UINT8 dlci; member in struct:__anon6317::__anon6318::__anon6321
120 UINT8 dlci; member in struct:__anon6317::__anon6318::__anon6323
134 UINT8 dlci; member in struct:__anon6317::__anon6318::__anon6324
    [all...]
rfc_port_if.c 76 ** connection with the specific dlci on a specific bd device.
82 void RFCOMM_DlcEstablishReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu)
84 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
89 PORT_DlcEstablishCnf (p_mcb, dlci, 0, RFCOMM_ERROR);
105 void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result)
107 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
112 PORT_DlcReleaseInd (p_mcb, dlci);
131 void RFCOMM_ParNegReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu)
133 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
165 rfc_send_pn (p_mcb, dlci, TRUE, mtu, cl, k)
    [all...]
port_rfc.c 71 p_mcb->port_inx[p_port->dlci] = p_port->inx;
78 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
115 RFCOMM_ControlReq (p_mcb, p_port->dlci, &p_port->local_ctrl);
136 RFCOMM_PortNegReq (p_mcb, p_port->dlci, &p_port->user_port_pars);
185 RFCOMM_DlcReleaseReq (p_mcb, p_port->dlci);
216 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
289 ** DLCI parameters (currently only MTU is negotiated).
294 void PORT_ParNegInd (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k)
296 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
300 RFCOMM_TRACE_EVENT ("PORT_ParNegInd dlci:%d mtu:%d", dlci, mtu)
    [all...]
rfc_ts_frames.c 39 void rfc_send_sabme (tRFC_MCB *p_mcb, UINT8 dlci)
51 /* SABME frame, command, PF = 1, dlci */
52 *p_data++ = RFCOMM_EA | cr | (dlci << RFCOMM_SHIFT_DLCI);
56 *p_data = RFCOMM_SABME_FCS ((UINT8 *)(p_buf + 1) + L2CAP_MIN_OFFSET, cr, dlci);
71 void rfc_send_ua (tRFC_MCB *p_mcb, UINT8 dlci)
83 /* ua frame, response, PF = 1, dlci */
84 *p_data++ = RFCOMM_EA | cr | (dlci << RFCOMM_SHIFT_DLCI);
88 *p_data = RFCOMM_UA_FCS ((UINT8 *)(p_buf + 1) + L2CAP_MIN_OFFSET, cr, dlci);
103 void rfc_send_dm (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN pf)
115 /* DM frame, response, PF = 1, dlci */
    [all...]
rfc_port_fsm.c 116 BTM_SEC_PROTO_RFCOMM, (UINT32)(p_port->dlci / 2),
137 BTM_SEC_PROTO_RFCOMM, (UINT32)(p_port->dlci / 2),
150 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE);
154 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE);
188 rfc_send_disc (p_port->rfc.p_mcb, p_port->dlci);
204 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_SUCCESS);
209 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_ERROR);
214 rfc_send_ua (p_port->rfc.p_mcb, p_port->dlci);
215 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_ERROR);
221 rfc_send_ua (p_port->rfc.p_mcb, p_port->dlci);
538 UINT8 dlci = p_frame->dlci; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
if_frad.h 2 * DLCI/FRAD Definitions for Frame Relay Access Devices. DLCI devices are
3 * created for each DLCI associated with a FRAD. The FRAD driver
5 * handler. This allows other FRAD manufacturers to use the DLCI
29 /* Structures and constants associated with the DLCI device driver */
34 short dlci; member in struct:dlci_add
65 /* configuration flags for DLCI */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
if_frad.h 2 * DLCI/FRAD Definitions for Frame Relay Access Devices. DLCI devices are
3 * created for each DLCI associated with a FRAD. The FRAD driver
5 * handler. This allows other FRAD manufacturers to use the DLCI
29 /* Structures and constants associated with the DLCI device driver */
34 short dlci; member in struct:dlci_add
65 /* configuration flags for DLCI */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
if_frad.h 2 * DLCI/FRAD Definitions for Frame Relay Access Devices. DLCI devices are
3 * created for each DLCI associated with a FRAD. The FRAD driver
5 * handler. This allows other FRAD manufacturers to use the DLCI
29 /* Structures and constants associated with the DLCI device driver */
34 short dlci; member in struct:dlci_add
65 /* configuration flags for DLCI */
  /development/ndk/platforms/android-3/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon1354
48 unsigned int dlci; member in struct:__anon1355
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon52004
48 unsigned int dlci; member in struct:__anon52005
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon52358
48 unsigned int dlci; member in struct:__anon52359
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon52712
48 unsigned int dlci; member in struct:__anon52713
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon53120
48 unsigned int dlci; member in struct:__anon53121
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon53494
48 unsigned int dlci; member in struct:__anon53495
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon53907
48 unsigned int dlci; member in struct:__anon53908
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon54280
48 unsigned int dlci; member in struct:__anon54281
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon54899
48 unsigned int dlci; member in struct:__anon54900
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon55236
48 unsigned int dlci; member in struct:__anon55237
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon56030
48 unsigned int dlci; member in struct:__anon56031
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon56477
48 unsigned int dlci; member in struct:__anon56478
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon56837
48 unsigned int dlci; member in struct:__anon56838
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon57177
48 unsigned int dlci; member in struct:__anon57178
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon57534
48 unsigned int dlci; member in struct:__anon57535
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon57874
48 unsigned int dlci; member in struct:__anon57875
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon58231
48 unsigned int dlci; member in struct:__anon58232

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011