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

1 2 3

  /system/bt/stack/rfcomm/
rfc_port_fsm.cc 72 switch (p_port->rfc.state) {
113 p_port->rfc.state = RFC_STATE_ORIG_WAIT_SEC_CHECK;
115 p_port->rfc.p_mcb->bd_addr, BT_PSM_RFCOMM, true, BTM_SEC_PROTO_RFCOMM,
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,
152 rfc_send_dm(p_port->rfc.p_mcb, p_port->dlci, false);
156 rfc_send_dm(p_port->rfc.p_mcb, p_port->dlci, false);
160 Port_TimeOutCloseMux(p_port->rfc.p_mcb);
161 RFCOMM_TRACE_ERROR("Port error state %d event %d", p_port->rfc.state
    [all...]
rfc_l2cap_if.cc 62 tL2CAP_APPL_INFO* p_l2c = &rfc_cb.rfc.reg_info;
291 uint8_t event = rfc_parse_data(p_mcb, &rfc_cb.rfc.rx_frame, p_buf);
301 if (rfc_cb.rfc.rx_frame.dlci == RFCOMM_MX_DLCI) {
317 tPORT* p_port = port_find_mcb_dlci_port(p_mcb, rfc_cb.rfc.rx_frame.dlci);
318 if (p_port == nullptr || !p_port->rfc.p_mcb) {
324 if ((p_mcb->is_initiator && !rfc_cb.rfc.rx_frame.cr) ||
325 (!p_mcb->is_initiator && rfc_cb.rfc.rx_frame.cr)) {
329 rfc_send_dm(p_mcb, rfc_cb.rfc.rx_frame.dlci, rfc_cb.rfc.rx_frame.pf);
335 p_port = port_find_dlci_port(rfc_cb.rfc.rx_frame.dlci)
    [all...]
port_utils.cc 67 for (xx = 0, yy = rfc_cb.rfc.last_port + 1; xx < MAX_RFC_PORTS; xx++, yy++) {
80 p_port->rfc.port_timer = alarm_new("rfcomm_port.port_timer");
81 rfc_cb.rfc.last_port = yy;
87 p_port, rfc_cb.rfc.last_port);
206 p_port, p_port->rfc.state, p_port->keep_port_handle);
223 alarm_cancel(p_port->rfc.port_timer);
227 if (p_port->rfc.state == RFC_STATE_CLOSED) {
228 if (p_port->rfc.p_mcb) {
229 p_port->rfc.p_mcb->port_inx[p_port->dlci] = 0;
232 rfc_check_mcb_active(p_port->rfc.p_mcb)
    [all...]
rfc_port_if.cc 160 p_port->rfc.expected_rsp |= RFC_RSP_PN;
208 p_port->rfc.expected_rsp |= RFC_RSP_RPN_REPLY;
210 p_port->rfc.expected_rsp |= RFC_RSP_RPN;
247 (p_port->rfc.state != RFC_STATE_OPENED))
252 p_port->rfc.expected_rsp |= RFC_RSP_MSC;
275 (p_port->rfc.state != RFC_STATE_OPENED))
280 p_port->rfc.expected_rsp |= RFC_RSP_MSC;
302 (p_port->rfc.state != RFC_STATE_OPENED))
305 p_port->rfc.expected_rsp |= RFC_RSP_RLS;
rfc_utils.cc 163 for (i = 0, j = rfc_cb.rfc.last_mux + 1; i < MAX_BD_CONNECTIONS; i++, j++) {
185 rfc_cb.rfc.last_mux = (uint8_t)j;
205 if (rfc_cb.port.port[i].rfc.p_mcb == p_mcb)
206 rfc_cb.port.port[i].rfc.p_mcb = NULL;
222 * Description Start RFC Timer
237 * Description Stop RFC Timer
250 * Description Start RFC Timer
257 alarm_set_on_mloop(p_port->rfc.port_timer, interval_ms,
265 * Description Stop RFC Timer
271 alarm_cancel(p_port->rfc.port_timer)
    [all...]
port_api.cc 150 << ", RFC_state=" << static_cast<int>(p_port->rfc.state)
152 << (p_port->rfc.p_mcb ? p_port->rfc.p_mcb->state : 0)
506 if (!p_port->rfc.p_mcb || !p_port->rfc.p_mcb->peer_ready ||
507 (p_port->rfc.state != RFC_STATE_OPENED)) {
511 bd_addr = p_port->rfc.p_mcb->bd_addr;
512 if (p_lcid) *p_lcid = p_port->rfc.p_mcb->lcid;
548 if (p_port->rfc.p_mcb == p_mcb) {
555 (found_port && (p_port->rfc.state < RFC_STATE_OPENED)))
    [all...]
port_rfc.cc 71 p_port->rfc.p_mcb = p_mcb;
109 tRFC_MCB* p_mcb = p_port->rfc.p_mcb;
127 tRFC_MCB* p_mcb = p_port->rfc.p_mcb;
145 tRFC_MCB* p_mcb = p_port->rfc.p_mcb;
168 if ((p_mcb == NULL) || (p_port->rfc.state == RFC_STATE_CLOSED)) {
199 if (p_port->rfc.p_mcb == p_mcb) {
253 if ((p_port->rfc.p_mcb == NULL) || (p_port->rfc.p_mcb == p_mcb)) {
305 p_port->rfc.p_mcb = p_mcb;
504 RFCOMM_PortNegReq(p_port->rfc.p_mcb, p_port->dlci, NULL)
    [all...]
port_int.h 186 tRFC_PORT rfc; /* RFCOMM port control block */ member in struct:__anon2511
rfc_ts_frames.cc 224 *p_data++ = rfc_cb.rfc.rx_frame.u.pn.priority;
375 *p_data++ = rfc_cb.rfc.rx_frame.ea |
376 (rfc_cb.rfc.rx_frame.cr << RFCOMM_SHIFT_CR) |
377 rfc_cb.rfc.rx_frame.type;
609 MX_FRAME* p_rx_frame = &rfc_cb.rfc.rx_frame;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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)
  /external/python/cpython2/Lib/
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)
  /prebuilts/gdb/darwin-x86/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)
  /prebuilts/gdb/linux-x86/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)
  /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)
  /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)
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 60 // Size returns the size of an entry per RFC 7541 section 4.1.
62 // http://http2.github.io/http2-spec/compression.html#rfc.section.4.1
158 // http://http2.github.io/http2-spec/compression.html#rfc.section.2.3.2
187 // This should never overflow. RFC 7540 Section 6.5.2 limits the size of
302 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.1
307 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.1
312 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.2
317 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.3
322 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.3
409 // http://http2.github.io/http2-spec/compression.html#rfc.section.5.1
    [all...]
hpack_test.go 80 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.1
87 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.2
93 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.3
99 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.4
137 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.3
185 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.4
232 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.5
302 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.6
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 60 // Size returns the size of an entry per RFC 7541 section 4.1.
62 // http://http2.github.io/http2-spec/compression.html#rfc.section.4.1
158 // http://http2.github.io/http2-spec/compression.html#rfc.section.2.3.2
187 // This should never overflow. RFC 7540 Section 6.5.2 limits the size of
302 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.1
307 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.1
312 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.2
317 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.2.3
322 // http://http2.github.io/http2-spec/compression.html#rfc.section.6.3
409 // http://http2.github.io/http2-spec/compression.html#rfc.section.5.1
    [all...]
hpack_test.go 80 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.1
87 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.2
93 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.3
99 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.4
137 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.3
185 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.4
232 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.5
302 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.6
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
CipherSuite.java     [all...]
  /system/bt/bta/ag/
bta_ag_act.cc 528 int status = PORT_CheckConnection(data.rfc.port_handle, dev_addr, &lcid);
574 p_scb->serv_handle[i], data.rfc.port_handle);
576 if (p_scb->serv_handle[i] == data.rfc.port_handle) {
578 p_scb->conn_handle = data.rfc.port_handle;
  /external/golang-protobuf/ptypes/timestamp/
timestamp.pb.go 39 // and from RFC 3339 date strings.
40 // See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
87 // [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_simulator.c 426 int rfc = simpenrose_do_rendering(exec.ct1ca, exec.ct1ea); local
427 if (rfc != 1) {
429 rfc);
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Timestamp.cs 52 /// and from RFC 3339 date strings.
53 /// See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
  /system/bt/bta/hf_client/
bta_hf_client_int.h 140 tBTA_HF_CLIENT_RFC rfc; member in union:__anon1357

Completed in 815 milliseconds

1 2 3