Add LGCOV Flag for clientlib 61/74661/2 accepted/tizen/common/20160615.193701 accepted/tizen/ivi/20160616.002637 accepted/tizen/mobile/20160616.002618 accepted/tizen/tv/20160616.002555 accepted/tizen/wearable/20160616.002604 submit/tizen/20160615.070802
authorJihoon Jung <jh8801.jung@samsung.com>
Wed, 15 Jun 2016 07:02:08 +0000 (16:02 +0900)
committerJihoon Jung <jh8801.jung@samsung.com>
Wed, 15 Jun 2016 07:03:46 +0000 (16:03 +0900)
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
Change-Id: I95d9a9a8d15d630664a5de90d20ec581fe1362e6

24 files changed:
src/net_nfc_client.c
src/net_nfc_client_context.c
src/net_nfc_client_data.c
src/net_nfc_client_handover.c
src/net_nfc_client_hce.c
src/net_nfc_client_hce_ipc.c
src/net_nfc_client_llcp.c
src/net_nfc_client_manager.c
src/net_nfc_client_ndef.c
src/net_nfc_client_ndef_message.c
src/net_nfc_client_ndef_message_handover.c
src/net_nfc_client_ndef_record.c
src/net_nfc_client_p2p.c
src/net_nfc_client_se.c
src/net_nfc_client_sign_record.c
src/net_nfc_client_snep.c
src/net_nfc_client_system_handler.c
src/net_nfc_client_tag.c
src/net_nfc_client_tag_felica.c
src/net_nfc_client_tag_jewel.c
src/net_nfc_client_tag_mifare.c
src/net_nfc_client_target_info.c
src/net_nfc_client_test.c
src/net_nfc_client_transceive.c

index 74da6d5980cb547cfdb3ff86bea71eb8ebed3473..ab0527023026ce87c3cf6e7bf9972d02f890582d 100755 (executable)
@@ -37,6 +37,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 void __attribute__ ((constructor)) lib_init()
 {
 }
@@ -90,3 +92,6 @@ void net_nfc_client_gdbus_deinit(void)
        net_nfc_client_tag_deinit();
        net_nfc_client_manager_deinit();
 }
+
+/* LCOV_EXCL_STOP */
+
index de6afd0afcd0fca405712065934ad72c47a1fbd3..51eee30eed7cd633d133d2f08e76eab870a5b22d 100755 (executable)
@@ -23,6 +23,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 
 NET_NFC_EXPORT_API
 net_nfc_error_e net_nfc_client_initialize()
@@ -80,3 +82,6 @@ net_nfc_error_e net_nfc_client_get_nfc_state(int *state)
 
        return ret;
 }
+
+/* LCOV_EXCL_STOP */
+
index a2109d11f930176c2021634f25681ed3f2dec45b..a11604e1cf4ad0830f52e452f2a1a40f12ce9910 100755 (executable)
@@ -24,6 +24,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 NET_NFC_EXPORT_API net_nfc_error_e net_nfc_create_data_only(data_h *data)
 {
        return net_nfc_create_data(data, NULL, 0);
@@ -128,3 +130,6 @@ NET_NFC_EXPORT_API net_nfc_error_e net_nfc_free_data(data_h data)
 
        return NET_NFC_OK;
 }
+
+/* LCOV_EXCL_STOP */
+
index 312b329b938b54a9b130b60fe0d9ca532ad1fcc1..9f301f9d63c0d4ba01c8aa29ffe4caa4facb63a0 100755 (executable)
@@ -26,6 +26,8 @@
 #include "net_nfc_client_manager.h"
 #include "net_nfc_client_handover.h"
 
+/* LCOV_EXCL_START */
+
 #ifndef NET_NFC_EXPORT_API
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
@@ -345,3 +347,6 @@ void net_nfc_client_handover_deinit(void)
                handover_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 0e8a628266cc5ee45cbe6319048b12c255d1fa8a..0cdc55d1882f3abe2e1beba6096be4db3e91e841 100755 (executable)
@@ -28,6 +28,8 @@
 #include "net_nfc_client_hce_ipc.h"
 #include "net_nfc_client_hce.h"
 
+/* LCOV_EXCL_START */
+
 
 #ifndef NET_NFC_EXPORT_API
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
@@ -283,3 +285,6 @@ void net_nfc_client_hce_deinit(void)
                hce_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 37b18c649ece24f40b99ccf9fe6b1ac21d136a9a..916074e9e9975b98bb1c15a66340a35b8775ed31 100755 (executable)
@@ -31,6 +31,8 @@
 #include <signal.h>
 #include <glib-object.h>
 
+/* LCOV_EXCL_START */
+
 #include "net_nfc_typedef_internal.h"
 #include "net_nfc_debug_internal.h"
 #include "net_nfc_util_defines.h"
@@ -353,3 +355,6 @@ void net_nfc_client_hce_ipc_deinit()
        if (net_nfc_client_hce_ipc_is_initialized() == true)
                _finalize_client_socket();
 }
+
+/* LCOV_EXCL_STOP */
+
index fb74dd08b13104124f0f5b7e92fbd65337ffa490..488c7bbe0211f57b552481a7e61b278e15d7333e 100755 (executable)
@@ -27,6 +27,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 typedef struct _LlcpFuncData LlcpFuncData;
 
 struct _LlcpFuncData {
@@ -2305,3 +2307,6 @@ void net_nfc_client_llcp_deinit(void)
                llcp_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index ca640a9ee0e4178ee048253db77260e89545a592..03535a3839b5a755fcfe91c5cd69e1b021e64576 100755 (executable)
@@ -26,6 +26,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 #define DEACTIVATE_DELAY       500 /* ms */
 #define ACTIVATE_DELAY 100 /* ms */
 
@@ -430,3 +432,6 @@ bool net_nfc_client_manager_is_activated()
 
        return is_activated;
 }
+
+/* LCOV_EXCL_STOP */
+
index 3f28e6326685f99048b984054e987734afa79c85..973adbde60e06de56cedcebc1af666da073c9ce3 100755 (executable)
@@ -32,6 +32,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static NetNfcGDbusNdef *ndef_proxy = NULL;
 
 static gboolean ndef_is_supported_tag(void);
@@ -595,3 +597,6 @@ void net_nfc_client_ndef_deinit(void)
                ndef_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 9d6255ddf37e594c276f133e400498da337a87f5..db3705e53117841b4a4d46a3e3e1a8e7e56802ad 100755 (executable)
@@ -26,6 +26,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 
 #ifndef NET_NFC_MANAGER_DATA_PATH
 #define NET_NFC_MANAGER_DATA_PATH              "/opt/usr/share/nfc-manager-daemon"
@@ -262,3 +264,6 @@ net_nfc_error_e net_nfc_retrieve_current_ndef_message(
 
        return result;
 }
+
+/* LCOV_EXCL_STOP */
+
index 1b9023153284279885125a71ad43bcf47b1161e4..61685626e3d1e9c01b94d91b67799fbc76c7a252 100755 (executable)
@@ -26,6 +26,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 NET_NFC_EXPORT_API
 net_nfc_error_e net_nfc_create_carrier_config(net_nfc_carrier_config_h *config,
        net_nfc_conn_handover_carrier_type_e type)
@@ -369,3 +371,6 @@ net_nfc_error_e net_nfc_create_handover_error_record(ndef_record_h *record, uint
 {
        return net_nfc_util_create_handover_error_record((ndef_record_s **)record, reason, data);
 }
+
+/* LCOV_EXCL_STOP */
+
index 3f85f5e054cdb7ab2c314c20aceff4d1a48921b1..e0ee4550907c9d7b60ee4a3ca45b038ae3138258 100755 (executable)
@@ -25,6 +25,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 NET_NFC_EXPORT_API
 net_nfc_error_e net_nfc_create_record(ndef_record_h *record,
        net_nfc_record_tnf_e tnf, data_h typeName, data_h id, data_h payload)
@@ -309,3 +311,6 @@ net_nfc_error_e net_nfc_create_uri_string_from_uri_record(ndef_record_h record,
        return net_nfc_util_create_uri_string_from_uri_record(
                (ndef_record_s *)record, uri);
 }
+
+/* LCOV_EXCL_STOP */
+
index ffa16913ea2c8fd6beb1dd15e35766c6bb0c4d35..11cb9026ab2ccaf2a780954d00570ec56805d945 100755 (executable)
@@ -29,6 +29,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 typedef struct _P2p_SignalHandler P2pSignalHandler;
 
 struct _P2p_SignalHandler {
@@ -353,3 +355,6 @@ void net_nfc_client_p2p_deinit(void)
                p2p_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index b9c17db39fb27452fa228f7256a93dafcc6db063..98be4ff8cb13b4234539d5a4018ca8d958578dce 100755 (executable)
@@ -32,6 +32,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 typedef struct _SeFuncData SeFuncData;
 
 struct _SeFuncData {
@@ -1811,3 +1813,6 @@ void net_nfc_client_se_deinit(void)
                auto_start_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 9d93847dbe88bdce0a446021f013acbb0c27a0b2..e8e3c884f3e6a40e7fe5f7eda186429313e5a41b 100755 (executable)
@@ -21,6 +21,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 NET_NFC_EXPORT_API net_nfc_error_e net_nfc_sign_records(ndef_message_h msg, int begin_index, int end_index, char *cert_file, char *password)
 {
        return net_nfc_util_sign_records((ndef_message_s *)msg, begin_index, end_index, cert_file, password);
@@ -40,3 +42,6 @@ NET_NFC_EXPORT_API net_nfc_error_e net_nfc_verify_signature_records(ndef_record_
 {
        return net_nfc_util_verify_signature_records((ndef_record_s *)begin_record, (ndef_record_s *)sign_record);
 }
+
+/* LCOV_EXCL_STOP */
+
index ebdb9b2c88be16aa6fc7236856750a042752cbca..7b7ecfda9f3f61e859e6c011efeb4d6ec8d12612 100755 (executable)
@@ -30,6 +30,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static NetNfcGDbusSnep *snep_proxy = NULL;
 
 /*******************************************************************/
@@ -481,3 +483,6 @@ void net_nfc_client_snep_deinit(void)
                snep_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 338e6a8595e7078e16fcfc6fc46a3458340f2094..8e2996dbd69aa575fedabb6816855afb8be7083b 100755 (executable)
@@ -28,6 +28,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static NetNfcGDbusPopup *popup_proxy = NULL;
 static int popup_state = 0;
 
@@ -297,3 +299,6 @@ void net_nfc_client_sys_handler_deinit(void)
                popup_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index a56b3060631d272f9f2bf4769246ca67101e496d..33e42a5b0abbcdc38ab38f89fd7f22f7e16c23eb 100755 (executable)
@@ -31,6 +31,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static NetNfcGDbusTag *tag_proxy = NULL;
 
 static NetNfcCallback tag_discovered_func_data;
@@ -818,3 +820,6 @@ void net_nfc_client_tag_deinit(void)
                tag_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index 8fdd2df224a5796412916e28b4817340021aa6b3..70053c3343984c0048faeaba80f77c2c93e220e1 100755 (executable)
@@ -29,6 +29,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 #define FELICA_CMD_POLL 0x00
 #define FELICA_CMD_REQ_SERVICE 0x02
 #define FELICA_CMD_REQ_RESPONSE 0x04
@@ -505,3 +507,6 @@ net_nfc_error_e net_nfc_client_felica_request_system_code(
                                        callback,
                                        user_data);
 }
+
+/* LCOV_EXCL_STOP */
+
index 47633010d43100279dc8ba3f755db0643fd0f19a..abb212a965e3f14bffff6e446d3125ab3c7bb040 100755 (executable)
@@ -30,6 +30,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 
 #define JEWEL_CMD_REQA 0x26
 #define JEWEL_CMD_WUPA 0x52
@@ -352,3 +354,6 @@ net_nfc_error_e net_nfc_client_jewel_write_with_no_erase(
                                        callback,
                                        user_data);
 }
+
+/* LCOV_EXCL_STOP */
+
index bfc3913ae875c2d75757059363bcbfb0f69048df..6078abab39616f6a53362df9b2a6473d21464326 100755 (executable)
@@ -31,6 +31,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 #define MIFARE_CMD_RAW                 0x00U
 #define MIFARE_CMD_AUTH_A              0x60U /**< authenticate with key A */
 #define MIFARE_CMD_AUTH_B              0x61U /**< authenticate with key B */
@@ -889,3 +891,5 @@ net_nfc_error_e net_nfc_client_mifare_create_net_nfc_forum_key(data_h* key)
        return net_nfc_create_data(key, net_nfc_forum_key, 6);
 }
 
+/* LCOV_EXCL_STOP */
+
index 74203fa12471229d0c2f7adee8e244c74f4a99e4..3b6c6591a91a1dd815c3c3da01e937e965e5e965 100755 (executable)
@@ -27,6 +27,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 NET_NFC_EXPORT_API
 net_nfc_error_e net_nfc_get_tag_type(net_nfc_target_info_h target_info,
        net_nfc_target_type_e *type)
@@ -320,3 +322,6 @@ net_nfc_error_e net_nfc_release_tag_info(net_nfc_target_info_h target_info)
 
        return result;
 }
+
+/* LCOV_EXCL_STOP */
+
index 0f49649380cc193c2790bf8d08169e05710fabad..f5c5cbc3d0d2faa836fe08326c23526791cbb531 100755 (executable)
@@ -26,6 +26,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static void test_call_sim_test_callback(GObject *source_object,
                                        GAsyncResult *res,
                                        gpointer user_data);
@@ -671,3 +673,6 @@ void net_nfc_client_test_deinit(void)
                test_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+
index ec075063dc836e2288b47724674c5178a500d8cb..6953ab99b804eb789fa8fb642d8f5814fe3b7c48 100755 (executable)
@@ -31,6 +31,8 @@
 #define NET_NFC_EXPORT_API __attribute__((visibility("default")))
 #endif
 
+/* LCOV_EXCL_START */
+
 static NetNfcGDbusTransceive *transceive_proxy = NULL;
 
 static GVariant *transceive_data_to_transceive_variant(
@@ -436,3 +438,6 @@ void net_nfc_client_transceive_deinit(void)
                transceive_proxy = NULL;
        }
 }
+
+/* LCOV_EXCL_STOP */
+