summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSemun Lee <sm79.lee@samsung.com>2016-07-12 18:22:29 +0900
committerSemun Lee <sm79.lee@samsung.com>2016-07-12 18:22:29 +0900
commit86d973b83eec772c25d71ef87289f1023cc14f9c (patch)
tree11e6ef15145a2503745d1460ebbc3fcc9746c1bf
parent58699e2768a3627abf17252054752adcdcf295c0 (diff)
downloadui-gadget-1-accepted/tizen/tv/20160712.132204.tar.gz
ui-gadget-1-accepted/tizen/tv/20160712.132204.tar.bz2
ui-gadget-1-accepted/tizen/tv/20160712.132204.zip
Change-Id: I5471a94dc7ce748b04c57661f2aae591abbc3075 Signed-off-by: Semun Lee <sm79.lee@samsung.com>
-rw-r--r--src/engine.c2
-rw-r--r--src/ug.c5
2 files changed, 7 insertions, 0 deletions
diff --git a/src/engine.c b/src/engine.c
index b9ec8a0..bf9e32a 100644
--- a/src/engine.c
+++ b/src/engine.c
@@ -77,6 +77,7 @@ engine_free:
return NULL;
}
+/* LCOV_EXCL_START */
int ug_engine_unload(struct ug_engine *engine)
{
void (*engine_exit)(struct ug_engine_ops *ops);
@@ -100,3 +101,4 @@ int ug_engine_unload(struct ug_engine *engine)
engine = NULL;
return 0;
}
+/* LCOV_EXCL_STOP */
diff --git a/src/ug.c b/src/ug.c
index 47c70d1..912f9f8 100644
--- a/src/ug.c
+++ b/src/ug.c
@@ -109,6 +109,8 @@ UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
return ugman_init((Display *)disp, (Window)xid, win, opt);
}
#else
+
+/* LCOV_EXCL_START */
UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
{
if (opt < UG_OPT_INDICATOR_ENABLE || opt >= UG_OPT_MAX) {
@@ -118,12 +120,15 @@ UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
return ugman_init(win, opt);
}
+/* LCOV_EXCL_STOP */
#endif
+/* LCOV_EXCL_START */
UG_API int UG_INIT_EFL(void *win, enum ug_option opt)
{
return ug_init_efl((Evas_Object *)win, opt);
}
+/* LCOV_EXCL_STOP */
UG_API int ug_init_efl(Evas_Object *win, enum ug_option opt)
{