/external/bluetooth/bluedroid/stack/rfcomm/ |
D | rfc_port_fsm.c | 68 switch (p_port->rfc.state) in rfc_port_sm_execute() 113 p_port->rfc.state = RFC_STATE_ORIG_WAIT_SEC_CHECK; in rfc_port_sm_state_closed() 114 btm_sec_mx_access_request (p_port->rfc.p_mcb->bd_addr, BT_PSM_RFCOMM, TRUE, in rfc_port_sm_state_closed() 131 rfc_timer_stop(p_port->rfc.p_mcb ); in rfc_port_sm_state_closed() 134 p_port->rfc.state = RFC_STATE_TERM_WAIT_SEC_CHECK; in rfc_port_sm_state_closed() 135 btm_sec_mx_access_request (p_port->rfc.p_mcb->bd_addr, BT_PSM_RFCOMM, FALSE, in rfc_port_sm_state_closed() 149 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE); in rfc_port_sm_state_closed() 153 rfc_send_dm (p_port->rfc.p_mcb, p_port->dlci, FALSE); in rfc_port_sm_state_closed() 157 Port_TimeOutCloseMux( p_port->rfc.p_mcb ) ; in rfc_port_sm_state_closed() 158 RFCOMM_TRACE_ERROR2 ("Port error state %d event %d", p_port->rfc.state, event); in rfc_port_sm_state_closed() [all …]
|
D | rfc_l2cap_if.c | 59 tL2CAP_APPL_INFO *p_l2c = &rfc_cb.rfc.reg_info; in rfcomm_l2cap_if_init() 314 event = rfc_parse_data (p_mcb, &rfc_cb.rfc.rx_frame, p_buf); in RFCOMM_BufDataInd() 323 if (rfc_cb.rfc.rx_frame.dlci == RFCOMM_MX_DLCI) in RFCOMM_BufDataInd() 339 if (((p_port = port_find_mcb_dlci_port (p_mcb, rfc_cb.rfc.rx_frame.dlci)) == NULL) in RFCOMM_BufDataInd() 340 || (!p_port->rfc.p_mcb)) in RFCOMM_BufDataInd() 345 if (( p_mcb->is_initiator && !rfc_cb.rfc.rx_frame.cr) in RFCOMM_BufDataInd() 346 || (!p_mcb->is_initiator && rfc_cb.rfc.rx_frame.cr)) in RFCOMM_BufDataInd() 347 rfc_send_dm (p_mcb, rfc_cb.rfc.rx_frame.dlci, rfc_cb.rfc.rx_frame.pf); in RFCOMM_BufDataInd() 352 if ((p_port = port_find_dlci_port (rfc_cb.rfc.rx_frame.dlci)) == NULL) in RFCOMM_BufDataInd() 354 rfc_send_dm (p_mcb, rfc_cb.rfc.rx_frame.dlci, TRUE); in RFCOMM_BufDataInd() [all …]
|
D | port_utils.c | 68 for (xx = 0, yy = rfc_cb.rfc.last_port + 1; xx < MAX_RFC_PORTS; xx++, yy++) in port_allocate_port() 87 rfc_cb.rfc.last_port = yy; in port_allocate_port() 88 …_TRACE_DEBUG3("rfc_cb.port.port[%d]:%p allocated, last_port:%d", yy, p_port, rfc_cb.rfc.last_port); in port_allocate_port() 230 if (p_port->rfc.state == RFC_STATE_CLOSED) in port_release_port() 233 if (p_port->rfc.p_mcb) in port_release_port() 235 p_port->rfc.p_mcb->port_inx[p_port->dlci] = 0; in port_release_port() 238 rfc_check_mcb_active (p_port->rfc.p_mcb); in port_release_port() 258 p_port->rfc.p_mcb = NULL; in port_release_port() 356 if (p_port->in_use && (p_port->rfc.p_mcb == NULL)) in port_find_dlci_port() 420 || !p_port->rfc.p_mcb in port_flow_control_user() [all …]
|
D | rfc_utils.c | 163 for (i = 0, j = rfc_cb.rfc.last_mux + 1; i < MAX_BD_CONNECTIONS; i++, j++) in rfc_alloc_multiplexer_channel() 183 rfc_cb.rfc.last_mux = (UINT8) j; in rfc_alloc_multiplexer_channel() 256 TIMER_LIST_ENT *p_tle = &p_port->rfc.tle; in rfc_port_timer_start() 277 btu_stop_timer (&p_port->rfc.tle); in rfc_port_timer_stop() 358 || ((p_port->rfc.state != RFC_STATE_ORIG_WAIT_SEC_CHECK) in rfc_sec_check_complete() 359 && (p_port->rfc.state != RFC_STATE_TERM_WAIT_SEC_CHECK))) in rfc_sec_check_complete() 379 tRFC_MCB *p_mcb = p_port->rfc.p_mcb; in rfc_port_closed() 385 p_port->rfc.state = RFC_STATE_CLOSED; in rfc_port_closed() 413 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) in rfc_inc_credit() 420 PORT_FlowInd(p_port->rfc.p_mcb, p_port->dlci, TRUE); in rfc_inc_credit() [all …]
|
D | rfc_port_if.c | 161 p_port->rfc.expected_rsp |= RFC_RSP_PN; in RFCOMM_ParNegReq() 210 p_port->rfc.expected_rsp |= RFC_RSP_RPN_REPLY; in RFCOMM_PortNegReq() 212 p_port->rfc.expected_rsp |= RFC_RSP_RPN; in RFCOMM_PortNegReq() 251 || (p_port->rfc.state != RFC_STATE_OPENED)) in RFCOMM_ControlReq() 256 p_port->rfc.expected_rsp |= RFC_RSP_MSC; in RFCOMM_ControlReq() 278 || (p_port->rfc.state != RFC_STATE_OPENED)) in RFCOMM_FlowReq() 283 p_port->rfc.expected_rsp |= RFC_RSP_MSC; in RFCOMM_FlowReq() 304 || (p_port->rfc.state != RFC_STATE_OPENED)) in RFCOMM_LineStatusReq() 307 p_port->rfc.expected_rsp |= RFC_RSP_RLS; in RFCOMM_LineStatusReq()
|
D | port_rfc.c | 68 p_port->rfc.p_mcb = p_mcb; in port_open_continue() 109 tRFC_MCB *p_mcb = p_port->rfc.p_mcb; in port_start_control() 130 tRFC_MCB *p_mcb = p_port->rfc.p_mcb; in port_start_par_neg() 151 tRFC_MCB *p_mcb = p_port->rfc.p_mcb; in port_start_close() 174 if ((p_mcb == NULL) || (p_port->rfc.state == RFC_STATE_CLOSED)) in port_start_close() 210 if (p_port->rfc.p_mcb == p_mcb) in PORT_StartCnf() 228 p_port->rfc.p_mcb = NULL; in PORT_StartCnf() 271 if ((p_port->rfc.p_mcb == NULL) in PORT_StartInd() 272 || (p_port->rfc.p_mcb == p_mcb)) in PORT_StartInd() 323 p_port->rfc.p_mcb = p_mcb; in PORT_ParNegInd() [all …]
|
D | port_api.c | 116 p_port->state, p_port->rfc.state, p_port->rfc.p_mcb ? p_port->rfc.p_mcb->state : 0); in RFCOMM_CreateConnection() 480 if (!p_port->rfc.p_mcb in PORT_CheckConnection() 481 || !p_port->rfc.p_mcb->peer_ready in PORT_CheckConnection() 482 || (p_port->rfc.state != RFC_STATE_OPENED)) in PORT_CheckConnection() 487 memcpy (bd_addr, p_port->rfc.p_mcb->bd_addr, BD_ADDR_LEN); in PORT_CheckConnection() 489 *p_lcid = p_port->rfc.p_mcb->lcid; in PORT_CheckConnection() 530 if (p_port->rfc.p_mcb == p_mcb) in PORT_IsOpening() 538 (found_port && (p_port->rfc.state < RFC_STATE_OPENED))) in PORT_IsOpening() 804 if (!p_port->rfc.p_mcb) in PORT_FlowControl() 811 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) in PORT_FlowControl() [all …]
|
D | rfc_ts_frames.c | 254 *p_data++ = rfc_cb.rfc.rx_frame.u.pn.priority; in rfc_send_pn() 431 *p_data++ = rfc_cb.rfc.rx_frame.ea | in rfc_send_nsc() 432 (rfc_cb.rfc.rx_frame.cr << RFCOMM_SHIFT_CR) | in rfc_send_nsc() 433 rfc_cb.rfc.rx_frame.type; in rfc_send_nsc() 700 MX_FRAME *p_rx_frame = &rfc_cb.rfc.rx_frame; in rfc_process_mx_message()
|
D | port_int.h | 191 tRFC_PORT rfc; /* RFCOMM port control block */ member
|
D | rfc_int.h | 231 tRFCOMM_CB rfc; member
|
/external/openssh/regress/ |
D | keygen-convert.sh | 13 ${SSHKEYGEN} -q -e -f $OBJ/$t-key >$OBJ/$t-key-rfc || \ 17 ${SSHKEYGEN} -q -e -f $OBJ/$t-key.pub >$OBJ/$t-key-rfc.pub || \ 20 cmp $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub || \ 24 ${SSHKEYGEN} -q -i -f $OBJ/$t-key-rfc >$OBJ/$t-rfc-imported || \ 28 cmp $OBJ/$t-key-nocomment.pub $OBJ/$t-rfc-imported || \ 31 rm -f $OBJ/$t-key $OBJ/$t-key.pub $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub \ 32 $OBJ/$t-rfc-imported $OBJ/$t-key-nocomment.pub
|
/external/bluetooth/bluedroid/bta/ag/ |
D | bta_ag_act.c | 557 if (PORT_SUCCESS != (status=PORT_CheckConnection(p_data->rfc.port_handle, dev_addr, &lcid))) in bta_ag_rfc_acp_open() 600 i, p_scb->serv_handle[i], p_data->rfc.port_handle); in bta_ag_rfc_acp_open() 602 if (p_scb->serv_handle[i] == p_data->rfc.port_handle) in bta_ag_rfc_acp_open() 605 p_scb->conn_handle = p_data->rfc.port_handle; in bta_ag_rfc_acp_open()
|
D | bta_ag_int.h | 229 tBTA_AG_RFC rfc; member
|
/external/srtp/doc/ |
D | references.txt | 14 in RFC2202, which are available online at http://www.ietf.org/rfc/
|
/external/chromium/sdch/open-vcdiff/packages/rpm/ |
D | rpm.spec | 21 (RFC 3284) format. Please see http://www.ietf.org/rfc/rfc3284.txt .
|
/external/open-vcdiff/packages/rpm/ |
D | rpm.spec | 21 (RFC 3284) format. Please see http://www.ietf.org/rfc/rfc3284.txt .
|
/external/libvpx/libvpx/ |
D | keywords.dox | 6 <a href="http://www.ietf.org/rfc/rfc2119.txt">RFC 2119.</a>
|
/external/chromium/sdch/open-vcdiff/ |
D | README | 3 (http://www.ietf.org/rfc/rfc3284.txt)
|
D | ChangeLog | 123 described in RFC 3284 (http://www.ietf.org/rfc/rfc3284.txt).
|
/external/open-vcdiff/ |
D | README | 3 (http://www.ietf.org/rfc/rfc3284.txt)
|
/external/srtp/googlepatches/ |
D | google-11-srtp-replay-fix.patch | 25 + // http://www.ietf.org/rfc/rfc3711.txt, when this condition is true, the
|
/external/zlib/src/win32/ |
D | README-WIN32.txt | 6 http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
|
/external/icu4c/data/sprep/ |
D | rfc4505.txt | 7 # This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)
|
D | rfc3530cs.txt | 7 # This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)
|
D | rfc4011.txt | 7 # This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)
|