apache-mynewt-bot commented on PR #1426: URL: https://github.com/apache/mynewt-nimble/pull/1426#issuecomment-1397991343
<!-- style-bot --> ## Style check summary ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md) #### nimble/host/src/ble_gatt_priv.h <details> ```diff @@ -34,57 +34,57 @@ struct ble_att_prep_write_cmd; STATS_SECT_START(ble_gattc_stats) - STATS_SECT_ENTRY(mtu) - STATS_SECT_ENTRY(mtu_fail) - STATS_SECT_ENTRY(disc_all_svcs) - STATS_SECT_ENTRY(disc_all_svcs_fail) - STATS_SECT_ENTRY(disc_svc_uuid) - STATS_SECT_ENTRY(disc_svc_uuid_fail) - STATS_SECT_ENTRY(find_inc_svcs) - STATS_SECT_ENTRY(find_inc_svcs_fail) - STATS_SECT_ENTRY(disc_all_chrs) - STATS_SECT_ENTRY(disc_all_chrs_fail) - STATS_SECT_ENTRY(disc_chrs_uuid) - STATS_SECT_ENTRY(disc_chrs_uuid_fail) - STATS_SECT_ENTRY(disc_all_dscs) - STATS_SECT_ENTRY(disc_all_dscs_fail) - STATS_SECT_ENTRY(read) - STATS_SECT_ENTRY(read_fail) - STATS_SECT_ENTRY(read_uuid) - STATS_SECT_ENTRY(read_uuid_fail) - STATS_SECT_ENTRY(read_long) - STATS_SECT_ENTRY(read_long_fail) - STATS_SECT_ENTRY(read_mult) - STATS_SECT_ENTRY(read_mult_fail) - STATS_SECT_ENTRY(write_no_rsp) - STATS_SECT_ENTRY(write_no_rsp_fail) - STATS_SECT_ENTRY(write) - STATS_SECT_ENTRY(write_fail) - STATS_SECT_ENTRY(write_long) - STATS_SECT_ENTRY(write_long_fail) - STATS_SECT_ENTRY(write_reliable) - STATS_SECT_ENTRY(write_reliable_fail) - STATS_SECT_ENTRY(notify) - STATS_SECT_ENTRY(notify_fail) - STATS_SECT_ENTRY(multi_notify) - STATS_SECT_ENTRY(multi_notify_fail) - STATS_SECT_ENTRY(indicate) - STATS_SECT_ENTRY(indicate_fail) - STATS_SECT_ENTRY(proc_timeout) +STATS_SECT_ENTRY(mtu) +STATS_SECT_ENTRY(mtu_fail) +STATS_SECT_ENTRY(disc_all_svcs) +STATS_SECT_ENTRY(disc_all_svcs_fail) +STATS_SECT_ENTRY(disc_svc_uuid) +STATS_SECT_ENTRY(disc_svc_uuid_fail) +STATS_SECT_ENTRY(find_inc_svcs) +STATS_SECT_ENTRY(find_inc_svcs_fail) +STATS_SECT_ENTRY(disc_all_chrs) +STATS_SECT_ENTRY(disc_all_chrs_fail) +STATS_SECT_ENTRY(disc_chrs_uuid) +STATS_SECT_ENTRY(disc_chrs_uuid_fail) +STATS_SECT_ENTRY(disc_all_dscs) +STATS_SECT_ENTRY(disc_all_dscs_fail) +STATS_SECT_ENTRY(read) +STATS_SECT_ENTRY(read_fail) +STATS_SECT_ENTRY(read_uuid) +STATS_SECT_ENTRY(read_uuid_fail) +STATS_SECT_ENTRY(read_long) +STATS_SECT_ENTRY(read_long_fail) +STATS_SECT_ENTRY(read_mult) +STATS_SECT_ENTRY(read_mult_fail) +STATS_SECT_ENTRY(write_no_rsp) +STATS_SECT_ENTRY(write_no_rsp_fail) +STATS_SECT_ENTRY(write) +STATS_SECT_ENTRY(write_fail) +STATS_SECT_ENTRY(write_long) +STATS_SECT_ENTRY(write_long_fail) +STATS_SECT_ENTRY(write_reliable) +STATS_SECT_ENTRY(write_reliable_fail) +STATS_SECT_ENTRY(notify) +STATS_SECT_ENTRY(notify_fail) +STATS_SECT_ENTRY(multi_notify) +STATS_SECT_ENTRY(multi_notify_fail) +STATS_SECT_ENTRY(indicate) +STATS_SECT_ENTRY(indicate_fail) +STATS_SECT_ENTRY(proc_timeout) STATS_SECT_END extern STATS_SECT_DECL(ble_gattc_stats) ble_gattc_stats; STATS_SECT_START(ble_gatts_stats) - STATS_SECT_ENTRY(svcs) - STATS_SECT_ENTRY(chrs) - STATS_SECT_ENTRY(dscs) - STATS_SECT_ENTRY(svc_def_reads) - STATS_SECT_ENTRY(svc_inc_reads) - STATS_SECT_ENTRY(chr_def_reads) - STATS_SECT_ENTRY(chr_val_reads) - STATS_SECT_ENTRY(chr_val_writes) - STATS_SECT_ENTRY(dsc_reads) - STATS_SECT_ENTRY(dsc_writes) +STATS_SECT_ENTRY(svcs) +STATS_SECT_ENTRY(chrs) +STATS_SECT_ENTRY(dscs) +STATS_SECT_ENTRY(svc_def_reads) +STATS_SECT_ENTRY(svc_inc_reads) +STATS_SECT_ENTRY(chr_def_reads) +STATS_SECT_ENTRY(chr_val_reads) +STATS_SECT_ENTRY(chr_val_writes) +STATS_SECT_ENTRY(dsc_reads) +STATS_SECT_ENTRY(dsc_writes) STATS_SECT_END extern STATS_SECT_DECL(ble_gatts_stats) ble_gatts_stats; ``` </details> #### nimble/host/src/ble_gattc.c <details> ```diff @@ -434,48 +434,48 @@ /* Statistics. */ STATS_SECT_DECL(ble_gattc_stats) ble_gattc_stats; STATS_NAME_START(ble_gattc_stats) - STATS_NAME(ble_gattc_stats, mtu) - STATS_NAME(ble_gattc_stats, mtu_fail) - STATS_NAME(ble_gattc_stats, disc_all_svcs) - STATS_NAME(ble_gattc_stats, disc_all_svcs_fail) - STATS_NAME(ble_gattc_stats, disc_svc_uuid) - STATS_NAME(ble_gattc_stats, disc_svc_uuid_fail) - STATS_NAME(ble_gattc_stats, find_inc_svcs) - STATS_NAME(ble_gattc_stats, find_inc_svcs_fail) - STATS_NAME(ble_gattc_stats, disc_all_chrs) - STATS_NAME(ble_gattc_stats, disc_all_chrs_fail) - STATS_NAME(ble_gattc_stats, disc_chrs_uuid) - STATS_NAME(ble_gattc_stats, disc_chrs_uuid_fail) - STATS_NAME(ble_gattc_stats, disc_all_dscs) - STATS_NAME(ble_gattc_stats, disc_all_dscs_fail) - STATS_NAME(ble_gattc_stats, read) - STATS_NAME(ble_gattc_stats, read_fail) - STATS_NAME(ble_gattc_stats, read_uuid) - STATS_NAME(ble_gattc_stats, read_uuid_fail) - STATS_NAME(ble_gattc_stats, read_long) - STATS_NAME(ble_gattc_stats, read_long_fail) - STATS_NAME(ble_gattc_stats, read_mult) - STATS_NAME(ble_gattc_stats, read_mult_fail) - STATS_NAME(ble_gattc_stats, write_no_rsp) - STATS_NAME(ble_gattc_stats, write_no_rsp_fail) - STATS_NAME(ble_gattc_stats, write) - STATS_NAME(ble_gattc_stats, write_fail) - STATS_NAME(ble_gattc_stats, write_long) - STATS_NAME(ble_gattc_stats, write_long_fail) - STATS_NAME(ble_gattc_stats, write_reliable) - STATS_NAME(ble_gattc_stats, write_reliable_fail) - STATS_NAME(ble_gattc_stats, notify) - STATS_NAME(ble_gattc_stats, notify_fail) - STATS_NAME(ble_gattc_stats, multi_notify) - STATS_NAME(ble_gattc_stats, multi_notify_fail) - STATS_NAME(ble_gattc_stats, indicate) - STATS_NAME(ble_gattc_stats, indicate_fail) - STATS_NAME(ble_gattc_stats, proc_timeout) +STATS_NAME(ble_gattc_stats, mtu) +STATS_NAME(ble_gattc_stats, mtu_fail) +STATS_NAME(ble_gattc_stats, disc_all_svcs) +STATS_NAME(ble_gattc_stats, disc_all_svcs_fail) +STATS_NAME(ble_gattc_stats, disc_svc_uuid) +STATS_NAME(ble_gattc_stats, disc_svc_uuid_fail) +STATS_NAME(ble_gattc_stats, find_inc_svcs) +STATS_NAME(ble_gattc_stats, find_inc_svcs_fail) +STATS_NAME(ble_gattc_stats, disc_all_chrs) +STATS_NAME(ble_gattc_stats, disc_all_chrs_fail) +STATS_NAME(ble_gattc_stats, disc_chrs_uuid) +STATS_NAME(ble_gattc_stats, disc_chrs_uuid_fail) +STATS_NAME(ble_gattc_stats, disc_all_dscs) +STATS_NAME(ble_gattc_stats, disc_all_dscs_fail) +STATS_NAME(ble_gattc_stats, read) +STATS_NAME(ble_gattc_stats, read_fail) +STATS_NAME(ble_gattc_stats, read_uuid) +STATS_NAME(ble_gattc_stats, read_uuid_fail) +STATS_NAME(ble_gattc_stats, read_long) +STATS_NAME(ble_gattc_stats, read_long_fail) +STATS_NAME(ble_gattc_stats, read_mult) +STATS_NAME(ble_gattc_stats, read_mult_fail) +STATS_NAME(ble_gattc_stats, write_no_rsp) +STATS_NAME(ble_gattc_stats, write_no_rsp_fail) +STATS_NAME(ble_gattc_stats, write) +STATS_NAME(ble_gattc_stats, write_fail) +STATS_NAME(ble_gattc_stats, write_long) +STATS_NAME(ble_gattc_stats, write_long_fail) +STATS_NAME(ble_gattc_stats, write_reliable) +STATS_NAME(ble_gattc_stats, write_reliable_fail) +STATS_NAME(ble_gattc_stats, notify) +STATS_NAME(ble_gattc_stats, notify_fail) +STATS_NAME(ble_gattc_stats, multi_notify) +STATS_NAME(ble_gattc_stats, multi_notify_fail) +STATS_NAME(ble_gattc_stats, indicate) +STATS_NAME(ble_gattc_stats, indicate_fail) +STATS_NAME(ble_gattc_stats, proc_timeout) STATS_NAME_END(ble_gattc_stats) /***************************************************************************** - * $debug * - *****************************************************************************/ +* $debug * +*****************************************************************************/ static void ble_gattc_dbg_assert_proc_not_inserted(struct ble_gattc_proc *proc) ``` </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org