Loading system/stack/rfcomm/rfc_l2cap_if.cc +2 −2 Original line number Diff line number Diff line Loading @@ -320,7 +320,7 @@ void RFCOMM_BufDataInd(uint16_t lcid, BT_HDR* p_buf) { RFCOMM_TRACE_DEBUG("%s: Handling UIH event, buf_len=%u, credit=%u", __func__, p_buf->len, rfc_cb.rfc.rx_frame.credit); if (p_buf->len > 0) { rfc_port_sm_execute(p_port, event, p_buf); rfc_port_sm_execute(p_port, static_cast<tRFC_PORT_EVENT>(event), p_buf); } else { osi_free(p_buf); } Loading @@ -331,7 +331,7 @@ void RFCOMM_BufDataInd(uint16_t lcid, BT_HDR* p_buf) { return; } rfc_port_sm_execute(p_port, event, nullptr); rfc_port_sm_execute(p_port, static_cast<tRFC_PORT_EVENT>(event), nullptr); osi_free(p_buf); } Loading system/stack/rfcomm/rfc_utils.cc +2 −2 Original line number Diff line number Diff line Loading @@ -296,13 +296,13 @@ void rfc_check_mcb_active(tRFC_MCB* p_mcb) { void rfcomm_port_timer_timeout(void* data) { tPORT* p_port = (tPORT*)data; rfc_port_sm_execute(p_port, RFC_EVENT_TIMEOUT, NULL); rfc_port_sm_execute(p_port, RFC_PORT_EVENT_TIMEOUT, NULL); } void rfcomm_mcb_timer_timeout(void* data) { tRFC_MCB* p_mcb = (tRFC_MCB*)data; rfc_mx_sm_execute(p_mcb, RFC_EVENT_TIMEOUT, NULL); rfc_mx_sm_execute(p_mcb, RFC_MX_EVENT_TIMEOUT, NULL); } /******************************************************************************* Loading Loading
system/stack/rfcomm/rfc_l2cap_if.cc +2 −2 Original line number Diff line number Diff line Loading @@ -320,7 +320,7 @@ void RFCOMM_BufDataInd(uint16_t lcid, BT_HDR* p_buf) { RFCOMM_TRACE_DEBUG("%s: Handling UIH event, buf_len=%u, credit=%u", __func__, p_buf->len, rfc_cb.rfc.rx_frame.credit); if (p_buf->len > 0) { rfc_port_sm_execute(p_port, event, p_buf); rfc_port_sm_execute(p_port, static_cast<tRFC_PORT_EVENT>(event), p_buf); } else { osi_free(p_buf); } Loading @@ -331,7 +331,7 @@ void RFCOMM_BufDataInd(uint16_t lcid, BT_HDR* p_buf) { return; } rfc_port_sm_execute(p_port, event, nullptr); rfc_port_sm_execute(p_port, static_cast<tRFC_PORT_EVENT>(event), nullptr); osi_free(p_buf); } Loading
system/stack/rfcomm/rfc_utils.cc +2 −2 Original line number Diff line number Diff line Loading @@ -296,13 +296,13 @@ void rfc_check_mcb_active(tRFC_MCB* p_mcb) { void rfcomm_port_timer_timeout(void* data) { tPORT* p_port = (tPORT*)data; rfc_port_sm_execute(p_port, RFC_EVENT_TIMEOUT, NULL); rfc_port_sm_execute(p_port, RFC_PORT_EVENT_TIMEOUT, NULL); } void rfcomm_mcb_timer_timeout(void* data) { tRFC_MCB* p_mcb = (tRFC_MCB*)data; rfc_mx_sm_execute(p_mcb, RFC_EVENT_TIMEOUT, NULL); rfc_mx_sm_execute(p_mcb, RFC_MX_EVENT_TIMEOUT, NULL); } /******************************************************************************* Loading