Remove OOMADJ in mobile profile & common profile 42/171942/1
authorGeunsun, Lee <gs86.lee@samsung.com>
Thu, 8 Mar 2018 08:05:06 +0000 (17:05 +0900)
committerGeunsun, Lee <gs86.lee@samsung.com>
Thu, 8 Mar 2018 08:05:25 +0000 (17:05 +0900)
Change-Id: I9e714b6ef33240e54651f236366ffefbf209fbcf

include/dbus_util.h
src/common/home_mgr.c
src/common/hw_key.c
src/common/lock_mgr.c
src/dbus_util.c
src/mobile/home_mgr.c
src/mobile/hw_key.c
src/mobile/lock_mgr.c
tags [deleted file]

index 334e662..031bbfc 100644 (file)
@@ -39,7 +39,6 @@
 #define DEVICED_INTERFACE_NAME DEVICED_BUS_NAME
 #define DEVICED_PATH           DEVICED_OBJECT_PATH"/Process"
 #define DEVICED_INTERFACE      DEVICED_INTERFACE_NAME".Process"
-#define DEVICED_SET_METHOD     "oomadj_set"
 
 #define DISPLAY_OBJECT_PATH     DEVICED_OBJECT_PATH"/Display"
 #define DEVICED_INTERFACE_DISPLAY  DEVICED_INTERFACE_NAME".display"
@@ -53,7 +52,6 @@
 #define SYS_LOCK_MEMBER_UNLOCK "unlock"
 #define SYS_LOCK_MEMBER_TERMINATE "terminate"
 
-extern int dbus_util_send_oomadj(int pid, int oom_adj_value);
 extern void dbus_util_send_perceptible_signal(int pid);
 extern void dbus_util_send_cpu_booster_signal(void);
 extern void dbus_util_send_poweroff_signal(void);
index de3498d..0a835ab 100644 (file)
@@ -83,10 +83,13 @@ int home_mgr_get_volume_pid(void)
 
 static void _after_launch_home(int pid)
 {
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_HOMESCREEN) < 0) {
-               _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.home_pid) {
+               _I("home is created by power key new[%d] != old[%d]", pid, s_home_mgr.home_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
+               s_home_mgr.home_pid = pid;
        }
-       s_home_mgr.home_pid = pid;
 }
 
 
@@ -241,10 +244,13 @@ static int _change_selected_package_name(status_active_key_e key, void *data)
 #if VOLUME_ENABLE
 static void _after_launch_volume(int pid)
 {
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-               _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.volume_pid) {
+               _I("volume is launched new[%d] != old[%d]", pid, s_home_mgr.volume_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
+               s_home_mgr.volume_pid = pid;
        }
-       s_home_mgr.volume_pid = pid;
 }
 #endif
 
@@ -252,12 +258,13 @@ static void _after_launch_volume(int pid)
 
 static void _launch_after_home(int pid)
 {
-       if (pid > 0) {
-               if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_HOMESCREEN) < 0) {
-                       _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.home_pid) {
+               _I("home is created by power key new[%d] != old[%d]", pid, s_home_mgr.home_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
                }
+               s_home_mgr.home_pid = pid;
        }
-       s_home_mgr.home_pid = pid;
 }
 
 
index cb2fcd6..817efed 100644 (file)
@@ -156,9 +156,7 @@ static int _launch_search(void)
 static void _after_launch_taskmgr(int pid)
 {
        if (0 < pid) {
-               if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-                       _E("failed to send oom dbus signal");
-               }
+               dbus_util_send_perceptible_signal(pid);
        }
 }
 
index de76392..887c553 100644 (file)
@@ -113,8 +113,11 @@ static void _after_launch_lock(int pid)
 {
        int idle_lock_state = 0;
 
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-               _E("cannot send oomadj for pid[%d]", pid);
+       if (pid != s_lock_mgr.lock_pid) {
+               _I("lockscreen is launched: new[%d] != old[%d]", pid, s_lock_mgr.lock_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
        }
        process_mgr_set_lock_priority(pid);
        display_unlock_state(LCD_OFF, PM_SLEEP_MARGIN);
@@ -288,9 +291,7 @@ Eina_Bool lock_mgr_lockscreen_launch(void)
                process_mgr_must_launch(lock_appid, NULL, NULL, _lock_changed_cb, _after_launch_lock);
                goto_if(s_lock_mgr.lock_pid < 0, ERROR);
 
-               if (dbus_util_send_oomadj(s_lock_mgr.lock_pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-                       _E("Failed to send oom dbus signal");
-               }
+               dbus_util_send_perceptible_signal(s_lock_mgr.lock_pid);
 
                process_mgr_set_lock_priority(s_lock_mgr.lock_pid);
                display_unlock_state(LCD_OFF, PM_SLEEP_MARGIN);
index b0603b5..5b49e2e 100644 (file)
@@ -109,51 +109,6 @@ static int _append_variant(DBusMessageIter *iter, const char *sig, char *param[]
 
 
 
-static DBusMessage *_invoke_dbus_method_sync(const char *dest, const char *path,
-               const char *interface, const char *method,
-               const char *sig, char *param[])
-{
-       DBusConnection *conn = NULL;
-       DBusMessage *msg;
-       DBusMessageIter iter;
-       DBusMessage *reply;
-       DBusError err;
-       int r;
-
-       conn = (DBusConnection *)_dbus_connection_get();
-       if (!conn) {
-               _E("dbus_bus_get error");
-               return NULL;
-       }
-
-       msg = dbus_message_new_method_call(dest, path, interface, method);
-       if (!msg) {
-               _E("dbus_message_new_method_call(%s:%s-%s)", path, interface, method);
-               return NULL;
-       }
-
-       dbus_message_iter_init_append(msg, &iter);
-       r = _append_variant(&iter, sig, param);
-       if (r < 0) {
-               _E("append_variant error(%d)", r);
-               dbus_message_unref(msg);
-               return NULL;
-       }
-
-       dbus_error_init(&err);
-
-       reply = dbus_connection_send_with_reply_and_block(conn, msg, DBUS_REPLY_TIMEOUT, &err);
-       dbus_message_unref(msg);
-       if (!reply) {
-               _E("dbus_connection_send error(%s:%s)", err.name, err.message);
-               dbus_error_free(&err);
-               return NULL;
-       }
-
-       return reply;
-}
-
-
 
 static int _invoke_dbus_method_async(const char *dest, const char *path,
                const char *interface, const char *method,
@@ -197,48 +152,6 @@ static int _invoke_dbus_method_async(const char *dest, const char *path,
 
 
 
-int dbus_util_send_oomadj(int pid, int oom_adj_value)
-{
-       DBusError err;
-       DBusMessage *msg;
-       char *pa[4];
-       char buf1[BUF_SIZE_16];
-       char buf2[BUF_SIZE_16];
-       int ret, val;
-
-       if (pid <= 0) {
-               _E("Pid is invalid");
-               return -1;
-       }
-
-       snprintf(buf1, sizeof(buf1), "%d", pid);
-       snprintf(buf2, sizeof(buf2), "%d", oom_adj_value);
-
-       pa[0] = DEVICED_SET_METHOD;
-       pa[1] = "2";
-       pa[2] = buf1;
-       pa[3] = buf2;
-
-       msg = _invoke_dbus_method_sync(DEVICED_BUS_NAME, DEVICED_PATH, DEVICED_INTERFACE, DEVICED_SET_METHOD, "siss", pa);
-       if (!msg)
-               return -EBADMSG;
-
-       dbus_error_init(&err);
-
-       ret = dbus_message_get_args(msg, &err, DBUS_TYPE_INT32, &val, DBUS_TYPE_INVALID);
-       if (!ret) {
-               _E("no message : [%s:%s]", err.name, err.message);
-               val = -EBADMSG;
-       }
-
-       dbus_message_unref(msg);
-       dbus_error_free(&err);
-
-       _D("%s-%s : %d", DEVICED_INTERFACE, pa[0], val);
-       return val;
-}
-
-
 
 void dbus_util_broadcast_signal(char *path, char *interface, char *name, const char *type, char *signal[])
 {
index deafede..3a006e8 100644 (file)
@@ -22,7 +22,6 @@
 #include <fcntl.h>
 #include <pkgmgr-info.h>
 #include <stdio.h>
-#include <dd-deviced.h>
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <unistd.h>
@@ -101,10 +100,13 @@ int home_mgr_get_quickpanel_pid(void)
 
 static void _after_launch_home(int pid)
 {
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_HOMESCREEN) < 0) {
-               _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.home_pid) {
+               _I("home is created by power key new[%d] != old[%d]", pid, s_home_mgr.home_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
+               s_home_mgr.home_pid = pid;
        }
-       s_home_mgr.home_pid = pid;
 }
 
 
@@ -249,10 +251,13 @@ static int _change_selected_package_name(status_active_key_e key, void *data)
 
 static void _after_launch_volume(int pid)
 {
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-               _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.volume_pid) {
+               _I("volume is launched new[%d] != old[%d]", pid, s_home_mgr.volume_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
+               s_home_mgr.volume_pid = pid;
        }
-       s_home_mgr.volume_pid = pid;
 }
 
 
@@ -273,12 +278,13 @@ static void _after_launch_quickpanel(int pid)
 
 static void _launch_after_home(int pid)
 {
-       if (pid > 0) {
-               if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_HOMESCREEN) < 0) {
-                       _E("failed to send oom dbus signal");
+       if (pid != s_home_mgr.home_pid) {
+               _I("home is created by power key new[%d] != old[%d]", pid, s_home_mgr.home_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
                }
+               s_home_mgr.home_pid = pid;
        }
-       s_home_mgr.home_pid = pid;
 }
 
 
index 0a48df5..2043c64 100644 (file)
@@ -155,9 +155,7 @@ static void _cancel_key_events(void)
 static void _after_launch_taskmgr(int pid)
 {
        if (0 < pid) {
-               if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-                       _E("failed to send oom dbus signal");
-               }
+               dbus_util_send_perceptible_signal(pid);
        }
 }
 
index 691632b..cc82b3e 100644 (file)
@@ -209,8 +209,11 @@ static void _after_launch_lock(int pid)
 {
        int idle_lock_state = 0;
 
-       if (dbus_util_send_oomadj(pid, OOM_ADJ_VALUE_DEFAULT) < 0) {
-               _E("cannot send oomadj for pid[%d]", pid);
+       if (pid != s_lock_mgr.lock_pid) {
+               _I("lockscreen is launched: new[%d] != old[%d]", pid, s_lock_mgr.lock_pid);
+               if (pid > 0) {
+                       dbus_util_send_perceptible_signal(pid);
+               }
        }
        process_mgr_set_lock_priority(pid);
        display_unlock_state(LCD_OFF, PM_SLEEP_MARGIN);
diff --git a/tags b/tags
deleted file mode 100644 (file)
index 0a22acd..0000000
--- a/tags
+++ /dev/null
@@ -1,716 +0,0 @@
-!_TAG_FILE_FORMAT      2       /extended format; --format=1 will not append ;" to lines/
-!_TAG_FILE_SORTED      1       /0=unsorted, 1=sorted, 2=foldcase/
-!_TAG_PROGRAM_AUTHOR   Darren Hiebert  /dhiebert@users.sourceforge.net/
-!_TAG_PROGRAM_NAME     Exuberant Ctags //
-!_TAG_PROGRAM_URL      http://ctags.sourceforge.net    /official site/
-!_TAG_PROGRAM_VERSION  5.9~svn20110310 //
-AFTER_LOCKSCREEN       include/mobile/starter.h        /^      AFTER_LOCKSCREEN,$/;"   e       enum:ODE_PROCESS
-APPID_BROWSER  src/common/hw_key.c     43;"    d       file:
-APPID_BROWSER  src/mobile/hw_key.c     42;"    d       file:
-APPID_CALLLOG  src/common/hw_key.c     40;"    d       file:
-APPID_CAMERA   src/common/hw_key.c     39;"    d       file:
-APPID_CAMERA   src/mobile/hw_key.c     39;"    d       file:
-APPID_DIALER   src/common/hw_key.c     45;"    d       file:
-APPID_DIALER   src/mobile/hw_key.c     44;"    d       file:
-APPID_EMAIL    src/common/hw_key.c     44;"    d       file:
-APPID_EMAIL    src/mobile/hw_key.c     43;"    d       file:
-APPID_INDICATOR        src/mobile/home_mgr.c   40;"    d       file:
-APPID_MUSIC_PLAYER     src/common/hw_key.c     41;"    d       file:
-APPID_MUSIC_PLAYER     src/mobile/hw_key.c     40;"    d       file:
-APPID_QUICKPANEL       src/mobile/home_mgr.c   41;"    d       file:
-APPID_SEARCH   src/mobile/hw_key.c     45;"    d       file:
-APPID_TASKMGR  src/common/hw_key.c     42;"    d       file:
-APPID_TASKMGR  src/mobile/hw_key.c     41;"    d       file:
-APP_CONTROL_OPERATION_MAIN_KEY src/wearable/hw_key.c   40;"    d       file:
-APP_CONTROL_OPERATION_MAIN_VALUE       src/wearable/hw_key.c   41;"    d       file:
-APP_TRAY_PKG_NAME      include/util.h  24;"    d
-BEFORE_LOCKSCREEN      include/mobile/starter.h        /^      BEFORE_LOCKSCREEN = 0,$/;"      e       enum:ODE_PROCESS
-BUF_SIZE_1024  include/util.h  50;"    d
-BUF_SIZE_128   include/util.h  47;"    d
-BUF_SIZE_16    include/util.h  45;"    d
-BUF_SIZE_256   include/util.h  48;"    d
-BUF_SIZE_32    include/util.h  46;"    d
-BUF_SIZE_512   include/util.h  49;"    d
-CAMERA_OP_KEY  src/mobile/hw_key.c     177;"   d       file:
-CAMERA_OP_VAL  src/mobile/hw_key.c     178;"   d       file:
-CANCEL_KEY_TIMER_SEC   src/common/hw_key.c     51;"    d       file:
-CLUSTER_HOME_PKG_NAME  include/util.h  27;"    d
-CONF_PATH_NUMBER       include/util.h  43;"    d
-CPU_BOOSTER_INTERFACE  src/dbus_util.c 32;"    d       file:
-CPU_BOOSTER_OBJECT_PATH        src/dbus_util.c 31;"    d       file:
-DATA_MOUNTED   src/common/starter.c    45;"    d       file:
-DATA_UNENCRYPTED       src/common/starter.c    44;"    d       file:
-DBUS_CPU_BOOSTER_SEC   src/dbus_util.c 34;"    d       file:
-DBUS_LOCK_PMQOS_SEC    src/dbus_util.c 37;"    d       file:
-DBUS_REPLY_TIMEOUT     src/dbus_util.c 24;"    d       file:
-DEAD_TIMER_COUNT_MAX   src/common/home_mgr.c   44;"    d       file:
-DEAD_TIMER_COUNT_MAX   src/mobile/home_mgr.c   44;"    d       file:
-DEAD_TIMER_SEC src/common/home_mgr.c   43;"    d       file:
-DEAD_TIMER_SEC src/mobile/home_mgr.c   43;"    d       file:
-DEFAULT_TASKMGR_PKG_NAME       include/util.h  42;"    d
-DELAY_TIME_SEC src/mobile/hw_key.c     49;"    d       file:
-DEVICED_BUS_NAME       include/dbus_util.h     30;"    d
-DEVICED_INTERFACE      include/dbus_util.h     34;"    d
-DEVICED_INTERFACE_DISPLAY      include/dbus_util.h     38;"    d
-DEVICED_INTERFACE_NAME include/dbus_util.h     32;"    d
-DEVICED_OBJECT_PATH    include/dbus_util.h     31;"    d
-DEVICED_PATH   include/dbus_util.h     33;"    d
-DEVICED_SET_METHOD     include/dbus_util.h     35;"    d
-DISPLAY_OBJECT_PATH    include/dbus_util.h     37;"    d
-EASY_APPS_PKG_NAME     include/util.h  29;"    d
-EASY_HOME_PKG_NAME     include/util.h  28;"    d
-HOMEKEY_TIMER_SEC      src/common/hw_key.c     50;"    d       file:
-HOMESCREEN_PKG_NAME    include/util.h  33;"    d
-HOMESCREEN_PKG_NAME    include/util.h  35;"    d
-HOMESCREEN_PKG_NAME    include/util.h  38;"    d
-HOME_KEY_TIMER_SEC     src/mobile/hw_key.c     48;"    d       file:
-HOME_OP_KEY    src/common/hw_key.c     187;"   d       file:
-HOME_OP_KEY    src/mobile/hw_key.c     175;"   d       file:
-HOME_OP_VAL_LAUNCH_BY_HOME_KEY src/common/hw_key.c     188;"   d       file:
-HOME_OP_VAL_LAUNCH_BY_HOME_KEY src/mobile/hw_key.c     176;"   d       file:
-HOME_TERMINATED        src/common/home_mgr.c   39;"    d       file:
-HOME_TERMINATED        src/mobile/home_mgr.c   37;"    d       file:
-IDLE_CLOCK_PKG_NAME    include/util.h  37;"    d
-ISE_DEFAULT_PKG_NAME   include/util.h  30;"    d
-ISTRUE src/common/home_mgr.c   40;"    d       file:
-ISTRUE src/mobile/home_mgr.c   38;"    d       file:
-KEY_APPS       include/common/hw_key.h /^      KEY_APPS,$/;"   e       enum:__anon2
-KEY_APPS       include/common/hw_key.h 32;"    d
-KEY_APPS       include/mobile/hw_key.h /^      KEY_APPS,$/;"   e       enum:__anon5
-KEY_APPS       include/mobile/hw_key.h 32;"    d
-KEY_APPS       include/wearable/hw_key.h       /^      KEY_APPS,$/;"   e       enum:__anon8
-KEY_BACK       include/common/hw_key.h /^      KEY_BACK,$/;"   e       enum:__anon2
-KEY_BACK       include/common/hw_key.h 34;"    d
-KEY_BACK       include/mobile/hw_key.h /^      KEY_BACK,$/;"   e       enum:__anon5
-KEY_BACK       include/mobile/hw_key.h 34;"    d
-KEY_BACK       include/wearable/hw_key.h       /^      KEY_BACK,$/;"   e       enum:__anon8
-KEY_BRIGHTNESSDOWN     include/common/hw_key.h /^      KEY_BRIGHTNESSDOWN,$/;" e       enum:__anon2
-KEY_BRIGHTNESSDOWN     include/mobile/hw_key.h /^      KEY_BRIGHTNESSDOWN,$/;" e       enum:__anon5
-KEY_BRIGHTNESSDOWN     include/wearable/hw_key.h       /^      KEY_BRIGHTNESSDOWN,$/;" e       enum:__anon8
-KEY_BRIGHTNESSUP       include/common/hw_key.h /^      KEY_BRIGHTNESSUP,$/;"   e       enum:__anon2
-KEY_BRIGHTNESSUP       include/mobile/hw_key.h /^      KEY_BRIGHTNESSUP,$/;"   e       enum:__anon5
-KEY_BRIGHTNESSUP       include/wearable/hw_key.h       /^      KEY_BRIGHTNESSUP,$/;"   e       enum:__anon8
-KEY_CANCEL     include/common/hw_key.h /^      KEY_CANCEL,$/;" e       enum:__anon2
-KEY_CANCEL     include/mobile/hw_key.h /^      KEY_CANCEL,$/;" e       enum:__anon5
-KEY_CANCEL     include/wearable/hw_key.h       /^      KEY_CANCEL,$/;" e       enum:__anon8
-KEY_CONFIG     include/common/hw_key.h /^      KEY_CONFIG,$/;" e       enum:__anon2
-KEY_CONFIG     include/common/hw_key.h 25;"    d
-KEY_CONFIG     include/mobile/hw_key.h /^      KEY_CONFIG,$/;" e       enum:__anon5
-KEY_CONFIG     include/mobile/hw_key.h 25;"    d
-KEY_CONFIG     include/wearable/hw_key.h       /^      KEY_CONFIG,$/;" e       enum:__anon8
-KEY_CONNECT    include/common/hw_key.h /^      KEY_CONNECT,$/;"        e       enum:__anon2
-KEY_CONNECT    include/common/hw_key.h 33;"    d
-KEY_CONNECT    include/mobile/hw_key.h /^      KEY_CONNECT,$/;"        e       enum:__anon5
-KEY_CONNECT    include/mobile/hw_key.h 33;"    d
-KEY_CONNECT    include/wearable/hw_key.h       /^      KEY_CONNECT,$/;"        e       enum:__anon8
-KEY_FASTFORWARD        include/common/hw_key.h /^      KEY_FASTFORWARD,$/;"    e       enum:__anon2
-KEY_FASTFORWARD        include/mobile/hw_key.h /^      KEY_FASTFORWARD,$/;"    e       enum:__anon5
-KEY_FASTFORWARD        include/wearable/hw_key.h       /^      KEY_FASTFORWARD,$/;"    e       enum:__anon8
-KEY_GAMEPLAY   include/common/hw_key.h /^      KEY_GAMEPLAY,$/;"       e       enum:__anon2
-KEY_GAMEPLAY   include/mobile/hw_key.h /^      KEY_GAMEPLAY,$/;"       e       enum:__anon5
-KEY_GAMEPLAY   include/wearable/hw_key.h       /^      KEY_GAMEPLAY,$/;"       e       enum:__anon8
-KEY_HOME       include/common/hw_key.h /^      KEY_HOME,$/;"   e       enum:__anon2
-KEY_HOME       include/common/hw_key.h 24;"    d
-KEY_HOME       include/mobile/hw_key.h /^      KEY_HOME,$/;"   e       enum:__anon5
-KEY_HOME       include/mobile/hw_key.h 24;"    d
-KEY_HOME       include/wearable/hw_key.h       /^      KEY_HOME,$/;"   e       enum:__anon8
-KEY_HOMEPAGE   include/common/hw_key.h /^      KEY_HOMEPAGE,$/;"       e       enum:__anon2
-KEY_HOMEPAGE   include/mobile/hw_key.h /^      KEY_HOMEPAGE,$/;"       e       enum:__anon5
-KEY_HOMEPAGE   include/wearable/hw_key.h       /^      KEY_HOMEPAGE,$/;"       e       enum:__anon8
-KEY_LANGUAGE   include/common/hw_key.h /^      KEY_LANGUAGE,$/;"       e       enum:__anon2
-KEY_LANGUAGE   include/mobile/hw_key.h /^      KEY_LANGUAGE,$/;"       e       enum:__anon5
-KEY_LANGUAGE   include/wearable/hw_key.h       /^      KEY_LANGUAGE,$/;"       e       enum:__anon8
-KEY_MAIL       include/common/hw_key.h /^      KEY_MAIL,$/;"   e       enum:__anon2
-KEY_MAIL       include/common/hw_key.h 30;"    d
-KEY_MAIL       include/mobile/hw_key.h /^      KEY_MAIL,$/;"   e       enum:__anon5
-KEY_MAIL       include/mobile/hw_key.h 30;"    d
-KEY_MAIL       include/wearable/hw_key.h       /^      KEY_MAIL,$/;"   e       enum:__anon8
-KEY_MEDIA      include/common/hw_key.h /^      KEY_MEDIA,$/;"  e       enum:__anon2
-KEY_MEDIA      include/common/hw_key.h 27;"    d
-KEY_MEDIA      include/mobile/hw_key.h /^      KEY_MEDIA,$/;"  e       enum:__anon5
-KEY_MEDIA      include/mobile/hw_key.h 27;"    d
-KEY_MEDIA      include/wearable/hw_key.h       /^      KEY_MEDIA,$/;"  e       enum:__anon8
-KEY_MENU       include/common/hw_key.h /^      KEY_MENU,$/;"   e       enum:__anon2
-KEY_MENU       include/mobile/hw_key.h /^      KEY_MENU,$/;"   e       enum:__anon5
-KEY_MENU       include/wearable/hw_key.h       /^      KEY_MENU,$/;"   e       enum:__anon8
-KEY_MUTE       include/common/hw_key.h /^      KEY_MUTE,$/;"   e       enum:__anon2
-KEY_MUTE       include/mobile/hw_key.h /^      KEY_MUTE,$/;"   e       enum:__anon5
-KEY_MUTE       include/wearable/hw_key.h       /^      KEY_MUTE,$/;"   e       enum:__anon8
-KEY_NAME_MAX   include/common/hw_key.h /^      KEY_NAME_MAX,$/;"       e       enum:__anon2
-KEY_NAME_MAX   include/mobile/hw_key.h /^      KEY_NAME_MAX,$/;"       e       enum:__anon5
-KEY_NAME_MAX   include/wearable/hw_key.h       /^      KEY_NAME_MAX,$/;"       e       enum:__anon8
-KEY_NEXTSONG   include/common/hw_key.h /^      KEY_NEXTSONG,$/;"       e       enum:__anon2
-KEY_NEXTSONG   include/mobile/hw_key.h /^      KEY_NEXTSONG,$/;"       e       enum:__anon5
-KEY_NEXTSONG   include/wearable/hw_key.h       /^      KEY_NEXTSONG,$/;"       e       enum:__anon8
-KEY_PAUSECB    include/common/hw_key.h /^      KEY_PAUSECB,$/;"        e       enum:__anon2
-KEY_PAUSECB    include/mobile/hw_key.h /^      KEY_PAUSECB,$/;"        e       enum:__anon5
-KEY_PAUSECB    include/wearable/hw_key.h       /^      KEY_PAUSECB,$/;"        e       enum:__anon8
-KEY_PLAYCD     include/common/hw_key.h /^      KEY_PLAYCD,$/;" e       enum:__anon2
-KEY_PLAYCD     include/mobile/hw_key.h /^      KEY_PLAYCD,$/;" e       enum:__anon5
-KEY_PLAYCD     include/wearable/hw_key.h       /^      KEY_PLAYCD,$/;" e       enum:__anon8
-KEY_PLAYPAUSE  include/common/hw_key.h /^      KEY_PLAYPAUSE,$/;"      e       enum:__anon2
-KEY_PLAYPAUSE  include/mobile/hw_key.h /^      KEY_PLAYPAUSE,$/;"      e       enum:__anon5
-KEY_PLAYPAUSE  include/wearable/hw_key.h       /^      KEY_PLAYPAUSE,$/;"      e       enum:__anon8
-KEY_POWER      include/common/hw_key.h /^      KEY_POWER = 2,$/;"      e       enum:__anon2
-KEY_POWER      include/mobile/hw_key.h /^      KEY_POWER = 2,$/;"      e       enum:__anon5
-KEY_POWER      include/wearable/hw_key.h       /^      KEY_POWER = 2,$/;"      e       enum:__anon8
-KEY_PRIVEIOUSSONG      include/common/hw_key.h /^      KEY_PRIVEIOUSSONG,$/;"  e       enum:__anon2
-KEY_PRIVEIOUSSONG      include/mobile/hw_key.h /^      KEY_PRIVEIOUSSONG,$/;"  e       enum:__anon5
-KEY_PRIVEIOUSSONG      include/wearable/hw_key.h       /^      KEY_PRIVEIOUSSONG,$/;"  e       enum:__anon8
-KEY_QUICKPANEL include/common/hw_key.h /^      KEY_QUICKPANEL,$/;"     e       enum:__anon2
-KEY_QUICKPANEL include/mobile/hw_key.h /^      KEY_QUICKPANEL,$/;"     e       enum:__anon5
-KEY_QUICKPANEL include/wearable/hw_key.h       /^      KEY_QUICKPANEL,$/;"     e       enum:__anon8
-KEY_REC        include/common/hw_key.h /^      KEY_REC,$/;"    e       enum:__anon2
-KEY_REC        include/mobile/hw_key.h /^      KEY_REC,$/;"    e       enum:__anon5
-KEY_REC        include/wearable/hw_key.h       /^      KEY_REC,$/;"    e       enum:__anon8
-KEY_REWIND     include/common/hw_key.h /^      KEY_REWIND,$/;" e       enum:__anon2
-KEY_REWIND     include/mobile/hw_key.h /^      KEY_REWIND,$/;" e       enum:__anon5
-KEY_REWIND     include/wearable/hw_key.h       /^      KEY_REWIND,$/;" e       enum:__anon8
-KEY_SCREENSAVER        include/common/hw_key.h /^      KEY_SCREENSAVER,$/;"    e       enum:__anon2
-KEY_SCREENSAVER        include/mobile/hw_key.h /^      KEY_SCREENSAVER,$/;"    e       enum:__anon5
-KEY_SCREENSAVER        include/wearable/hw_key.h       /^      KEY_SCREENSAVER,$/;"    e       enum:__anon8
-KEY_SEARCH     include/common/hw_key.h /^      KEY_SEARCH,$/;" e       enum:__anon2
-KEY_SEARCH     include/common/hw_key.h 26;"    d
-KEY_SEARCH     include/mobile/hw_key.h /^      KEY_SEARCH,$/;" e       enum:__anon5
-KEY_SEARCH     include/mobile/hw_key.h 26;"    d
-KEY_SEARCH     include/wearable/hw_key.h       /^      KEY_SEARCH,$/;" e       enum:__anon8
-KEY_SOFTBD     include/common/hw_key.h /^      KEY_SOFTBD,$/;" e       enum:__anon2
-KEY_SOFTBD     include/mobile/hw_key.h /^      KEY_SOFTBD,$/;" e       enum:__anon5
-KEY_SOFTBD     include/wearable/hw_key.h       /^      KEY_SOFTBD,$/;" e       enum:__anon8
-KEY_STOPCD     include/common/hw_key.h /^      KEY_STOPCD,$/;" e       enum:__anon2
-KEY_STOPCD     include/mobile/hw_key.h /^      KEY_STOPCD,$/;" e       enum:__anon5
-KEY_STOPCD     include/wearable/hw_key.h       /^      KEY_STOPCD,$/;" e       enum:__anon8
-KEY_TASKSWITCH include/common/hw_key.h /^      KEY_TASKSWITCH,$/;"     e       enum:__anon2
-KEY_TASKSWITCH include/common/hw_key.h 28;"    d
-KEY_TASKSWITCH include/mobile/hw_key.h /^      KEY_TASKSWITCH,$/;"     e       enum:__anon5
-KEY_TASKSWITCH include/mobile/hw_key.h 28;"    d
-KEY_TASKSWITCH include/wearable/hw_key.h       /^      KEY_TASKSWITCH,$/;"     e       enum:__anon8
-KEY_VOICE      include/common/hw_key.h /^      KEY_VOICE,$/;"  e       enum:__anon2
-KEY_VOICE      include/common/hw_key.h 31;"    d
-KEY_VOICE      include/mobile/hw_key.h /^      KEY_VOICE,$/;"  e       enum:__anon5
-KEY_VOICE      include/mobile/hw_key.h 31;"    d
-KEY_VOICE      include/wearable/hw_key.h       /^      KEY_VOICE,$/;"  e       enum:__anon8
-KEY_VOICEWAKEUP        include/common/hw_key.h /^      KEY_VOICEWAKEUP,$/;"    e       enum:__anon2
-KEY_VOICEWAKEUP        include/mobile/hw_key.h /^      KEY_VOICEWAKEUP,$/;"    e       enum:__anon5
-KEY_VOICEWAKEUP        include/wearable/hw_key.h       /^      KEY_VOICEWAKEUP,$/;"    e       enum:__anon8
-KEY_VOICEWAKEUP_LPSD   include/common/hw_key.h /^      KEY_VOICEWAKEUP_LPSD,$/;"       e       enum:__anon2
-KEY_VOICEWAKEUP_LPSD   include/mobile/hw_key.h /^      KEY_VOICEWAKEUP_LPSD,$/;"       e       enum:__anon5
-KEY_VOICEWAKEUP_LPSD   include/wearable/hw_key.h       /^      KEY_VOICEWAKEUP_LPSD,$/;"       e       enum:__anon8
-KEY_VOLUMEDOWN include/common/hw_key.h /^      KEY_VOLUMEDOWN = 1,$/;" e       enum:__anon2
-KEY_VOLUMEDOWN include/common/hw_key.h 23;"    d
-KEY_VOLUMEDOWN include/mobile/hw_key.h /^      KEY_VOLUMEDOWN = 1,$/;" e       enum:__anon5
-KEY_VOLUMEDOWN include/mobile/hw_key.h 23;"    d
-KEY_VOLUMEDOWN include/wearable/hw_key.h       /^      KEY_VOLUMEDOWN = 1,$/;" e       enum:__anon8
-KEY_VOLUMEUP   include/common/hw_key.h /^      KEY_VOLUMEUP = 0,$/;"   e       enum:__anon2
-KEY_VOLUMEUP   include/common/hw_key.h 22;"    d
-KEY_VOLUMEUP   include/mobile/hw_key.h /^      KEY_VOLUMEUP = 0,$/;"   e       enum:__anon5
-KEY_VOLUMEUP   include/mobile/hw_key.h 22;"    d
-KEY_VOLUMEUP   include/wearable/hw_key.h       /^      KEY_VOLUMEUP = 0,$/;"   e       enum:__anon8
-KEY_WEBPAGE    include/common/hw_key.h /^      KEY_WEBPAGE,$/;"        e       enum:__anon2
-KEY_WEBPAGE    include/common/hw_key.h 29;"    d
-KEY_WEBPAGE    include/mobile/hw_key.h /^      KEY_WEBPAGE,$/;"        e       enum:__anon5
-KEY_WEBPAGE    include/mobile/hw_key.h 29;"    d
-KEY_WEBPAGE    include/wearable/hw_key.h       /^      KEY_WEBPAGE,$/;"        e       enum:__anon8
-KLEY_CAMERA    include/common/hw_key.h /^      KLEY_CAMERA,$/;"        e       enum:__anon2
-KLEY_CAMERA    include/mobile/hw_key.h /^      KLEY_CAMERA,$/;"        e       enum:__anon5
-KLEY_CAMERA    include/wearable/hw_key.h       /^      KLEY_CAMERA,$/;"        e       enum:__anon8
-LAUNCH_BY_HOME_KEY     src/mobile/hw_key.c     /^      LAUNCH_BY_HOME_KEY = 0,$/;"     e       enum:__anon13   file:
-LAUNCH_BY_LONG_PRESS   src/mobile/hw_key.c     /^      LAUNCH_BY_LONG_PRESS,$/;"       e       enum:__anon13   file:
-LAUNCH_BY_QUICK_LAUNCH src/mobile/hw_key.c     /^      LAUNCH_BY_QUICK_LAUNCH,$/;"     e       enum:__anon13   file:
-LAUNCH_BY_QUICK_LAUNCH_ON_LOCK src/mobile/hw_key.c     /^      LAUNCH_BY_QUICK_LAUNCH_ON_LOCK,$/;"     e       enum:__anon13   file:
-LAUNCH_BY_SEARCH_KEY   src/mobile/hw_key.c     /^      LAUNCH_BY_SEARCH_KEY,$/;"       e       enum:__anon13   file:
-LAUNCH_BY_TASKSWITCH_KEY       src/mobile/hw_key.c     /^      LAUNCH_BY_TASKSWITCH_KEY,$/;"   e       enum:__anon13   file:
-LCD_STATE_MAX  include/common/lock_mgr.h       /^      LCD_STATE_MAX,$/;"      e       enum:__anon4
-LCD_STATE_MAX  include/mobile/lock_mgr.h       /^      LCD_STATE_MAX,$/;"      e       enum:__anon7
-LCD_STATE_OFF  include/common/lock_mgr.h       /^      LCD_STATE_OFF,$/;"      e       enum:__anon4
-LCD_STATE_OFF  include/mobile/lock_mgr.h       /^      LCD_STATE_OFF,$/;"      e       enum:__anon7
-LCD_STATE_ON   include/common/lock_mgr.h       /^      LCD_STATE_ON,$/;"       e       enum:__anon4
-LCD_STATE_ON   include/mobile/lock_mgr.h       /^      LCD_STATE_ON,$/;"       e       enum:__anon7
-LOCKD_VIDEO_CALL_PKG_NAME      src/process_mgr.c       32;"    d       file:
-LOCKD_VOICE_CALL_PKG_NAME      src/process_mgr.c       31;"    d       file:
-LOCKSCREEN_ENABLE      src/common/starter.c    40;"    d       file:
-LOCK_MGR_DEFAULT_BG_PATH       include/common/lock_mgr.h       29;"    d
-LOCK_MGR_DEFAULT_BG_PATH       include/common/lock_mgr.h       31;"    d
-LOCK_MGR_DEFAULT_BG_PATH       include/mobile/lock_mgr.h       29;"    d
-LOCK_MGR_DEFAULT_BG_PATH       include/mobile/lock_mgr.h       31;"    d
-LOCK_SOUND_BTN_KEY     include/common/lock_mgr.h       /^      LOCK_SOUND_BTN_KEY,$/;" e       enum:__anon3
-LOCK_SOUND_BTN_KEY     include/mobile/lock_mgr.h       /^      LOCK_SOUND_BTN_KEY,$/;" e       enum:__anon6
-LOCK_SOUND_LOCK        include/common/lock_mgr.h       /^      LOCK_SOUND_LOCK,$/;"    e       enum:__anon3
-LOCK_SOUND_LOCK        include/mobile/lock_mgr.h       /^      LOCK_SOUND_LOCK,$/;"    e       enum:__anon6
-LOCK_SOUND_MAX include/common/lock_mgr.h       /^      LOCK_SOUND_MAX,$/;"     e       enum:__anon3
-LOCK_SOUND_MAX include/mobile/lock_mgr.h       /^      LOCK_SOUND_MAX,$/;"     e       enum:__anon6
-LOCK_SOUND_TAP include/common/lock_mgr.h       /^      LOCK_SOUND_TAP,$/;"     e       enum:__anon3
-LOCK_SOUND_TAP include/mobile/lock_mgr.h       /^      LOCK_SOUND_TAP,$/;"     e       enum:__anon6
-LOCK_SOUND_UNLOCK      include/common/lock_mgr.h       /^      LOCK_SOUND_UNLOCK,$/;"  e       enum:__anon3
-LOCK_SOUND_UNLOCK      include/mobile/lock_mgr.h       /^      LOCK_SOUND_UNLOCK,$/;"  e       enum:__anon6
-LOG_TAG        include/util.h  54;"    d
-LOG_TAG        include/util.h  55;"    d
-LONG_PRESS_TIMER_SEC   src/common/hw_key.c     49;"    d       file:
-LONG_PRESS_TIMER_SEC   src/mobile/hw_key.c     47;"    d       file:
-LONG_PRESS_TIMER_SEC   src/wearable/hw_key.c   36;"    d       file:
-MEMBER_LCD_OFF include/dbus_util.h     40;"    d
-MEMBER_LCD_ON  include/dbus_util.h     39;"    d
-MENU_SCREEN_PKG_NAME   include/util.h  25;"    d
-METHOD_CPU_BOOSTER     src/dbus_util.c 33;"    d       file:
-METHOD_LOCK_PMQOS_NAME src/dbus_util.c 36;"    d       file:
-METHOD_POWEROFF_NAME   src/dbus_util.c 29;"    d       file:
-MMC_MOUNT_POINT        src/common/starter.c    48;"    d       file:
-NICE_VALUE_LOCKSCREEN  src/process_mgr.c       35;"    d       file:
-NICE_VALUE_PWLOCK      src/process_mgr.c       34;"    d       file:
-ODE_PROCESS    include/mobile/starter.h        /^enum ODE_PROCESS {$/;"        g
-OOM_ADJ_VALUE_DEFAULT  include/dbus_util.h     25;"    d
-OOM_ADJ_VALUE_DEFAULT  include/dbus_util.h     27;"    d
-OOM_ADJ_VALUE_HOMESCREEN       include/dbus_util.h     22;"    d
-PASSWORD_LOCK_PROGRESS src/common/lock_mgr.c   41;"    d       file:
-PM_UNLOCK_TIMER_SEC    src/wearable/clock_mgr.c        27;"    d       file:
-POPUP_DATA_KEY_WINDOW  src/common/popup.c      22;"    d       file:
-POPUP_DATA_KEY_WINDOW  src/mobile/popup.c      22;"    d       file:
-POWERKEY_LCDOFF_TIMER_SEC      src/wearable/hw_key.c   37;"    d       file:
-POWERKEY_TIMER_SEC     src/wearable/hw_key.c   38;"    d       file:
-POWEROFF_BUS_NAME      src/dbus_util.c 26;"    d       file:
-POWEROFF_INTERFACE_NAME        src/dbus_util.c 28;"    d       file:
-POWEROFF_OBJECT_PATH   src/dbus_util.c 27;"    d       file:
-PRINT_TIME     include/util.h  126;"   d
-PROVIDER_PKG_NAME      include/util.h  26;"    d
-PWLOCK_LITE_PKG_NAME   src/common/starter.c    42;"    d       file:
-SD_CRYPT_META_FILE     src/common/starter.c    47;"    d       file:
-SD_DATA_ENCRYPTED      src/common/starter.c    46;"    d       file:
-SEARCH_PKG_NAME        src/common/hw_key.c     134;"   d       file:
-SERVICE_OPERATION_POPUP_SEARCH src/common/hw_key.c     133;"   d       file:
-STATUS_ACTIVE_KEY_BOOT_ANIMATION_FINISHED      include/status.h        /^      STATUS_ACTIVE_KEY_BOOT_ANIMATION_FINISHED,$/;"  e       enum:__anon1
-STATUS_ACTIVE_KEY_INVALID      include/status.h        /^      STATUS_ACTIVE_KEY_INVALID = -1,$/;"     e       enum:__anon1
-STATUS_ACTIVE_KEY_LANGSET      include/status.h        /^      STATUS_ACTIVE_KEY_LANGSET,$/;"  e       enum:__anon1
-STATUS_ACTIVE_KEY_MAX  include/status.h        /^      STATUS_ACTIVE_KEY_MAX,$/;"      e       enum:__anon1
-STATUS_ACTIVE_KEY_PM_STATE     include/status.h        /^      STATUS_ACTIVE_KEY_PM_STATE = 0,$/;"     e       enum:__anon1
-STATUS_ACTIVE_KEY_SETAPPL_SCREEN_LOCK_TYPE_INT include/status.h        /^      STATUS_ACTIVE_KEY_SETAPPL_SCREEN_LOCK_TYPE_INT,$/;"     e       enum:__anon1
-STATUS_ACTIVE_KEY_SETAPPL_SELECTED_PACKAGE_NAME        include/status.h        /^      STATUS_ACTIVE_KEY_SETAPPL_SELECTED_PACKAGE_NAME,$/;"    e       enum:__anon1
-STATUS_ACTIVE_KEY_STARTER_SEQUENCE     include/status.h        /^      STATUS_ACTIVE_KEY_STARTER_SEQUENCE,$/;" e       enum:__anon1
-STATUS_ACTIVE_KEY_SYSMAN_POWER_OFF_STATUS      include/status.h        /^      STATUS_ACTIVE_KEY_SYSMAN_POWER_OFF_STATUS,$/;"  e       enum:__anon1
-STATUS_DEFAULT_LOCK_PKG_NAME   include/status.h        31;"    d
-STR_ATOM_KEYROUTER_NOTIWINDOW  src/common/hw_key.c     47;"    d       file:
-SYSPOPUPID_VOLUME      src/common/home_mgr.c   41;"    d       file:
-SYSPOPUPID_VOLUME      src/mobile/home_mgr.c   39;"    d       file:
-SYSTEM_INFO_KEY_NETWORK_TELEPHONY      src/mobile/lock_mgr.c   46;"    d       file:
-SYS_LOCK_BUS_NAME      include/dbus_util.h     42;"    d
-SYS_LOCK_INTERFACE_TERMINATE   include/dbus_util.h     45;"    d
-SYS_LOCK_INTERFACE_UNLOCK      include/dbus_util.h     44;"    d
-SYS_LOCK_MEMBER_TERMINATE      include/dbus_util.h     47;"    d
-SYS_LOCK_MEMBER_UNLOCK include/dbus_util.h     46;"    d
-SYS_LOCK_OBJECT_PATH   include/dbus_util.h     43;"    d
-S_     include/util.h  145;"   d
-TASKMGR_PKG_NAME       include/util.h  41;"    d
-USE_DBUS_POWEROFF      src/wearable/hw_key.c   43;"    d       file:
-VCONFKEY_REMOTE_LOCK_ISLOCKED  src/status.c    27;"    d       file:
-VCONFKEY_SETAPPL_PASSWORD_ATTEMPTS_LEFT_INT    include/status.h        29;"    d
-VCONFKEY_STARTER_RESERVED_APPS_STATUS  include/status.h        26;"    d
-VOLUME_ENABLE  src/common/home_mgr.c   37;"    d       file:
-W_CLOCK_VIEWER src/wearable/clock_mgr.c        28;"    d       file:
-W_HOME_PKGNAME src/wearable/home_mgr.c 25;"    d       file:
-_      include/util.h  141;"   d
-_D     include/util.h  64;"    d
-_E     include/util.h  72;"    d
-_EDJ   include/common/lock_mgr.h       26;"    d
-_EDJ   include/mobile/lock_mgr.h       26;"    d
-_F     include/util.h  132;"   d
-_I     include/util.h  68;"    d
-_SECURE_D      include/util.h  80;"    d
-_SECURE_E      include/util.h  88;"    d
-_SECURE_I      include/util.h  84;"    d
-_SECURE_W      include/util.h  76;"    d
-_W     include/util.h  60;"    d
-__CLOCK_MGR_H__        include/wearable/clock_mgr.h    18;"    d
-__DBUS_UTIL_H__        include/dbus_util.h     18;"    d
-__HOME_MGR_H__ include/wearable/home_mgr.h     18;"    d
-__HOURLY_ALERT_H__     include/wearable/hourly_alert.h 18;"    d
-__HW_KEY_H__   include/common/hw_key.h 18;"    d
-__HW_KEY_H__   include/mobile/hw_key.h 18;"    d
-__LOCK_DAEMON_H__      include/common/lock_mgr.h       18;"    d
-__LOCK_DAEMON_H__      include/mobile/lock_mgr.h       18;"    d
-__MENU_DAEMON_UTIL_H__ include/util.h  18;"    d
-__PACKAGE_MGR_H__      include/package_mgr.h   18;"    d
-__POPUP_H__    include/common/popup.h  18;"    d
-__POPUP_H__    include/mobile/popup.h  18;"    d
-__PROCESS_MGR_H__      include/process_mgr.h   18;"    d
-__STARTER_H__  include/common/starter.h        18;"    d
-__STARTER_H__  include/mobile/starter.h        18;"    d
-__STATUS_H__   include/status.h        18;"    d
-__WINDOW_MGR_H__       include/window_mgr.h    18;"    d
-__keygrab_timer_cb     src/common/hw_key.c     /^static Eina_Bool __keygrab_timer_cb(void *data)$/;"   f       file:
-__keygrab_timer_cb     src/wearable/hw_key.c   /^static Eina_Bool __keygrab_timer_cb(void *data)$/;"   f       file:
-_after_launch_home     src/common/home_mgr.c   /^static void _after_launch_home(int pid)$/;"   f       file:
-_after_launch_home     src/mobile/home_mgr.c   /^static void _after_launch_home(int pid)$/;"   f       file:
-_after_launch_home     src/wearable/home_mgr.c /^static void _after_launch_home(int pid)$/;"   f       file:
-_after_launch_indicator        src/mobile/home_mgr.c   /^static void _after_launch_indicator(int pid)$/;"      f       file:
-_after_launch_lock     src/common/lock_mgr.c   /^static void _after_launch_lock(int pid)$/;"   f       file:
-_after_launch_lock     src/mobile/lock_mgr.c   /^static void _after_launch_lock(int pid)$/;"   f       file:
-_after_launch_quickpanel       src/mobile/home_mgr.c   /^static void _after_launch_quickpanel(int pid)$/;"     f       file:
-_after_launch_taskmgr  src/common/hw_key.c     /^static void _after_launch_taskmgr(int pid)$/;"        f       file:
-_after_launch_taskmgr  src/mobile/hw_key.c     /^static void _after_launch_taskmgr(int pid)$/;"        f       file:
-_after_launch_volume   src/common/home_mgr.c   /^static void _after_launch_volume(int pid)$/;" f       file:
-_after_launch_volume   src/mobile/home_mgr.c   /^static void _after_launch_volume(int pid)$/;" f       file:
-_alarm_cb      src/wearable/hourly_alert.c     /^static int _alarm_cb(alarm_id_t alarm_id, void *data)$/;"     f       file:
-_alarm_delete_cb       src/wearable/hourly_alert.c     /^static int _alarm_delete_cb(alarm_id_t id, void *user_param)$/;"      f       file:
-_alarm_fini    src/wearable/hourly_alert.c     /^static void _alarm_fini(void *data)$/;"       f       file:
-_alarm_init    src/wearable/hourly_alert.c     /^static int _alarm_init(void *data)$/;"        f       file:
-_alarm_set     src/wearable/hourly_alert.c     /^static int _alarm_set(void *data)$/;" f       file:
-_alarm_unset   src/wearable/hourly_alert.c     /^static void _alarm_unset(void *data)$/;"      f       file:
-_ambient_mode_fini     src/wearable/clock_mgr.c        /^static void _ambient_mode_fini(void)$/;"      f       file:
-_ambient_mode_init     src/wearable/clock_mgr.c        /^static void _ambient_mode_init(void)$/;"      f       file:
-_ambient_mode_setting_changed_cb       src/wearable/clock_mgr.c        /^static void _ambient_mode_setting_changed_cb(keynode_t* node, void *data)$/;" f       file:
-_append_variant        src/dbus_util.c /^static int _append_variant(DBusMessageIter *iter, const char *sig, char *param[])$/;" f       file:
-_boot_animation_finished_cb    src/common/starter.c    /^static int _boot_animation_finished_cb(status_active_key_e key, void *data)$/;"       f       file:
-_cancel_key_events     src/common/hw_key.c     /^static void _cancel_key_events(void)$/;"      f       file:
-_cancel_key_events     src/mobile/hw_key.c     /^static void _cancel_key_events(void)$/;"      f       file:
-_change_home_cb        src/common/home_mgr.c   /^static int _change_home_cb(const char *appid, const char *key, const char *value, void *cfn, void *afn)$/;"   f       file:
-_change_home_cb        src/mobile/home_mgr.c   /^static int _change_home_cb(const char *appid, const char *key, const char *value, void *cfn, void *afn)$/;"   f       file:
-_change_language_cb    src/wearable/starter.c  /^static int _change_language_cb(status_active_key_e key, void *data)$/;"       f       file:
-_change_selected_package_name  src/common/home_mgr.c   /^static int _change_selected_package_name(status_active_key_e key, void *data)$/;"     f       file:
-_change_selected_package_name  src/mobile/home_mgr.c   /^static int _change_selected_package_name(status_active_key_e key, void *data)$/;"     f       file:
-_change_sequence_cb    src/wearable/starter.c  /^static int _change_sequence_cb(status_active_key_e key, void *data)$/;"       f       file:
-_check_ambient_state_and_launch        src/wearable/clock_mgr.c        /^static void _check_ambient_state_and_launch(void)$/;" f       file:
-_check_call_idle_status        src/mobile/lock_mgr.c   /^static Eina_Bool _check_call_idle_status(void)$/;"    f       file:
-_check_dead_signal     src/common/starter.c    /^static int _check_dead_signal(int pid, void *data)$/;"        f       file:
-_check_dead_signal     src/mobile/starter.c    /^static int _check_dead_signal(int pid, void *data)$/;"        f       file:
-_check_reserved_apps_status    src/wearable/clock_mgr.c        /^static int _check_reserved_apps_status(void)$/;"      f       file:
-_check_reserved_popup_status   src/wearable/clock_mgr.c        /^static int _check_reserved_popup_status(void)$/;"     f       file:
-_check_support_telephony       src/mobile/lock_mgr.c   /^static bool _check_support_telephony(void)$/;"        f       file:
-_create_precondition_handlers_for_keygrab      src/mobile/hw_key.c     /^static void _create_precondition_handlers_for_keygrab(void)$/;"       f       file:
-_dbus_connection_get   src/dbus_util.c /^static DBusConnection *_dbus_connection_get(void)$/;" f       file:
-_dead_cb       src/wearable/home_mgr.c /^static int _dead_cb(int pid, void *data)$/;"  f       file:
-_dead_timer_cb src/common/home_mgr.c   /^static Eina_Bool _dead_timer_cb(void *data)$/;"       f       file:
-_dead_timer_cb src/mobile/home_mgr.c   /^static Eina_Bool _dead_timer_cb(void *data)$/;"       f       file:
-_deinit_telephony      src/mobile/lock_mgr.c   /^static void _deinit_telephony(void)$/;"       f       file:
-_delay_timer_cb        src/mobile/hw_key.c     /^static Eina_Bool _delay_timer_cb(void *data)$/;"      f       file:
-_destroy_precondition_handlers_for_keygrab     src/mobile/hw_key.c     /^static void _destroy_precondition_handlers_for_keygrab(void)$/;"      f       file:
-_do_double_home_key_operation  src/wearable/hw_key.c   /^static void _do_double_home_key_operation(void)$/;"   f       file:
-_fini  src/common/starter.c    /^static void _fini(struct appdata *ad)$/;"     f       file:
-_fini  src/mobile/starter.c    /^static void _fini(struct appdata *ad)$/;"     f       file:
-_fini  src/wearable/starter.c  /^static void _fini(void)$/;"   f       file:
-_global_added_cb       src/mobile/hw_key.c     /^static Eina_Bool _global_added_cb(void *data, int type, void *event)$/;"      f       file:
-_hide_home     src/common/starter.c    /^static void _hide_home(void)$/;"      f       file:
-_home_key_long_press_timer_cb  src/mobile/hw_key.c     /^static Eina_Bool _home_key_long_press_timer_cb(void *data)$/;"        f       file:
-_home_key_multi_press_timer_cb src/mobile/hw_key.c     /^static Eina_Bool _home_key_multi_press_timer_cb(void *data)$/;"       f       file:
-_home_key_multi_press_timer_on_lock_cb src/mobile/hw_key.c     /^static Eina_Bool _home_key_multi_press_timer_on_lock_cb(void *data)$/;"       f       file:
-_home_key_press_events src/mobile/hw_key.c     /^static void _home_key_press_events(void)$/;"  f       file:
-_home_key_press_events_on_lock src/mobile/hw_key.c     /^static void _home_key_press_events_on_lock(void)$/;"  f       file:
-_home_key_release_events       src/mobile/hw_key.c     /^static void _home_key_release_events(void)$/;"        f       file:
-_home_key_release_events_on_lock       src/mobile/hw_key.c     /^static void _home_key_release_events_on_lock(void)$/;"        f       file:
-_home_multi_press_timer_cb     src/common/hw_key.c     /^static Eina_Bool _home_multi_press_timer_cb(void *data)$/;"   f       file:
-_hourly_alert_changed_cb       src/wearable/hourly_alert.c     /^static void _hourly_alert_changed_cb(keynode_t* node, void *data)$/;" f       file:
-_hourly_system_time_changed_cb src/wearable/hourly_alert.c     /^static void _hourly_system_time_changed_cb(keynode_t *node, void *data)$/;"   f       file:
-_info  src/dbus_util.c /^static struct _info {$/;"     s       file:
-_init  src/common/starter.c    /^static void _init(struct appdata *ad)$/;"     f       file:
-_init  src/mobile/starter.c    /^static void _init(struct appdata *ad)$/;"     f       file:
-_init  src/wearable/starter.c  /^static void _init(void)$/;"   f       file:
-_init_telephony        src/mobile/lock_mgr.c   /^static void _init_telephony(void)$/;" f       file:
-_invoke_dbus_method_async      src/dbus_util.c /^static int _invoke_dbus_method_async(const char *dest, const char *path,$/;"  f       file:
-_invoke_dbus_method_sync       src/dbus_util.c /^static DBusMessage *_invoke_dbus_method_sync(const char *dest, const char *path,$/;"  f       file:
-_key_press_cb  src/common/hw_key.c     /^static Eina_Bool _key_press_cb(void *data, int type, void *event)$/;" f       file:
-_key_press_cb  src/mobile/hw_key.c     /^static Eina_Bool _key_press_cb(void *data, int type, void *event)$/;" f       file:
-_key_press_cb  src/wearable/hw_key.c   /^static Eina_Bool _key_press_cb(void *data, int type, void *event)$/;" f       file:
-_key_release_cb        src/common/hw_key.c     /^static Eina_Bool _key_release_cb(void *data, int type, void *event)$/;"       f       file:
-_key_release_cb        src/mobile/hw_key.c     /^static Eina_Bool _key_release_cb(void *data, int type, void *event)$/;"       f       file:
-_key_release_cb        src/wearable/hw_key.c   /^static Eina_Bool _key_release_cb(void *data, int type, void *event)$/;"       f       file:
-_keymap_update_cb      src/mobile/hw_key.c     /^static Eina_Bool _keymap_update_cb(void *data, int type, void *event)$/;"     f       file:
-_language_changed_cb   src/common/starter.c    /^static void _language_changed_cb(keynode_t *node, void *data)$/;"     f       file:
-_language_changed_cb   src/mobile/starter.c    /^static void _language_changed_cb(keynode_t *node, void *data)$/;"     f       file:
-_launch_after_home     src/common/home_mgr.c   /^static void _launch_after_home(int pid)$/;"   f       file:
-_launch_after_home     src/mobile/home_mgr.c   /^static void _launch_after_home(int pid)$/;"   f       file:
-_launch_app    src/wearable/clock_mgr.c        /^static int _launch_app(char *pkgname, bundle *b)$/;"  f       file:
-_launch_app_by_type    src/mobile/hw_key.c     /^static void _launch_app_by_type(int type)$/;" f       file:
-_launch_apps_idler_cb  src/mobile/home_mgr.c   /^static Eina_Bool _launch_apps_idler_cb(void *data)$/;"        f       file:
-_launch_by_home_key    src/common/hw_key.c     /^static Eina_Bool _launch_by_home_key(void *data)$/;"  f       file:
-_launch_home   src/common/home_mgr.c   /^static void _launch_home(const char *appid)$/;"       f       file:
-_launch_home   src/mobile/home_mgr.c   /^static void _launch_home(const char *appid)$/;"       f       file:
-_launch_info_s src/process_mgr.c       /^typedef struct _launch_info_s {$/;"   s       file:
-_launch_last_app       src/wearable/hw_key.c   /^static void _launch_last_app(void)$/;"        f       file:
-_launch_search src/common/hw_key.c     /^static int _launch_search(void)$/;"   f       file:
-_launch_taskmgr_cb     src/common/hw_key.c     /^static Eina_Bool _launch_taskmgr_cb(void* data)$/;"   f       file:
-_launch_volume_idler_cb        src/common/home_mgr.c   /^static Eina_Bool _launch_volume_idler_cb(void *data)$/;"      f       file:
-_lock_changed_cb       src/common/lock_mgr.c   /^static int _lock_changed_cb(const char *appid, const char *key, const char *value, void *cfn, void *afn)$/;"  f       file:
-_lock_changed_cb       src/mobile/lock_mgr.c   /^static int _lock_changed_cb(const char *appid, const char *key, const char *value, void *cfn, void *afn)$/;"  f       file:
-_lock_create_cb        src/common/lock_mgr.c   /^static Eina_Bool _lock_create_cb(void *data, int type, void *event)$/;"       f       file:
-_lock_daemon_init      src/common/lock_mgr.c   /^static void _lock_daemon_init(void)$/;"       f       file:
-_lock_show_cb  src/common/lock_mgr.c   /^static Eina_Bool _lock_show_cb(void *data, int type, void *event)$/;" f       file:
-_lock_type_changed_cb  src/common/lock_mgr.c   /^static int _lock_type_changed_cb(status_active_key_e key, void *data)$/;"     f       file:
-_lock_type_changed_cb  src/mobile/lock_mgr.c   /^static int _lock_type_changed_cb(status_active_key_e key, void *data)$/;"     f       file:
-_long_press_timer_cb   src/wearable/hw_key.c   /^static Eina_Bool _long_press_timer_cb(void* data)$/;" f       file:
-_mount_and_launch_apps src/mobile/starter.c    /^static void _mount_and_launch_apps(void)$/;"  f       file:
-_mount_complete_cb     src/mobile/starter.c    /^static void _mount_complete_cb(void *user_data)$/;"   f       file:
-_must_launch_cb        src/process_mgr.c       /^static Eina_Bool _must_launch_cb(void *data)$/;"      f       file:
-_must_open_cb  src/process_mgr.c       /^static Eina_Bool _must_open_cb(void *data)$/;"        f       file:
-_must_syspopup_launch_cb       src/process_mgr.c       /^static Eina_Bool _must_syspopup_launch_cb(void *data)$/;"     f       file:
-_on_lcd_changed_receive        src/common/lock_mgr.c   /^static void _on_lcd_changed_receive(void *data, DBusMessage *msg)$/;" f       file:
-_on_lcd_changed_receive        src/mobile/lock_mgr.c   /^static void _on_lcd_changed_receive(void *data, DBusMessage *msg)$/;" f       file:
-_on_lcd_changed_receive        src/wearable/clock_mgr.c        /^static void _on_lcd_changed_receive(void *data, DBusMessage *msg)$/;" f       file:
-_on_lcd_changed_receive        src/wearable/starter.c  /^static void _on_lcd_changed_receive(void *data, DBusMessage *msg)$/;" f       file:
-_other_lockscreen_unlock       src/common/lock_mgr.c   /^static void _other_lockscreen_unlock(void)$/;"        f       file:
-_other_lockscreen_unlock       src/mobile/lock_mgr.c   /^static void _other_lockscreen_unlock(void)$/;"        f       file:
-_pm_unlock_timer_cb    src/wearable/clock_mgr.c        /^static Eina_Bool _pm_unlock_timer_cb(void *data)$/;"  f       file:
-_popup_btn_clicked_cb  src/common/popup.c      /^static void _popup_btn_clicked_cb(void *data, Evas_Object *obj, void *event_info)$/;" f       file:
-_popup_btn_clicked_cb  src/mobile/popup.c      /^static void _popup_btn_clicked_cb(void *data, Evas_Object *obj, void *event_info)$/;" f       file:
-_popup_del_cb  src/common/home_mgr.c   /^static void _popup_del_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)$/;"        f       file:
-_popup_del_cb  src/common/popup.c      /^static void _popup_del_cb(void *data, Evas_Object *obj, void *event_info)$/;" f       file:
-_popup_del_cb  src/mobile/home_mgr.c   /^static void _popup_del_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)$/;"        f       file:
-_popup_del_cb  src/mobile/popup.c      /^static void _popup_del_cb(void *data, Evas_Object *obj, void *event_info)$/;" f       file:
-_popup_destroy src/common/popup.c      /^static void _popup_destroy(Evas_Object *popup)$/;"    f       file:
-_popup_destroy src/mobile/popup.c      /^static void _popup_destroy(Evas_Object *popup)$/;"    f       file:
-_power_off_cb  src/common/home_mgr.c   /^static int _power_off_cb(status_active_key_e key, void *data)$/;"     f       file:
-_power_off_cb  src/common/starter.c    /^static int _power_off_cb(status_active_key_e key, void *data)$/;"     f       file:
-_power_off_cb  src/mobile/home_mgr.c   /^static int _power_off_cb(status_active_key_e key, void *data)$/;"     f       file:
-_power_off_cb  src/mobile/starter.c    /^static int _power_off_cb(status_active_key_e key, void *data)$/;"     f       file:
-_power_off_cb  src/wearable/starter.c  /^static int _power_off_cb(status_active_key_e key, void *data)$/;"     f       file:
-_powerkey_timer_cb     src/wearable/hw_key.c   /^static Eina_Bool _powerkey_timer_cb(void *data)$/;"   f       file:
-_register_hourly_alert_alarm   src/wearable/hourly_alert.c     /^static Eina_Bool _register_hourly_alert_alarm(void)$/;"       f       file:
-_release_multimedia_key        src/common/hw_key.c     /^static void _release_multimedia_key(const char *value)$/;"    f       file:
-_set_i18n      src/common/starter.c    /^static int _set_i18n(const char *domain, const char *dir)$/;" f       file:
-_set_i18n      src/mobile/starter.c    /^static int _set_i18n(const char *domain, const char *dir)$/;" f       file:
-_set_keygrab   src/mobile/hw_key.c     /^static void _set_keygrab(void)$/;"    f       file:
-_set_lock_priority_cb  src/process_mgr.c       /^static Eina_Bool _set_lock_priority_cb(void *data)$/;"        f       file:
-_set_pwlock_priority_cb        src/process_mgr.c       /^static Eina_Bool _set_pwlock_priority_cb(void *data)$/;"      f       file:
-_set_starter_sequence  src/mobile/starter.c    /^static void _set_starter_sequence(int val)$/;"        f       file:
-_show_home     src/common/starter.c    /^static void _show_home(void)$/;"      f       file:
-_show_home_cb  src/common/home_mgr.c   /^static int _show_home_cb(status_active_key_e key, void *data)$/;"     f       file:
-_show_home_cb  src/mobile/home_mgr.c   /^static int _show_home_cb(status_active_key_e key, void *data)$/;"     f       file:
-_signal_handler        src/common/starter.c    /^static void _signal_handler(int signum, siginfo_t *info, void *unused)$/;"    f       file:
-_signal_handler        src/mobile/starter.c    /^static void _signal_handler(int signum, siginfo_t *info, void *unused)$/;"    f       file:
-_signal_handler        src/wearable/starter.c  /^static void _signal_handler(int signum, siginfo_t *info, void *unused)$/;"    f       file:
-_status_active_change_cb       src/status.c    /^static void _status_active_change_cb(keynode_t* node, void *data)$/;" f       file:
-_status_passive_change_cb      src/status.c    /^static void _status_passive_change_cb(keynode_t* node, void *data)$/;"        f       file:
-_try_to_launch src/process_mgr.c       /^static int _try_to_launch(const char *appid, const char *key, const char *value, after_func afn)$/;"  f       file:
-_try_to_open   src/process_mgr.c       /^static int _try_to_open(const char *appid, after_func afn)$/;"        f       file:
-_try_to_syspopup_launch        src/process_mgr.c       /^static int _try_to_syspopup_launch(const char *appid, const char *key, const char *value, after_func afn)$/;" f       file:
-_unregister_hourly_alert_alarm src/wearable/hourly_alert.c     /^static int _unregister_hourly_alert_alarm(void)$/;"   f       file:
-_unset_keygrab src/mobile/hw_key.c     /^static void _unset_keygrab(void)$/;"  f       file:
-_w_clock_viewer_dead_cb        src/wearable/clock_mgr.c        /^static int _w_clock_viewer_dead_cb(int pid, void *data)$/;"   f       file:
-_window_create src/common/popup.c      /^static Evas_Object *_window_create(void)$/;"  f       file:
-_window_create src/mobile/popup.c      /^static Evas_Object *_window_create(void)$/;"  f       file:
-afn    src/process_mgr.c       /^      after_func afn;$/;"     m       struct:_launch_info_s   file:
-after_func     include/process_mgr.h   /^typedef void (*after_func)(int pid);$/;"      t
-alarm_id       src/wearable/hourly_alert.c     /^      alarm_id_t alarm_id;    \/* -1 : None, others : set alarm *\/$/;"       m       struct:__anon17 file:
-appdata        include/common/starter.h        /^struct appdata {$/;"  s
-appdata        include/mobile/starter.h        /^struct appdata {$/;"  s
-appid  src/process_mgr.c       /^      char *appid;$/;"        m       struct:_launch_info_s   file:
-boot_animation_finished        include/status.h        /^      int boot_animation_finished;$/;"        m       struct:status_active_s
-break_if       include/util.h  112;"   d
-call_state     include/status.h        /^      int call_state;$/;"     m       struct:status_passive_s
-cancel src/common/hw_key.c     /^      Eina_Bool cancel;$/;"   m       struct:__anon10 file:
-cancel src/mobile/hw_key.c     /^      Eina_Bool cancel;$/;"   m       struct:__anon14 file:
-cancel src/wearable/hw_key.c   /^      Eina_Bool cancel;$/;"   m       struct:__anon16 file:
-cb_info        src/status.c    /^typedef struct cb_info {$/;"  s       file:
-cb_info_s      src/status.c    /^} cb_info_s;$/;"      t       typeref:struct:cb_info  file:
-cfn    src/process_mgr.c       /^      change_func cfn;$/;"    m       struct:_launch_info_s   file:
-change_func    include/process_mgr.h   /^typedef int (*change_func)(const char *, const char *, const char *, void *, void *);$/;"     t
-checkfd        src/common/lock_mgr.c   /^      int checkfd;$/;"        m       struct:__anon9  file:
-checkfd        src/mobile/lock_mgr.c   /^      int checkfd;$/;"        m       struct:__anon12 file:
-clock_mgr_fini src/wearable/clock_mgr.c        /^void clock_mgr_fini(void)$/;" f
-clock_mgr_init src/wearable/clock_mgr.c        /^void clock_mgr_init(void)$/;" f
-connection     src/dbus_util.c /^      DBusConnection *connection;$/;" m       struct:_info    file:
-continue_if    include/util.h  119;"   d
-data   src/status.c    /^      void *data;$/;" m       struct:cb_info  file:
-dbus_util_msg_arg_get_str      src/dbus_util.c /^char *dbus_util_msg_arg_get_str(DBusMessage *msg)$/;" f
-dbus_util_receive_lcd_status   src/dbus_util.c /^int dbus_util_receive_lcd_status(void (*changed_cb)(void *data, DBusMessage *msg), void *data)$/;"    f
-dbus_util_receive_sys_lock_status      src/dbus_util.c /^int dbus_util_receive_sys_lock_status(void (*changed_cb)(void *data, DBusMessage *msg), void *data)$/;"       f
-dbus_util_send_cpu_booster_signal      src/dbus_util.c /^void dbus_util_send_cpu_booster_signal(void)$/;"      f
-dbus_util_send_lock_PmQos_signal       src/dbus_util.c /^void dbus_util_send_lock_PmQos_signal(void)$/;"       f
-dbus_util_send_oomadj  src/dbus_util.c /^int dbus_util_send_oomadj(int pid, int oom_adj_value)$/;"     f
-dbus_util_send_poweroff_signal src/dbus_util.c /^void dbus_util_send_poweroff_signal(void)$/;" f
-dbus_util_send_sys_lock_teminate_signal        src/dbus_util.c /^void dbus_util_send_sys_lock_teminate_signal(void)$/;"        f
-dead_count     src/common/home_mgr.c   /^      int dead_count;$/;"     m       struct:__anon11 file:
-dead_count     src/mobile/home_mgr.c   /^      int dead_count;$/;"     m       struct:__anon15 file:
-dead_timer     src/common/home_mgr.c   /^      Ecore_Timer *dead_timer;$/;"    m       struct:__anon11 file:
-dead_timer     src/mobile/home_mgr.c   /^      Ecore_Timer *dead_timer;$/;"    m       struct:__anon15 file:
-delay_timer    src/mobile/hw_key.c     /^      Ecore_Timer *delay_timer;$/;"   m       struct:__anon14 file:
-errno  src/common/home_mgr.c   /^int errno;$/;"        v
-errno  src/mobile/home_mgr.c   /^int errno;$/;"        v
-errno  src/status.c    /^int errno;$/;"        v
-errno  src/wearable/starter.c  /^int errno;$/;"        v
-func   src/status.c    /^      status_active_cb func;$/;"      m       struct:cb_info  file:
-global_added   src/mobile/hw_key.c     /^      Ecore_Event_Handler *global_added;$/;"  m       struct:__anon14 file:
-global_added_flag      src/mobile/hw_key.c     /^      Eina_Bool global_added_flag;$/;"        m       struct:__anon14 file:
-goto_if        include/util.h  105;"   d
-home_appid     src/wearable/home_mgr.c /^      char *home_appid;$/;"   m       struct:__anon20 file:
-home_key_count src/mobile/hw_key.c     /^      int home_key_count;$/;" m       struct:__anon14 file:
-home_key_long_press_timer      src/mobile/hw_key.c     /^      Ecore_Timer *home_key_long_press_timer;$/;"     m       struct:__anon14 file:
-home_key_multi_press_timer     src/mobile/hw_key.c     /^      Ecore_Timer *home_key_multi_press_timer;$/;"    m       struct:__anon14 file:
-home_key_multi_press_timer_on_lock     src/mobile/hw_key.c     /^      Ecore_Timer *home_key_multi_press_timer_on_lock;$/;"    m       struct:__anon14 file:
-home_key_press_timestamp       src/mobile/hw_key.c     /^      double home_key_press_timestamp;$/;"    m       struct:__anon14 file:
-home_long_press_timer  src/common/hw_key.c     /^      Ecore_Timer *home_long_press_timer;$/;" m       struct:__anon10 file:
-home_long_press_timer  src/wearable/hw_key.c   /^      Ecore_Timer *home_long_press_timer;$/;" m       struct:__anon16 file:
-home_mgr_fini  src/common/home_mgr.c   /^void home_mgr_fini(void)$/;"  f
-home_mgr_fini  src/mobile/home_mgr.c   /^void home_mgr_fini(void)$/;"  f
-home_mgr_fini  src/wearable/home_mgr.c /^void home_mgr_fini(void)$/;"  f
-home_mgr_get_home_pid  src/common/home_mgr.c   /^int home_mgr_get_home_pid(void)$/;"   f
-home_mgr_get_home_pid  src/mobile/home_mgr.c   /^int home_mgr_get_home_pid(void)$/;"   f
-home_mgr_get_indicator_pid     src/mobile/home_mgr.c   /^int home_mgr_get_indicator_pid(void)$/;"      f
-home_mgr_get_quickpanel_pid    src/mobile/home_mgr.c   /^int home_mgr_get_quickpanel_pid(void)$/;"     f
-home_mgr_get_volume_pid        src/common/home_mgr.c   /^int home_mgr_get_volume_pid(void)$/;" f
-home_mgr_get_volume_pid        src/mobile/home_mgr.c   /^int home_mgr_get_volume_pid(void)$/;" f
-home_mgr_init  src/common/home_mgr.c   /^void home_mgr_init(void *data)$/;"    f
-home_mgr_init  src/mobile/home_mgr.c   /^void home_mgr_init(void *data)$/;"    f
-home_mgr_init  src/wearable/home_mgr.c /^void home_mgr_init(void)$/;"  f
-home_mgr_launch_home   src/wearable/home_mgr.c /^void home_mgr_launch_home(void)$/;"   f
-home_mgr_launch_home_by_power  src/wearable/home_mgr.c /^void home_mgr_launch_home_by_power(const char *val)$/;"       f
-home_mgr_launch_home_first     src/wearable/home_mgr.c /^void home_mgr_launch_home_first(void)$/;"     f
-home_mgr_open_home     src/common/home_mgr.c   /^void home_mgr_open_home(const char *appid, const char *key, const char *val)$/;"      f
-home_mgr_open_home     src/mobile/home_mgr.c   /^void home_mgr_open_home(const char *appid, const char *key, const char *val)$/;"      f
-home_mgr_relaunch_homescreen   src/common/home_mgr.c   /^void home_mgr_relaunch_homescreen(void)$/;"   f
-home_mgr_relaunch_homescreen   src/mobile/home_mgr.c   /^void home_mgr_relaunch_homescreen(void)$/;"   f
-home_mgr_relaunch_indicator    src/mobile/home_mgr.c   /^void home_mgr_relaunch_indicator(void)$/;"    f
-home_mgr_relaunch_quickpanel   src/mobile/home_mgr.c   /^void home_mgr_relaunch_quickpanel(void)$/;"   f
-home_mgr_relaunch_volume       src/common/home_mgr.c   /^void home_mgr_relaunch_volume(void)$/;"       f
-home_mgr_relaunch_volume       src/mobile/home_mgr.c   /^void home_mgr_relaunch_volume(void)$/;"       f
-home_multi_press_timer src/common/hw_key.c     /^      Ecore_Timer *home_multi_press_timer;$/;"        m       struct:__anon10 file:
-home_multi_press_timer src/wearable/hw_key.c   /^      Ecore_Timer *home_multi_press_timer;$/;"        m       struct:__anon16 file:
-home_pid       src/common/home_mgr.c   /^      pid_t home_pid;$/;"     m       struct:__anon11 file:
-home_pid       src/mobile/home_mgr.c   /^      pid_t home_pid;$/;"     m       struct:__anon15 file:
-home_pid       src/wearable/home_mgr.c /^      int home_pid;$/;"       m       struct:__anon20 file:
-homekey_count  src/common/hw_key.c     /^      int homekey_count;$/;"  m       struct:__anon10 file:
-homekey_count  src/wearable/hw_key.c   /^      int homekey_count;$/;"  m       struct:__anon16 file:
-homescreen_watch_face_visibility       include/status.h        /^      int homescreen_watch_face_visibility;$/;"       m       struct:status_passive_s
-hourly_alert_fini      src/wearable/hourly_alert.c     /^void hourly_alert_fini(void)$/;"      f
-hourly_alert_init      src/wearable/hourly_alert.c     /^void hourly_alert_init(void)$/;"      f
-hw_key_create_window   src/common/hw_key.c     /^void hw_key_create_window(void)$/;"   f
-hw_key_create_window   src/mobile/hw_key.c     /^void hw_key_create_window(void)$/;"   f
-hw_key_create_window   src/wearable/hw_key.c   /^void hw_key_create_window(void)$/;"   f
-hw_key_destroy_window  src/common/hw_key.c     /^void hw_key_destroy_window(void)$/;"  f
-hw_key_destroy_window  src/mobile/hw_key.c     /^void hw_key_destroy_window(void)$/;"  f
-hw_key_destroy_window  src/wearable/hw_key.c   /^void hw_key_destroy_window(void)$/;"  f
-idle_lock_state        include/status.h        /^      int idle_lock_state;$/;"        m       struct:status_passive_s
-indicator_pid  src/mobile/home_mgr.c   /^      pid_t indicator_pid;$/;"        m       struct:__anon15 file:
-is_cancel      src/wearable/hw_key.c   /^      Eina_Bool is_cancel;$/;"        m       struct:__anon16 file:
-is_home_focused        src/wearable/hw_key.c   /^      Eina_Bool is_home_focused;$/;"  m       struct:__anon16 file:
-is_lcd_on      src/wearable/hw_key.c   /^      Eina_Bool is_lcd_on;$/;"        m       struct:__anon16 file:
-is_long_press  src/wearable/hw_key.c   /^      Eina_Bool is_long_press;$/;"    m       struct:__anon16 file:
-is_support_telephony   src/mobile/lock_mgr.c   /^      Eina_Bool is_support_telephony;$/;"     m       struct:__anon12 file:
-key    src/process_mgr.c       /^      char *key;$/;"  m       struct:_launch_info_s   file:
-key_down       src/common/hw_key.c     /^      Ecore_Event_Handler *key_down;$/;"      m       struct:__anon10 file:
-key_down       src/mobile/hw_key.c     /^      Ecore_Event_Handler *key_down;$/;"      m       struct:__anon14 file:
-key_down       src/wearable/hw_key.c   /^      Ecore_Event_Handler *key_down;$/;"      m       struct:__anon16 file:
-key_info       src/common/hw_key.c     /^} key_info = {$/;"    v       typeref:struct:__anon10 file:
-key_info       src/mobile/hw_key.c     /^} key_info = {$/;"    v       typeref:struct:__anon14 file:
-key_info       src/wearable/hw_key.c   /^} key_info = {$/;"    v       typeref:struct:__anon16 file:
-key_name       src/common/hw_key.c     /^const char *key_name[KEY_NAME_MAX] = {$/;"    v
-key_name       src/mobile/hw_key.c     /^const char *key_name[KEY_NAME_MAX] = {$/;"    v
-key_name       src/wearable/hw_key.c   /^const char *key_name[KEY_NAME_MAX] = {$/;"    v
-key_name_e     include/common/hw_key.h /^} key_name_e;$/;"     t       typeref:enum:__anon2
-key_name_e     include/mobile/hw_key.h /^} key_name_e;$/;"     t       typeref:enum:__anon5
-key_name_e     include/wearable/hw_key.h       /^} key_name_e;$/;"     t       typeref:enum:__anon8
-key_up src/common/hw_key.c     /^      Ecore_Event_Handler *key_up;$/;"        m       struct:__anon10 file:
-key_up src/mobile/hw_key.c     /^      Ecore_Event_Handler *key_up;$/;"        m       struct:__anon14 file:
-key_up src/wearable/hw_key.c   /^      Ecore_Event_Handler *key_up;$/;"        m       struct:__anon16 file:
-keygrab_timer  src/common/hw_key.c     /^      Ecore_Timer *keygrab_timer;$/;" m       struct:__anon10 file:
-keygrab_timer  src/wearable/hw_key.c   /^      Ecore_Timer *keygrab_timer;$/;" m       struct:__anon16 file:
-keymap_update  src/mobile/hw_key.c     /^      Ecore_Event_Handler *keymap_update;$/;" m       struct:__anon14 file:
-keymap_update_flag     src/mobile/hw_key.c     /^      Eina_Bool keymap_update_flag;$/;"       m       struct:__anon14 file:
-langset        include/status.h        /^      char *langset;$/;"      m       struct:status_active_s
-launch_info_s  src/process_mgr.c       /^} launch_info_s;$/;"  t       typeref:struct:_launch_info_s   file:
-lcd_state      src/common/lock_mgr.c   /^      int lcd_state;$/;"      m       struct:__anon9  file:
-lcd_state      src/mobile/lock_mgr.c   /^      int lcd_state;$/;"      m       struct:__anon12 file:
-lcd_status     include/common/starter.h        /^      int lcd_status;$/;"     m       struct:appdata
-lcd_status     include/mobile/starter.h        /^      int lcd_status;$/;"     m       struct:appdata
-lcd_status     src/wearable/starter.c  /^      int lcd_status;$/;"     m       struct:__anon18 file:
-list   include/status.h        /^      Eina_List *list[STATUS_ACTIVE_KEY_MAX];$/;"     m       struct:status_active_s
-lock_lcd_state_e       include/common/lock_mgr.h       /^} lock_lcd_state_e;$/;"       t       typeref:enum:__anon4
-lock_lcd_state_e       include/mobile/lock_mgr.h       /^} lock_lcd_state_e;$/;"       t       typeref:enum:__anon7
-lock_mgr_daemon_end    src/common/lock_mgr.c   /^void lock_mgr_daemon_end(void)$/;"    f
-lock_mgr_daemon_start  src/common/lock_mgr.c   /^int lock_mgr_daemon_start(void)$/;"   f
-lock_mgr_fini  src/mobile/lock_mgr.c   /^void lock_mgr_fini(void)$/;"  f
-lock_mgr_get_lock_pid  src/common/lock_mgr.c   /^int lock_mgr_get_lock_pid(void)$/;"   f
-lock_mgr_get_lock_pid  src/mobile/lock_mgr.c   /^int lock_mgr_get_lock_pid(void)$/;"   f
-lock_mgr_idle_lock_state_set   src/common/lock_mgr.c   /^void lock_mgr_idle_lock_state_set(int lock_state)$/;" f
-lock_mgr_idle_lock_state_set   src/mobile/lock_mgr.c   /^void lock_mgr_idle_lock_state_set(int lock_state)$/;" f
-lock_mgr_init  src/mobile/lock_mgr.c   /^int lock_mgr_init(void)$/;"   f
-lock_mgr_lcd_state_get src/common/lock_mgr.c   /^int lock_mgr_lcd_state_get(void)$/;"  f
-lock_mgr_lcd_state_get src/mobile/lock_mgr.c   /^int lock_mgr_lcd_state_get(void)$/;"  f
-lock_mgr_lockscreen_launch     src/common/lock_mgr.c   /^Eina_Bool lock_mgr_lockscreen_launch(void)$/;"        f
-lock_mgr_lockscreen_launch     src/mobile/lock_mgr.c   /^Eina_Bool lock_mgr_lockscreen_launch(void)$/;"        f
-lock_mgr_sound_play    src/common/lock_mgr.c   /^void lock_mgr_sound_play(lock_sound_type_e type)$/;"  f
-lock_mgr_sound_play    src/mobile/lock_mgr.c   /^void lock_mgr_sound_play(lock_sound_type_e type)$/;"  f
-lock_mgr_terminate_lock        src/mobile/lock_mgr.c   /^void lock_mgr_terminate_lock(void)$/;"        f
-lock_mgr_unlock        src/common/lock_mgr.c   /^void lock_mgr_unlock(void)$/;"        f
-lock_mgr_unlock        src/mobile/lock_mgr.c   /^void lock_mgr_unlock(void)$/;"        f
-lock_pid       src/common/lock_mgr.c   /^      int lock_pid;$/;"       m       struct:__anon9  file:
-lock_pid       src/mobile/lock_mgr.c   /^      int lock_pid;$/;"       m       struct:__anon12 file:
-lock_sound_type_e      include/common/lock_mgr.h       /^} lock_sound_type_e;$/;"      t       typeref:enum:__anon3
-lock_sound_type_e      include/mobile/lock_mgr.h       /^} lock_sound_type_e;$/;"      t       typeref:enum:__anon6
-lockw_data     include/window_mgr.h    /^typedef struct _lockw_data lockw_data;$/;"    t       typeref:struct:_lockw_data
-main   src/common/starter.c    /^int main(int argc, char *argv[])$/;"  f
-main   src/mobile/starter.c    /^int main(int argc, char *argv[])$/;"  f
-main   src/wearable/starter.c  /^int main(int argc, char *argv[])$/;"  f
-old_lock_type  src/common/lock_mgr.c   /^      int old_lock_type;$/;"  m       struct:__anon9  file:
-old_lock_type  src/mobile/lock_mgr.c   /^      int old_lock_type;$/;"  m       struct:__anon12 file:
-package_mgr_exist_app  src/package_mgr.c       /^bool package_mgr_exist_app(char *appid)$/;"   f
-pid_of_w_clock_viewer  src/wearable/clock_mgr.c        /^static int pid_of_w_clock_viewer = 0;$/;"     v       file:
-pm_key_ignore  include/status.h        /^      int pm_key_ignore;$/;"  m       struct:status_passive_s
-pm_state       include/status.h        /^      int pm_state;$/;"       m       struct:status_active_s
-pm_state       include/status.h        /^      int pm_state;$/;"       m       struct:status_passive_s
-popup  src/common/home_mgr.c   /^      Evas_Object *popup;$/;" m       struct:__anon11 file:
-popup  src/mobile/home_mgr.c   /^      Evas_Object *popup;$/;" m       struct:__anon15 file:
-popup_create   src/common/popup.c      /^Evas_Object *popup_create(const char *title, const char *text)$/;"    f
-popup_create   src/mobile/popup.c      /^Evas_Object *popup_create(const char *title, const char *text)$/;"    f
-power_long_press_timer src/wearable/hw_key.c   /^      Ecore_Timer *power_long_press_timer;$/;"        m       struct:__anon16 file:
-power_off      src/common/home_mgr.c   /^      int power_off;$/;"      m       struct:__anon11 file:
-power_off      src/mobile/home_mgr.c   /^      int power_off;$/;"      m       struct:__anon15 file:
-power_release_timer    src/wearable/hw_key.c   /^      Ecore_Timer *power_release_timer;$/;"   m       struct:__anon16 file:
-powerkey_count src/wearable/hw_key.c   /^      int powerkey_count;$/;" m       struct:__anon16 file:
-process_mgr_h  include/process_mgr.h   /^typedef struct _process_mgr_s *process_mgr_h;$/;"     t       typeref:struct:_process_mgr_s
-process_mgr_kill_app   src/process_mgr.c       /^void process_mgr_kill_app(int pid)$/;"        f
-process_mgr_must_launch        src/process_mgr.c       /^void process_mgr_must_launch(const char *appid, const char *key, const char *value, change_func cfn, after_func afn)$/;"      f
-process_mgr_must_open  src/process_mgr.c       /^void process_mgr_must_open(const char *appid, change_func cfn, after_func afn)$/;"    f
-process_mgr_must_syspopup_launch       src/process_mgr.c       /^void process_mgr_must_syspopup_launch(const char *appid, const char *key, const char *value, change_func cfn, after_func afn)$/;"     f
-process_mgr_set_lock_priority  src/process_mgr.c       /^int process_mgr_set_lock_priority(int pid)$/;"        f
-process_mgr_set_pwlock_priority        src/process_mgr.c       /^int process_mgr_set_pwlock_priority(int pid)$/;"      f
-process_mgr_terminate_app      src/process_mgr.c       /^void process_mgr_terminate_app(int pid, int state)$/;"        f
-process_mgr_validate_app       src/process_mgr.c       /^int process_mgr_validate_app(int pid)$/;"     f
-process_mgr_validate_call      src/process_mgr.c       /^int process_mgr_validate_call(int pid)$/;"    f
-quickpanel_pid src/mobile/home_mgr.c   /^      pid_t quickpanel_pid;$/;"       m       struct:__anon15 file:
-remote_lock_islocked   include/status.h        /^      int remote_lock_islocked;$/;"   m       struct:status_passive_s
-reserved_apps_list     src/wearable/clock_mgr.c        /^      Eina_List *reserved_apps_list;$/;"      m       struct:__anon19 file:
-reserved_popup_app_id  src/wearable/clock_mgr.c        /^      char *reserved_popup_app_id;$/;"        m       struct:__anon19 file:
-ret_if include/util.h  98;"    d
-retv_if        include/util.h  91;"    d
-s_clock_mgr    src/wearable/clock_mgr.c        /^} s_clock_mgr = {$/;" v       typeref:struct:__anon19 file:
-s_home_mgr     src/common/home_mgr.c   /^} s_home_mgr = {$/;"  v       typeref:struct:__anon11 file:
-s_home_mgr     src/mobile/home_mgr.c   /^} s_home_mgr = {$/;"  v       typeref:struct:__anon15 file:
-s_home_mgr     src/wearable/home_mgr.c /^} s_home_mgr = {$/;"  v       typeref:struct:__anon20 file:
-s_hourly_alert src/wearable/hourly_alert.c     /^} s_hourly_alert = {$/;"      v       typeref:struct:__anon17 file:
-s_info src/dbus_util.c /^} s_info = {$/;"      v       typeref:struct:_info    file:
-s_lock_mgr     src/common/lock_mgr.c   /^} s_lock_mgr = {$/;"  v       typeref:struct:__anon9  file:
-s_lock_mgr     src/mobile/lock_mgr.c   /^} s_lock_mgr = {$/;"  v       typeref:struct:__anon12 file:
-s_starter      src/wearable/starter.c  /^} s_starter = {$/;"   v       typeref:struct:__anon18 file:
-s_status_active        src/status.c    /^static struct status_active_s s_status_active = {$/;" v       typeref:struct:status_active_s  file:
-s_status_passive       src/status.c    /^static struct status_passive_s s_status_passive = {$/;"       v       typeref:struct:status_passive_s file:
-setappl_3rd_lock_pkg_name_str  include/status.h        /^      char *setappl_3rd_lock_pkg_name_str;$/;"        m       struct:status_passive_s
-setappl_ambient_mode_bool      include/status.h        /^      int setappl_ambient_mode_bool;$/;"      m       struct:status_passive_s
-setappl_double_press_home_key  include/status.h        /^      int setappl_double_press_home_key;$/;"  m       struct:status_passive_s
-setappl_password_attempts_left_int     include/status.h        /^      int setappl_password_attempts_left_int;$/;"     m       struct:status_passive_s
-setappl_psmode include/status.h        /^      int setappl_psmode;$/;" m       struct:status_passive_s
-setappl_screen_lock_type_int   include/status.h        /^      int setappl_screen_lock_type_int;$/;"   m       struct:status_active_s
-setappl_selected_package_name  include/status.h        /^      char *setappl_selected_package_name;$/;"        m       struct:status_active_s
-setappl_sound_lock_bool        include/status.h        /^      int setappl_sound_lock_bool;$/;"        m       struct:status_passive_s
-starter_execute_ode_process    src/mobile/starter.c    /^int starter_execute_ode_process(int booting_state)$/;"        f
-starter_quick_launch_enable    include/status.h        /^      int starter_quick_launch_enable;$/;"    m       struct:status_passive_s
-starter_reserved_apps_status   include/status.h        /^      int starter_reserved_apps_status;$/;"   m       struct:status_passive_s
-starter_sequence       include/status.h        /^      int starter_sequence;$/;"       m       struct:status_active_s
-status_active_cb       include/status.h        /^typedef int (*status_active_cb)(status_active_key_e key, void *data);$/;"     t
-status_active_get      src/status.c    /^status_active_h status_active_get(void)$/;"   f
-status_active_h        include/status.h        /^typedef struct status_active_s *status_active_h;$/;"  t       typeref:struct:status_active_s
-status_active_key_e    include/status.h        /^} status_active_key_e;$/;"    t       typeref:enum:__anon1
-status_active_register_cb      src/status.c    /^int status_active_register_cb(status_active_key_e key, status_active_cb func, void *data)$/;" f
-status_active_s        include/status.h        /^struct status_active_s {$/;"  s
-status_active_unregister_cb    src/status.c    /^int status_active_unregister_cb(status_active_key_e key, status_active_cb func)$/;"   f
-status_passive_get     src/status.c    /^status_passive_h status_passive_get(void)$/;" f
-status_passive_h       include/status.h        /^typedef struct status_passive_s *status_passive_h;$/;"        t       typeref:struct:status_passive_s
-status_passive_s       include/status.h        /^struct status_passive_s {$/;" s
-status_register        src/status.c    /^int status_register(void)$/;" f
-status_unregister      src/status.c    /^void status_unregister(void)$/;"      f
-sysman_power_off_status        include/status.h        /^      int sysman_power_off_status;$/;"        m       struct:status_active_s
-tel_handle_list        src/mobile/lock_mgr.c   /^static telephony_handle_list_s tel_handle_list;$/;"   v       file:
-tv_start       include/common/starter.h        /^      struct timeval tv_start;        \/* start time *\/$/;"  m       struct:appdata  typeref:struct:appdata::timeval
-tv_start       include/mobile/starter.h        /^      struct timeval tv_start;        \/* start time *\/$/;"  m       struct:appdata  typeref:struct:appdata::timeval
-value  src/process_mgr.c       /^      char *value;$/;"        m       struct:_launch_info_s   file:
-volume_pid     src/common/home_mgr.c   /^      pid_t volume_pid;$/;"   m       struct:__anon11 file:
-volume_pid     src/mobile/home_mgr.c   /^      pid_t volume_pid;$/;"   m       struct:__anon15 file:
-wms_clocks_set_idle    include/status.h        /^      char *wms_clocks_set_idle;$/;"  m       struct:status_passive_s
-wms_wakeup_by_gesture_setting  include/status.h        /^      int wms_wakeup_by_gesture_setting;$/;"  m       struct:status_passive_s