Loading system/stack/sdp/sdp_api.cc +3 −12 Original line number Diff line number Diff line Loading @@ -136,11 +136,8 @@ bool SDP_CancelServiceSearch(const tSDP_DISCOVERY_DB* p_db) { ******************************************************************************/ bool SDP_ServiceSearchRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, tSDP_DISC_CMPL_CB* p_cb) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading Loading @@ -168,11 +165,8 @@ bool SDP_ServiceSearchRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db ******************************************************************************/ bool SDP_ServiceSearchAttributeRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, tSDP_DISC_CMPL_CB* p_cb) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading Loading @@ -202,11 +196,8 @@ bool SDP_ServiceSearchAttributeRequest(const RawAddress& bd_addr, tSDP_DISCOVERY bool SDP_ServiceSearchAttributeRequest2( const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, base::RepeatingCallback<tSDP_DISC_CMPL_CB> complete_callback) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading system/stack/sdp/sdp_main.cc +7 −20 Original line number Diff line number Diff line Loading @@ -95,10 +95,8 @@ static void sdp_on_l2cap_error(uint16_t l2cap_cid, uint16_t /* result */) { * ******************************************************************************/ static void sdp_connect_cfm(uint16_t l2cap_cid, uint16_t result) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd conn cnf for unknown CID 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading @@ -125,10 +123,8 @@ static void sdp_connect_cfm(uint16_t l2cap_cid, uint16_t result) { * ******************************************************************************/ static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP cfg ind, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -163,12 +159,10 @@ static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { static void sdp_config_cfm(uint16_t l2cap_cid, uint16_t /* initiator */, tL2CAP_CFG_INFO* p_cfg) { sdp_config_ind(l2cap_cid, p_cfg); tCONN_CB* p_ccb; log::verbose("SDP - Rcvd cfg cfm, CID: 0x{:x}", l2cap_cid); /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP cfg ind, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -197,10 +191,8 @@ static void sdp_config_cfm(uint16_t l2cap_cid, uint16_t /* initiator */, tL2CAP_ * ******************************************************************************/ static void sdp_disconnect_ind(uint16_t l2cap_cid, bool ack_needed) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP disc, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -239,10 +231,8 @@ static void sdp_disconnect_ind(uint16_t l2cap_cid, bool ack_needed) { * ******************************************************************************/ static void sdp_data_ind(uint16_t l2cap_cid, BT_HDR* p_msg) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb != NULL) { if (p_ccb->con_state == tSDP_STATE::CONNECTED) { if (p_ccb->con_flags & SDP_FLAGS_IS_ORIG) { Loading Loading @@ -273,11 +263,10 @@ static void sdp_data_ind(uint16_t l2cap_cid, BT_HDR* p_msg) { * ******************************************************************************/ tCONN_CB* sdp_conn_originate(const RawAddress& bd_addr) { tCONN_CB* p_ccb; uint16_t cid; /* Allocate a new CCB. Return if none available. */ p_ccb = sdpu_allocate_ccb(); tCONN_CB* p_ccb = sdpu_allocate_ccb(); if (p_ccb == NULL) { log::warn("no spare CCB for peer {}", bd_addr); return NULL; Loading Loading @@ -360,10 +349,8 @@ void sdp_disconnect(tCONN_CB* p_ccb, tSDP_REASON reason) { * ******************************************************************************/ static void sdp_disconnect_cfm(uint16_t l2cap_cid, uint16_t /* result */) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP disc cfm, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading system/stack/sdp/sdp_utils.cc +7 −7 Original line number Diff line number Diff line Loading @@ -311,7 +311,7 @@ void sdpu_log_attribute_metrics(const RawAddress& bda, tSDP_DISCOVERY_DB* p_db) ******************************************************************************/ tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; /* Look through each connection control block */ for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading @@ -337,7 +337,7 @@ tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid) { ******************************************************************************/ tCONN_CB* sdpu_find_ccb_by_db(const tSDP_DISCOVERY_DB* p_db) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; if (p_db) { /* Look through each connection control block */ Loading @@ -362,7 +362,7 @@ tCONN_CB* sdpu_find_ccb_by_db(const tSDP_DISCOVERY_DB* p_db) { ******************************************************************************/ tCONN_CB* sdpu_allocate_ccb(void) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; /* Look through each connection control block for a free one */ for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -452,7 +452,7 @@ void sdpu_dump_all_ccb() { ******************************************************************************/ uint16_t sdpu_get_active_ccb_cid(const RawAddress& bd_addr) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -483,7 +483,7 @@ uint16_t sdpu_get_active_ccb_cid(const RawAddress& bd_addr) { ******************************************************************************/ bool sdpu_process_pend_ccb_same_cid(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -512,7 +512,7 @@ bool sdpu_process_pend_ccb_same_cid(tCONN_CB& ccb) { ******************************************************************************/ bool sdpu_process_pend_ccb_new_cid(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; uint16_t new_cid = 0; bool new_conn = false; Loading Loading @@ -552,7 +552,7 @@ bool sdpu_process_pend_ccb_new_cid(tCONN_CB& ccb) { ******************************************************************************/ void sdpu_clear_pend_ccb(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading
system/stack/sdp/sdp_api.cc +3 −12 Original line number Diff line number Diff line Loading @@ -136,11 +136,8 @@ bool SDP_CancelServiceSearch(const tSDP_DISCOVERY_DB* p_db) { ******************************************************************************/ bool SDP_ServiceSearchRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, tSDP_DISC_CMPL_CB* p_cb) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading Loading @@ -168,11 +165,8 @@ bool SDP_ServiceSearchRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db ******************************************************************************/ bool SDP_ServiceSearchAttributeRequest(const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, tSDP_DISC_CMPL_CB* p_cb) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading Loading @@ -202,11 +196,8 @@ bool SDP_ServiceSearchAttributeRequest(const RawAddress& bd_addr, tSDP_DISCOVERY bool SDP_ServiceSearchAttributeRequest2( const RawAddress& bd_addr, tSDP_DISCOVERY_DB* p_db, base::RepeatingCallback<tSDP_DISC_CMPL_CB> complete_callback) { tCONN_CB* p_ccb; /* Specific BD address */ p_ccb = sdp_conn_originate(bd_addr); tCONN_CB* p_ccb = sdp_conn_originate(bd_addr); if (!p_ccb) { return false; } Loading
system/stack/sdp/sdp_main.cc +7 −20 Original line number Diff line number Diff line Loading @@ -95,10 +95,8 @@ static void sdp_on_l2cap_error(uint16_t l2cap_cid, uint16_t /* result */) { * ******************************************************************************/ static void sdp_connect_cfm(uint16_t l2cap_cid, uint16_t result) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd conn cnf for unknown CID 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading @@ -125,10 +123,8 @@ static void sdp_connect_cfm(uint16_t l2cap_cid, uint16_t result) { * ******************************************************************************/ static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP cfg ind, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -163,12 +159,10 @@ static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { static void sdp_config_cfm(uint16_t l2cap_cid, uint16_t /* initiator */, tL2CAP_CFG_INFO* p_cfg) { sdp_config_ind(l2cap_cid, p_cfg); tCONN_CB* p_ccb; log::verbose("SDP - Rcvd cfg cfm, CID: 0x{:x}", l2cap_cid); /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP cfg ind, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -197,10 +191,8 @@ static void sdp_config_cfm(uint16_t l2cap_cid, uint16_t /* initiator */, tL2CAP_ * ******************************************************************************/ static void sdp_disconnect_ind(uint16_t l2cap_cid, bool ack_needed) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP disc, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading Loading @@ -239,10 +231,8 @@ static void sdp_disconnect_ind(uint16_t l2cap_cid, bool ack_needed) { * ******************************************************************************/ static void sdp_data_ind(uint16_t l2cap_cid, BT_HDR* p_msg) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb != NULL) { if (p_ccb->con_state == tSDP_STATE::CONNECTED) { if (p_ccb->con_flags & SDP_FLAGS_IS_ORIG) { Loading Loading @@ -273,11 +263,10 @@ static void sdp_data_ind(uint16_t l2cap_cid, BT_HDR* p_msg) { * ******************************************************************************/ tCONN_CB* sdp_conn_originate(const RawAddress& bd_addr) { tCONN_CB* p_ccb; uint16_t cid; /* Allocate a new CCB. Return if none available. */ p_ccb = sdpu_allocate_ccb(); tCONN_CB* p_ccb = sdpu_allocate_ccb(); if (p_ccb == NULL) { log::warn("no spare CCB for peer {}", bd_addr); return NULL; Loading Loading @@ -360,10 +349,8 @@ void sdp_disconnect(tCONN_CB* p_ccb, tSDP_REASON reason) { * ******************************************************************************/ static void sdp_disconnect_cfm(uint16_t l2cap_cid, uint16_t /* result */) { tCONN_CB* p_ccb; /* Find CCB based on CID */ p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); tCONN_CB* p_ccb = sdpu_find_ccb_by_cid(l2cap_cid); if (p_ccb == NULL) { log::warn("SDP - Rcvd L2CAP disc cfm, unknown CID: 0x{:x}", l2cap_cid); sdpu_dump_all_ccb(); Loading
system/stack/sdp/sdp_utils.cc +7 −7 Original line number Diff line number Diff line Loading @@ -311,7 +311,7 @@ void sdpu_log_attribute_metrics(const RawAddress& bda, tSDP_DISCOVERY_DB* p_db) ******************************************************************************/ tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; /* Look through each connection control block */ for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading @@ -337,7 +337,7 @@ tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid) { ******************************************************************************/ tCONN_CB* sdpu_find_ccb_by_db(const tSDP_DISCOVERY_DB* p_db) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; if (p_db) { /* Look through each connection control block */ Loading @@ -362,7 +362,7 @@ tCONN_CB* sdpu_find_ccb_by_db(const tSDP_DISCOVERY_DB* p_db) { ******************************************************************************/ tCONN_CB* sdpu_allocate_ccb(void) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; /* Look through each connection control block for a free one */ for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -452,7 +452,7 @@ void sdpu_dump_all_ccb() { ******************************************************************************/ uint16_t sdpu_get_active_ccb_cid(const RawAddress& bd_addr) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -483,7 +483,7 @@ uint16_t sdpu_get_active_ccb_cid(const RawAddress& bd_addr) { ******************************************************************************/ bool sdpu_process_pend_ccb_same_cid(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading Loading @@ -512,7 +512,7 @@ bool sdpu_process_pend_ccb_same_cid(tCONN_CB& ccb) { ******************************************************************************/ bool sdpu_process_pend_ccb_new_cid(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; uint16_t new_cid = 0; bool new_conn = false; Loading Loading @@ -552,7 +552,7 @@ bool sdpu_process_pend_ccb_new_cid(tCONN_CB& ccb) { ******************************************************************************/ void sdpu_clear_pend_ccb(tCONN_CB& ccb) { uint16_t xx; tCONN_CB* p_ccb; tCONN_CB* p_ccb{}; // Look through each connection control block for active sdp on given remote for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++) { Loading