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

1 2 3 4 5 6 7

  /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:__anon3497
91 UINT8 dlci; member in struct:__anon3497::__anon3498::__anon3499
107 UINT8 dlci; member in struct:__anon3497::__anon3498::__anon3501
120 UINT8 dlci; member in struct:__anon3497::__anon3498::__anon3503
134 UINT8 dlci; member in struct:__anon3497::__anon3498::__anon3504
    [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);
88 PORT_DlcEstablishCnf (p_mcb, dlci, 0, RFCOMM_ERROR);
104 void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result)
106 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
110 PORT_DlcReleaseInd (p_mcb, dlci);
129 void RFCOMM_ParNegReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu)
131 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
163 rfc_send_pn (p_mcb, dlci, TRUE, mtu, cl, k)
    [all...]
port_rfc.c 70 p_mcb->port_inx[p_port->dlci] = p_port->inx;
77 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
114 RFCOMM_ControlReq (p_mcb, p_port->dlci, &p_port->local_ctrl);
135 RFCOMM_PortNegReq (p_mcb, p_port->dlci, &p_port->user_port_pars);
184 RFCOMM_DlcReleaseReq (p_mcb, p_port->dlci);
215 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
288 ** DLCI parameters (currently only MTU is negotiated).
293 void PORT_ParNegInd (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k)
295 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
299 RFCOMM_TRACE_EVENT2 ("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 115 BTM_SEC_PROTO_RFCOMM, (UINT32)(p_port->dlci / 2),
136 BTM_SEC_PROTO_RFCOMM, (UINT32)(p_port->dlci / 2),
149 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE);
153 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE);
187 rfc_send_disc (p_port->rfc.p_mcb, p_port->dlci);
203 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_SUCCESS);
208 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_ERROR);
213 rfc_send_ua (p_port->rfc.p_mcb, p_port->dlci);
214 PORT_DlcEstablishCnf (p_port->rfc.p_mcb, p_port->dlci, p_port->rfc.p_mcb->peer_l2cap_mtu, RFCOMM_ERROR);
220 rfc_send_ua (p_port->rfc.p_mcb, p_port->dlci);
537 UINT8 dlci = p_frame->dlci; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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
31 /* Structures and constants associated with the DLCI device driver */
36 short dlci; member in struct:dlci_add
67 /* configuration flags for DLCI */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-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
31 /* Structures and constants associated with the DLCI device driver */
36 short dlci; member in struct:dlci_add
67 /* configuration flags for DLCI */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-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
31 /* Structures and constants associated with the DLCI device driver */
36 short dlci; member in struct:dlci_add
67 /* configuration flags for DLCI */
  /development/ndk/platforms/android-3/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon1007
48 unsigned int dlci; member in struct:__anon1008
  /external/kernel-headers/original/linux/hdlc/
ioctl.h 33 unsigned int dlci; member in struct:__anon9707
37 unsigned int dlci; member in struct:__anon9708
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon30378
48 unsigned int dlci; member in struct:__anon30379
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon30732
48 unsigned int dlci; member in struct:__anon30733
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon31086
48 unsigned int dlci; member in struct:__anon31087
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon31494
48 unsigned int dlci; member in struct:__anon31495
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon31868
48 unsigned int dlci; member in struct:__anon31869
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon32281
48 unsigned int dlci; member in struct:__anon32282
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon32654
48 unsigned int dlci; member in struct:__anon32655
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon33273
48 unsigned int dlci; member in struct:__anon33274
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon33610
48 unsigned int dlci; member in struct:__anon33611
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon34404
48 unsigned int dlci; member in struct:__anon34405
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon34851
48 unsigned int dlci; member in struct:__anon34852
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon35211
48 unsigned int dlci; member in struct:__anon35212
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon35551
48 unsigned int dlci; member in struct:__anon35552
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon35908
48 unsigned int dlci; member in struct:__anon35909
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/hdlc/
ioctl.h 44 unsigned int dlci; member in struct:__anon36248
48 unsigned int dlci; member in struct:__anon36249

Completed in 955 milliseconds

1 2 3 4 5 6 7