HomeSort by relevance Sort by last modified time
    Searched refs:rfc (Results 1 - 24 of 24) sorted by null

  /external/bluetooth/bluedroid/stack/rfcomm/
rfc_port_fsm.c 69 switch (p_port->rfc.state)
114 p_port->rfc.state = RFC_STATE_ORIG_WAIT_SEC_CHECK;
115 btm_sec_mx_access_request (p_port->rfc.p_mcb->bd_addr, BT_PSM_RFCOMM, TRUE,
132 rfc_timer_stop(p_port->rfc.p_mcb );
135 p_port->rfc.state = RFC_STATE_TERM_WAIT_SEC_CHECK;
136 btm_sec_mx_access_request (p_port->rfc.p_mcb->bd_addr, BT_PSM_RFCOMM, FALSE,
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);
158 Port_TimeOutCloseMux( p_port->rfc.p_mcb ) ;
159 RFCOMM_TRACE_ERROR ("Port error state %d event %d", p_port->rfc.state, event)
    [all...]
rfc_l2cap_if.c 60 tL2CAP_APPL_INFO *p_l2c = &rfc_cb.rfc.reg_info;
317 event = rfc_parse_data (p_mcb, &rfc_cb.rfc.rx_frame, p_buf);
326 if (rfc_cb.rfc.rx_frame.dlci == RFCOMM_MX_DLCI)
342 if (((p_port = port_find_mcb_dlci_port (p_mcb, rfc_cb.rfc.rx_frame.dlci)) == NULL)
343 || (!p_port->rfc.p_mcb))
348 if (( p_mcb->is_initiator && !rfc_cb.rfc.rx_frame.cr)
349 || (!p_mcb->is_initiator && rfc_cb.rfc.rx_frame.cr))
350 rfc_send_dm (p_mcb, rfc_cb.rfc.rx_frame.dlci, rfc_cb.rfc.rx_frame.pf);
355 if ((p_port = port_find_dlci_port (rfc_cb.rfc.rx_frame.dlci)) == NULL
    [all...]
port_utils.c 68 for (xx = 0, yy = rfc_cb.rfc.last_port + 1; xx < MAX_RFC_PORTS; xx++, yy++)
87 rfc_cb.rfc.last_port = yy;
88 RFCOMM_TRACE_DEBUG("rfc_cb.port.port[%d]:%p allocated, last_port:%d", yy, p_port, rfc_cb.rfc.last_port);
230 if (p_port->rfc.state == RFC_STATE_CLOSED)
233 if (p_port->rfc.p_mcb)
235 p_port->rfc.p_mcb->port_inx[p_port->dlci] = 0;
238 rfc_check_mcb_active (p_port->rfc.p_mcb);
258 p_port->rfc.p_mcb = NULL;
356 if (p_port->in_use && (p_port->rfc.p_mcb == NULL))
420 || !p_port->rfc.p_mc
    [all...]
rfc_port_if.c 163 p_port->rfc.expected_rsp |= RFC_RSP_PN;
212 p_port->rfc.expected_rsp |= RFC_RSP_RPN_REPLY;
214 p_port->rfc.expected_rsp |= RFC_RSP_RPN;
253 || (p_port->rfc.state != RFC_STATE_OPENED))
258 p_port->rfc.expected_rsp |= RFC_RSP_MSC;
280 || (p_port->rfc.state != RFC_STATE_OPENED))
285 p_port->rfc.expected_rsp |= RFC_RSP_MSC;
306 || (p_port->rfc.state != RFC_STATE_OPENED))
309 p_port->rfc.expected_rsp |= RFC_RSP_RLS;
port_api.c 115 RFCOMM_TRACE_ERROR ("RFCOMM_CreateConnection - already opened state:%d, RFC state:%d, MCB state:%d",
116 p_port->state, p_port->rfc.state, p_port->rfc.p_mcb ? p_port->rfc.p_mcb->state : 0);
480 if (!p_port->rfc.p_mcb
481 || !p_port->rfc.p_mcb->peer_ready
482 || (p_port->rfc.state != RFC_STATE_OPENED))
487 memcpy (bd_addr, p_port->rfc.p_mcb->bd_addr, BD_ADDR_LEN);
489 *p_lcid = p_port->rfc.p_mcb->lcid;
530 if (p_port->rfc.p_mcb == p_mcb
    [all...]
port_rfc.c 69 p_port->rfc.p_mcb = p_mcb;
110 tRFC_MCB *p_mcb = p_port->rfc.p_mcb;
131 tRFC_MCB *p_mcb = p_port->rfc.p_mcb;
152 tRFC_MCB *p_mcb = p_port->rfc.p_mcb;
175 if ((p_mcb == NULL) || (p_port->rfc.state == RFC_STATE_CLOSED))
211 if (p_port->rfc.p_mcb == p_mcb)
229 p_port->rfc.p_mcb = NULL;
272 if ((p_port->rfc.p_mcb == NULL)
273 || (p_port->rfc.p_mcb == p_mcb))
324 p_port->rfc.p_mcb = p_mcb
    [all...]
rfc_utils.c 164 for (i = 0, j = rfc_cb.rfc.last_mux + 1; i < MAX_BD_CONNECTIONS; i++, j++)
184 rfc_cb.rfc.last_mux = (UINT8) j;
218 ** Description Start RFC Timer
237 ** Description Stop RFC Timer
252 ** Description Start RFC Timer
257 TIMER_LIST_ENT *p_tle = &p_port->rfc.tle;
271 ** Description Stop RFC Timer
278 btu_stop_timer (&p_port->rfc.tle);
361 || ((p_port->rfc.state != RFC_STATE_ORIG_WAIT_SEC_CHECK)
362 && (p_port->rfc.state != RFC_STATE_TERM_WAIT_SEC_CHECK))
    [all...]
port_int.h 191 tRFC_PORT rfc; /* RFCOMM port control block */ member in struct:t_port_info
rfc_ts_frames.c 254 *p_data++ = rfc_cb.rfc.rx_frame.u.pn.priority;
431 *p_data++ = rfc_cb.rfc.rx_frame.ea |
432 (rfc_cb.rfc.rx_frame.cr << RFCOMM_SHIFT_CR) |
433 rfc_cb.rfc.rx_frame.type;
700 MX_FRAME *p_rx_frame = &rfc_cb.rfc.rx_frame;
rfc_int.h 21 * This file contains definitions internal to the RFC unit
147 ** Define states and events for the RFC multiplexer state machine
228 /* Main Control Block for the RFCOMM Layer (PORT and RFC) */
231 tRFCOMM_CB rfc; member in struct:__anon6321
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 38 r'RFC[- ]?(\d+)|'
47 all, scheme, rfc, pep, selfdot, name = match.groups()
51 elif rfc:
52 url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc)
pydoc.py 533 r'RFC[- ]?(\d+)|'
542 all, scheme, rfc, pep, selfdot, name = match.groups()
546 elif rfc:
547 url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 38 r'RFC[- ]?(\d+)|'
47 all, scheme, rfc, pep, selfdot, name = match.groups()
51 elif rfc:
52 url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc)
pydoc.py 533 r'RFC[- ]?(\d+)|'
542 all, scheme, rfc, pep, selfdot, name = match.groups()
546 elif rfc:
547 url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc)
    [all...]
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_act.c 274 APPL_TRACE_DEBUG ("bta_hf_client_rfc_acp_open: serv_handle = %d rfc.port_handle = %d",
275 bta_hf_client_cb.scb.serv_handle, p_data->rfc.port_handle);
278 if (PORT_SUCCESS != (status=PORT_CheckConnection(p_data->rfc.port_handle, dev_addr, &lcid)))
303 bta_hf_client_cb.scb.conn_handle = p_data->rfc.port_handle;
bta_hf_client_int.h 133 tBTA_HF_CLIENT_RFC rfc; member in union:__anon5227
  /external/chromium_org/sdch/open-vcdiff/packages/rpm/
rpm.spec 6 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format
21 (RFC 3284) format. Please see http://www.ietf.org/rfc/rfc3284.txt .
24 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_act.c 567 if (PORT_SUCCESS != (status=PORT_CheckConnection(p_data->rfc.port_handle, dev_addr, &lcid)))
610 i, p_scb->serv_handle[i], p_data->rfc.port_handle);
612 if (p_scb->serv_handle[i] == p_data->rfc.port_handle)
615 p_scb->conn_handle = p_data->rfc.port_handle;
bta_ag_int.h 229 tBTA_AG_RFC rfc; member in union:__anon5040
  /external/chromium_org/third_party/icu/source/tools/gensprep/
filterRFC3454.pl 7 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
25 $copyright = "###################\n# This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)\n# Copyright (C) The Internet Society (2002). All Rights Reserved. \n###################\n\n";
162 next if $line =~ /RFC\s3454/; # ignore heading
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n";
229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n";
238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n";
247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n";
641 --src-filename=<name of RFC file>
669 filterRFC3454.pl filters the RFC file and creates String prep table files
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 7 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
25 $copyright = "###################\n# This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)\n# Copyright (C) The Internet Society (2002). All Rights Reserved. \n###################\n\n";
162 next if $line =~ /RFC\s3454/; # ignore heading
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n";
229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n";
238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n";
247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n";
641 --src-filename=<name of RFC file>
669 filterRFC3454.pl filters the RFC file and creates String prep table files
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_rdopt.c 1681 int rfc = mode_context[ref_frames[0]]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 1685 int rfc = mode_context[ref_frame]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_rdopt.c 1685 int rfc = mode_context[ref_frame]; local
    [all...]

Completed in 422 milliseconds