Exclude function for the internal apis 24/321424/1 accepted/tizen_unified accepted/tizen_unified_x accepted/tizen/unified/20250326.013013 accepted/tizen/unified/x/20250325.213539
authorWootak Jung <wootak.jung@samsung.com>
Fri, 21 Mar 2025 05:24:49 +0000 (14:24 +0900)
committerWootak Jung <wootak.jung@samsung.com>
Fri, 21 Mar 2025 05:24:49 +0000 (14:24 +0900)
Change-Id: Ic4bb2d5810dd46984bfaa54e00c94f8a954b3868
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
src/bluetooth-adapter.c
src/bluetooth-gatt.c
src/bluetooth-socket.c

index adc6bcc8928a39ba59c86068637451cfc3c57156..b16d1dfca84bf0451fc10cd3cc8ea8243b2b1c68 100644 (file)
@@ -1077,6 +1077,7 @@ int bt_adapter_start_device_discovery(void)
        return error_code;
 }
 
+/* LCOV_EXCL_START */
 int bt_adapter_get_local_irk(unsigned char **local_irk)
 {
        int error_code = BT_ERROR_NONE;
@@ -1102,6 +1103,7 @@ int bt_adapter_get_local_irk(unsigned char **local_irk)
 
        return BT_ERROR_NONE;
 }
+/* LCOV_EXCL_STOP */
 
 int bt_adapter_stop_device_discovery(void)
 {
index 28a9ec87d10a6a0b5a5569d6a23e19c0bf86ef92..a646656f9e837a7686a4c363a9a3b7704bee58c6 100644 (file)
@@ -3625,6 +3625,7 @@ int bt_gatt_server_get_device_mtu(const char *remote_address, unsigned int *mtu)
        return ret;
 } /* LCOV_EXCL_STOP */
 
+/* LCOV_EXCL_START */
 static bool __bt_gatt_is_phy_options_valid(int phy_options)
 {
        if (phy_options < PHY_OPTION_NO_PREFERRED ||
@@ -3742,6 +3743,7 @@ int bt_gatt_server_unset_phy_update_cb(bt_gatt_server_h server)
 
        return BT_ERROR_NONE;
 }
+/* LCOV_EXCL_STOP */
 
 int bt_gatt_server_foreach_services(bt_gatt_server_h server,
                bt_gatt_foreach_cb callback, void *user_data)
@@ -5562,7 +5564,6 @@ int bt_gatt_get_uuid_specification_name(const char *uuid, char **name)
        BT_INFO("Specification Name [%s]", *name);
        return BT_ERROR_NONE;
 }
-/* LCOV_EXCL_STOP */
 
 int bt_gatt_client_read_phy(bt_gatt_client_h client,
                                        bt_gatt_client_phy_read_cb callback, void *user_data)
@@ -5652,3 +5653,4 @@ int bt_gatt_client_unset_phy_update_cb(bt_gatt_client_h client)
 
        return BT_ERROR_NONE;
 }
+/* LCOV_EXCL_STOP */
index 02050d9ea867b04ac590dbe9556f043c836ef24a..4422d4544348eef10aaa9508fc8101193404388c 100644 (file)
@@ -509,6 +509,7 @@ int bt_socket_get_l2cap_psm(int socket_fd, int *psm)
        return ret; /* LCOV_EXCL_STOP */
 }
 
+/* LCOV_EXCL_START */
 int bt_socket_get_l2cap_max_buffer_size(int *size)
 {
        int error_code = BT_ERROR_NONE;
@@ -523,6 +524,7 @@ int bt_socket_get_l2cap_max_buffer_size(int *size)
 
        return error_code; /* LCOV_EXCL_STOP */
 }
+/* LCOV_EXCL_STOP */
 
 int bt_socket_set_l2cap_channel_connection_state_changed_cb(
                                                bt_socket_l2cap_channel_connection_state_changed_cb callback, void *user_data)