Home
last modified time | relevance | path

Searched refs:rfc_handle (Results 1 – 2 of 2) sorted by relevance

/system/bt/btif/src/
Dbtif_sock_rfc.cc98 int rfc_handle; member
262 accept_rs->rfc_handle = open_handle; in create_srv_accept_rfc_slot()
266 srv_rs->rfc_handle = new_listen_handle; in create_srv_accept_rfc_slot()
411 if (slot->f.server && !slot->f.closing && slot->rfc_handle) { in free_rfc_slot_scn()
412 BTA_JvRfcommStopServer(slot->rfc_handle, slot->id); in free_rfc_slot_scn()
413 slot->rfc_handle = 0; in free_rfc_slot_scn()
443 if (slot->rfc_handle && !slot->f.closing && !slot->f.server) { in cleanup_rfc_slot()
444 BTA_JvRfcommClose(slot->rfc_handle, slot->id); in cleanup_rfc_slot()
445 slot->rfc_handle = 0; in cleanup_rfc_slot()
491 slot->rfc_handle = p_init->handle; in on_cl_rfc_init()
[all …]
/system/bt/bta/jv/
Dbta_jv_act.cc1404 uint32_t rfc_handle = bta_jv_cb.port_cb[i].handle & BTA_JV_RFC_HDL_MASK; in find_rfc_pcb() local
1405 rfc_handle &= ~BTA_JV_RFCOMM_MASK; in find_rfc_pcb()
1406 if (rfc_handle && bta_jv_cb.port_cb[i].rfcomm_slot_id == rfcomm_slot_id) { in find_rfc_pcb()
1408 *cb = &bta_jv_cb.rfc_cb[rfc_handle - 1]; in find_rfc_pcb()
1409 VLOG(2) << __func__ << ": FOUND rfc_cb_handle=" << loghex(rfc_handle) in find_rfc_pcb()