Added support of SAE security mode. 87/208287/2
authorMayank Haarit <mayank.h@samsung.com>
Fri, 21 Jun 2019 06:21:52 +0000 (11:51 +0530)
committerMayank Haarit <mayank.h@samsung.com>
Wed, 3 Jul 2019 09:58:11 +0000 (15:28 +0530)
Change-Id: I0c2af5b4211ea17dab67e610683d1afe5d74a0be
Signed-off-by: Mayank Haarit <mayank.h@samsung.com>
include/mobileap_softap.h
include/mobileap_wifi.h
src/mobileap_softap.c
src/mobileap_wifi.c
tags [deleted file]

index 13640bc..0334a53 100755 (executable)
@@ -277,6 +277,7 @@ typedef enum {
        SOFTAP_SECURITY_TYPE_OPEN = 0,
        SOFTAP_SECURITY_TYPE_WPA2_PSK,
        SOFTAP_SECURITY_TYPE_WPS,
+       SOFTAP_SECURITY_TYPE_SAE,
        SOFTAP_SECURITY_TYPE_MAX,
 } softap_security_type_e;
 
index a7072a6..be0a1ba 100644 (file)
@@ -27,6 +27,7 @@
 #define SOFTAP_SECURITY_TYPE_OPEN_STR          "open"
 #define SOFTAP_SECURITY_TYPE_WPA2_PSK_STR      "wpa2-psk"
 #define SOFTAP_SECURITY_TYPE_WPS_STR   "wps"
+#define SOFTAP_SECURITY_TYPE_SAE_STR   "sae"
 #define SOFTAP_PASSPHRASE_PATH                 "wifi_tethering.txt"
 #define SOFTAP_PASSPHRASE_GROUP_ID             "secure-storage::tethering"
 
index d2f8199..83b8734 100755 (executable)
@@ -59,7 +59,8 @@
 static char *security_type_str[SOFTAP_SECURITY_TYPE_MAX] = {
        SOFTAP_SECURITY_TYPE_OPEN_STR,
        SOFTAP_SECURITY_TYPE_WPS_STR,
-       SOFTAP_SECURITY_TYPE_WPA2_PSK_STR
+       SOFTAP_SECURITY_TYPE_WPA2_PSK_STR,
+       SOFTAP_SECURITY_TYPE_SAE_STR
 };
 
 static pid_t dnsmasq_pid = 0;
@@ -242,9 +243,21 @@ static int __execute_hostapd(const mobile_ap_type_e type, softap_settings_t *set
                        ERR("hex conversion failed\n"); //LCOV_EXCL_LINE
                        return MOBILE_AP_ERROR_RESOURCE;
                }
+
                snprintf(buf, sizeof(buf),
                                "wpa=2\nrsn_pairwise=CCMP\nwpa_psk=%s\n", key);
+               old_conf = conf;
+               conf = g_strconcat(old_conf, buf, NULL);
+               g_free(old_conf);
+       } else if (settings->security_type == SOFTAP_SECURITY_TYPE_SAE) {
+               if (!strlen(settings->key)) {
+                       g_free(conf);
+                       ERR("Invalid key\n"); //LCOV_EXCL_LINE
+                       return MOBILE_AP_ERROR_RESOURCE;
+               }
 
+               snprintf(buf, sizeof(buf),
+                               "wpa=2\nwpa_key_mgmt=SAE\nrsn_pairwise=CCMP\nsae_password=%s\n", settings->key);
                old_conf = conf;
                conf = g_strconcat(old_conf, buf, NULL);
                g_free(old_conf);
index 4ca2b8e..6cc4a8b 100755 (executable)
@@ -448,7 +448,8 @@ static void __softap_emit_changed_signal(Softap *obj, softap_settings_t *new, so
        if (new->hide_mode != old->hide_mode)
                softap_emit_ssid_visibility_changed(obj, new->hide_mode);
 
-       if (new->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK &&
+       if ((new->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK ||
+                       new->security_type == SOFTAP_SECURITY_TYPE_SAE) &&
                        strcmp(new->key, old->key) != 0)
                softap_emit_passphrase_changed(obj);
 
@@ -570,8 +571,9 @@ mobile_ap_error_code_e _enable_wifi_tethering(Tethering *obj, softap_settings_t
                return MOBILE_AP_ERROR_INVALID_PARAM;
        }
 
-       if (settings->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK
-                       && !__is_valid_passphrase_length(settings->key)) {
+       if ((settings->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK ||
+                       settings->security_type == SOFTAP_SECURITY_TYPE_SAE) &&
+                               !__is_valid_passphrase_length(settings->key)) {
                ERR("hex key length is not correct\n"); //LCOV_EXCL_LINE
                return MOBILE_AP_ERROR_INVALID_PARAM;
        }
@@ -713,7 +715,8 @@ mobile_ap_error_code_e _enable_soft_ap(Softap *obj, softap_settings_t *settings)
                return MOBILE_AP_ERROR_INVALID_PARAM;
        }
 
-       if (settings->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK
+       if ((settings->security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK ||
+                       settings->security_type == SOFTAP_SECURITY_TYPE_SAE)
                        && !__is_valid_passphrase_length(settings->key)) {
                ERR("hex key length is not correct\n"); //LCOV_EXCL_LINE
                return MOBILE_AP_ERROR_INVALID_PARAM;
@@ -944,7 +947,7 @@ gboolean tethering_enable_wifi_tethering(Tethering *obj,
                g_strlcpy(wifi_settings.mode, mode, sizeof(wifi_settings.mode));
 
        wifi_settings.security_type = security_type;
-       if (security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK)
+       if (security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK || security_type == SOFTAP_SECURITY_TYPE_SAE)
                g_strlcpy(wifi_settings.key, key, sizeof(wifi_settings.key));
        else if (security_type == SOFTAP_SECURITY_TYPE_WPS)
                g_strlcpy(wifi_settings.key, "00000000", sizeof(wifi_settings.key));
@@ -1048,7 +1051,7 @@ gboolean tethering_reload_wifi_settings(Tethering *obj,
                g_strlcpy(settings.mode, mode, sizeof(settings.mode));
 
        settings.security_type = security_type;
-       if (security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK)
+       if (security_type == SOFTAP_SECURITY_TYPE_WPA2_PSK || security_type == SOFTAP_SECURITY_TYPE_SAE)
                g_strlcpy(settings.key, key, sizeof(settings.key));
        else if (security_type == SOFTAP_SECURITY_TYPE_WPS)
                g_strlcpy(settings.key, "00000000", sizeof(settings.key));
diff --git a/tags b/tags
deleted file mode 100644 (file)
index 4678a74..0000000
--- a/tags
+++ /dev/null
@@ -1,1036 +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 //
-ACTION_ACCEPT  include/mobileap_iptables.h     35;"    d
-ACTION_DROP    include/mobileap_iptables.h     34;"    d
-ACTION_RETURN  include/mobileap_iptables.h     36;"    d
-Added_sig_id   src/mobileap.c  /^guint Added_sig_id = 0;$/;"   v
-BT_IF_ALL      include/mobileap_softap.h       66;"    d
-BT_IF_PREFIX   include/mobileap_softap.h       65;"    d
-CHAIN_FW       include/mobileap_iptables.h     25;"    d
-CHAIN_OUTPUT   include/mobileap_iptables.h     28;"    d
-CHAIN_POST     include/mobileap_iptables.h     26;"    d
-CHAIN_PRE      include/mobileap_iptables.h     27;"    d
-CHECK_NET_STATE_RETRY_COUNT    include/mobileap_softap.h       273;"   d
-CLAMP_MSS_RULE include/mobileap_iptables.h     /^      CLAMP_MSS_RULE,$/;"     e       enum:__anon22
-CLAMP_MSS_RULE_STR     src/mobileap_iptables.c 40;"    d       file:
-CONNMAN_BLUETOOTH_TECHNOLOGY_PREFIX    include/mobileap_dbus.h 62;"    d
-CONNMAN_CELLULAR_SERVICE_PROFILE_PREFIX        include/mobileap_dbus.h 55;"    d
-CONNMAN_CELLULAR_TECHNOLOGY_PREFIX     include/mobileap_dbus.h 59;"    d
-CONNMAN_CLOCK_INTERFACE        include/mobileap_dbus.h 44;"    d
-CONNMAN_ETHERNET_SERVICE_PROFILE_PREFIX        include/mobileap_dbus.h 57;"    d
-CONNMAN_ETHERNET_TECHNOLOGY_PREFIX     include/mobileap_dbus.h 61;"    d
-CONNMAN_MANAGER_INTERFACE      include/mobileap_dbus.h 41;"    d
-CONNMAN_MANAGER_PATH   include/mobileap_dbus.h 42;"    d
-CONNMAN_NOTIFICATION_INTERFACE include/mobileap_dbus.h 50;"    d
-CONNMAN_PATH   include/mobileap_dbus.h 39;"    d
-CONNMAN_PEER_INTERFACE include/mobileap_dbus.h 51;"    d
-CONNMAN_PROVIDER_INTERFACE     include/mobileap_dbus.h 47;"    d
-CONNMAN_SERVICE        include/mobileap_dbus.h 38;"    d
-CONNMAN_SERVICE_INTERFACE      include/mobileap_dbus.h 46;"    d
-CONNMAN_SESSION_INTERFACE      include/mobileap_dbus.h 49;"    d
-CONNMAN_SIGNAL_PROPERTY_CHANGED        include/mobileap_dbus.h 53;"    d
-CONNMAN_TASK_INTERFACE include/mobileap_dbus.h 45;"    d
-CONNMAN_TECHNOLOGY_INTERFACE   include/mobileap_dbus.h 48;"    d
-CONNMAN_WIFI_SERVICE_PROFILE_PREFIX    include/mobileap_dbus.h 56;"    d
-CONNMAN_WIFI_TECHNOLOGY_PREFIX include/mobileap_dbus.h 60;"    d
-CREATE_CHAIN_STR       src/mobileap_iptables.c 28;"    d       file:
-DATA_USAGE_FILE        include/mobileap_softap.h       231;"   d
-DBG    include/mobileap_softap.h       36;"    d
-DBUS_DEBUG_VARIANT     include/mobileap_dbus.h 69;"    d
-DEFAULT_ROUTER include/mobileap_softap.h       238;"   d
-DEFAULT_RULE   include/mobileap_iptables.h     /^      DEFAULT_RULE,$/;"       e       enum:__anon22
-DEFAULT_RULE_STR       src/mobileap_iptables.c 41;"    d       file:
-DELETE_CHAIN_STR       src/mobileap_iptables.c 32;"    d       file:
-DISABLE_IPV6   include/mobileap_softap.h       245;"   d
-DNS64_BIN      include/mobileap_softap.h       140;"   d
-DNS64_CHROOTDIR        include/mobileap_softap.h       141;"   d
-DNS64_SERVER_ADDR      include/mobileap_softap.h       142;"   d
-DNSMASQ_CONF   include/mobileap_softap.h       81;"    d
-DNSMASQ_CONF6  include/mobileap_softap.h       106;"   d
-DNSMASQ_CONF_FILE      include/mobileap_softap.h       80;"    d
-DNSMASQ_CONF_LEN       include/mobileap_softap.h       79;"    d
-DNSMASQ_DBUS_INTERFACE include/mobileap_softap.h       268;"   d
-DNSMASQ_DEBUG_FILE     include/mobileap_softap.h       124;"   d
-DNSMASQ_LEASES_FILE    include/mobileap.h      55;"    d
-DNSMASQ_RANGE_LEN      include/mobileap_softap.h       47;"    d
-DNS_ORDER      include/mobileap_softap.h       240;"   d
-DPM_POLICY_BT_TETHERING        include/mobileap_common.h       30;"    d
-DPM_POLICY_USB_TETHERING       include/mobileap_common.h       29;"    d
-DPM_POLICY_WIFI_TETHERING      include/mobileap_common.h       28;"    d
-DRIVER_DELAY   include/mobileap_softap.h       41;"    d
-ERR    include/mobileap_softap.h       37;"    d
-EUI48_MAC_ADDRESS_LEN  src/mobileap_softap.c   56;"    d       file:
-EUI64_MAC_ADDRESS_LEN  src/mobileap_softap.c   57;"    d       file:
-E_SIGANL_SOFTAP_ON     include/mobileap.h      /^      E_SIGANL_SOFTAP_ON,$/;" e       enum:__anon9
-E_SIGNAL_BT_TETHER_OFF include/mobileap.h      /^      E_SIGNAL_BT_TETHER_OFF,$/;"     e       enum:__anon9
-E_SIGNAL_BT_TETHER_ON  include/mobileap.h      /^      E_SIGNAL_BT_TETHER_ON,$/;"      e       enum:__anon9
-E_SIGNAL_FLIGHT_MODE   include/mobileap.h      /^      E_SIGNAL_FLIGHT_MODE,$/;"       e       enum:__anon9
-E_SIGNAL_LOW_BATTERY_MODE      include/mobileap.h      /^      E_SIGNAL_LOW_BATTERY_MODE,$/;"  e       enum:__anon9
-E_SIGNAL_MAX   include/mobileap.h      /^      E_SIGNAL_MAX$/;"        e       enum:__anon9
-E_SIGNAL_NET_CLOSED    include/mobileap.h      /^      E_SIGNAL_NET_CLOSED,$/;"        e       enum:__anon9
-E_SIGNAL_NO_DATA_TIMEOUT       include/mobileap.h      /^      E_SIGNAL_NO_DATA_TIMEOUT,$/;"   e       enum:__anon9
-E_SIGNAL_PASSPHRASE_CHANGED    include/mobileap.h      /^      E_SIGNAL_PASSPHRASE_CHANGED,$/;"        e       enum:__anon9
-E_SIGNAL_SECURITY_TYPE_CHANGED include/mobileap.h      /^      E_SIGNAL_SECURITY_TYPE_CHANGED,$/;"     e       enum:__anon9
-E_SIGNAL_SOFTAP_OFF    include/mobileap.h      /^      E_SIGNAL_SOFTAP_OFF,$/;"        e       enum:__anon9
-E_SIGNAL_SSID_VISIBILITY_CHANGED       include/mobileap.h      /^      E_SIGNAL_SSID_VISIBILITY_CHANGED,$/;"   e       enum:__anon9
-E_SIGNAL_STA_CONNECT   include/mobileap.h      /^      E_SIGNAL_STA_CONNECT,$/;"       e       enum:__anon9
-E_SIGNAL_STA_DISCONNECT        include/mobileap.h      /^      E_SIGNAL_STA_DISCONNECT,$/;"    e       enum:__anon9
-E_SIGNAL_USB_TETHER_OFF        include/mobileap.h      /^      E_SIGNAL_USB_TETHER_OFF,$/;"    e       enum:__anon9
-E_SIGNAL_USB_TETHER_ON include/mobileap.h      /^      E_SIGNAL_USB_TETHER_ON,$/;"     e       enum:__anon9
-E_SIGNAL_WIFI_AP_OFF   include/mobileap.h      /^      E_SIGNAL_WIFI_AP_OFF,$/;"       e       enum:__anon9
-E_SIGNAL_WIFI_AP_ON    include/mobileap.h      /^      E_SIGNAL_WIFI_AP_ON,$/;"        e       enum:__anon9
-E_SIGNAL_WIFI_TETHER_OFF       include/mobileap.h      /^      E_SIGNAL_WIFI_TETHER_OFF,$/;"   e       enum:__anon9
-E_SIGNAL_WIFI_TETHER_ON        include/mobileap.h      /^      E_SIGNAL_WIFI_TETHER_ON,$/;"    e       enum:__anon9
-FILTERING_MULTIPORT_RULE_STR   src/mobileap_iptables.c 42;"    d       file:
-FILTERING_RULE_STR     src/mobileap_iptables.c 43;"    d       file:
-FLUSH_CMD_STR  src/mobileap_iptables.c 31;"    d       file:
-FORWARD_ADD_RULE_WITH_ACTION_AND_STATE_STR     src/mobileap_iptables.c 35;"    d       file:
-FORWARD_ADD_RULE_WITH_ACTION_STR       src/mobileap_iptables.c 33;"    d       file:
-FORWARD_DEL_RULE_WITH_ACTION_AND_STATE_STR     src/mobileap_iptables.c 36;"    d       file:
-FORWARD_DEL_RULE_WITH_ACTION_STR       src/mobileap_iptables.c 34;"    d       file:
-FORWARD_RULE_WITH_ACTION       include/mobileap_iptables.h     /^      FORWARD_RULE_WITH_ACTION,$/;"   e       enum:__anon22
-FORWARD_RULE_WITH_ACTION_AND_STATE     include/mobileap_iptables.h     /^      FORWARD_RULE_WITH_ACTION_AND_STATE,$/;" e       enum:__anon22
-FORWARD_RULE_WITH_ACTION_AND_STATE_WITHOUT_TABLE_STR   src/mobileap_iptables.c 46;"    d       file:
-FORWARD_RULE_WITH_ACTION_WITHOUT_TABLE_STR     src/mobileap_iptables.c 45;"    d       file:
-GET_RX include/mobileap_softap.h       233;"   d
-GET_TX include/mobileap_softap.h       234;"   d
-G_DBUS_REPLY_TIMEOUT_ASYNC     src/gdbus/mobileap_dbus.c       28;"    d       file:
-G_DBUS_REPLY_TIMEOUT_SYNC      src/gdbus/mobileap_dbus.c       27;"    d       file:
-HOSTAPD_ALLOWED_LIST   include/mobileap_softap.h       151;"   d
-HOSTAPD_BIN    include/mobileap_softap.h       149;"   d
-HOSTAPD_BLOCKED_LIST   include/mobileap_softap.h       152;"   d
-HOSTAPD_CONF   include/mobileap_softap.h       170;"   d
-HOSTAPD_CONF_FILE      include/mobileap_softap.h       155;"   d
-HOSTAPD_CONF_LEN       include/mobileap_softap.h       161;"   d
-HOSTAPD_CTRL_INTF_DIR  include/mobileap_softap.h       156;"   d
-HOSTAPD_CTRL_INTF_DIR_FOR_WPS  include/mobileap_softap.h       157;"   d
-HOSTAPD_DEBUG_DIR      include/mobileap_softap.h       158;"   d
-HOSTAPD_DEBUG_FILE     include/mobileap_softap.h       159;"   d
-HOSTAPD_DEFAULT_HW_MODE        include/mobileap_softap.h       162;"   d
-HOSTAPD_DHCP_MAX_INTERVAL      include/mobileap_softap.h       224;"   d
-HOSTAPD_ENTROPY_FILE   include/mobileap_softap.h       150;"   d
-HOSTAPD_MONITOR_ATTACH include/mobileap_softap.h       222;"   d
-HOSTAPD_MONITOR_DETACH include/mobileap_softap.h       223;"   d
-HOSTAPD_NETWORK_DIR    include/mobileap_softap.h       154;"   d
-HOSTAPD_REQ_MAX_LEN    include/mobileap_softap.h       215;"   d
-HOSTAPD_RETRY_DELAY    include/mobileap_softap.h       217;"   d
-HOSTAPD_RETRY_MAX      include/mobileap_softap.h       216;"   d
-HOSTAPD_RPI_CONF       include/mobileap_softap.h       205;"   d
-HOSTAPD_STA_CONN       include/mobileap_softap.h       219;"   d
-HOSTAPD_STA_CONN_LEN   include/mobileap_softap.h       221;"   d
-HOSTAPD_STA_DISCONN    include/mobileap_softap.h       218;"   d
-HOSTAPD_STA_DISCONN_LEN        include/mobileap_softap.h       220;"   d
-HOSTAPD_WPS_CONF       include/mobileap_softap.h       183;"   d
-HOSTAPD_WPS_DEVICE_NAME        include/mobileap_softap.h       165;"   d
-HOSTAPD_WPS_DEVICE_TYPE        include/mobileap_softap.h       166;"   d
-HOSTPAD_WPS_CONFIG_METHODS     include/mobileap_softap.h       167;"   d
-IF_BUF_LEN     include/mobileap_softap.h       43;"    d
-INTERFACE_NAME_LEN     include/mobileap_softap.h       45;"    d
-INTERFACE_ROUTING      include/mobileap_softap.h       239;"   d
-IP6TABLES      include/mobileap_iptables.h     39;"    d
-IP6_ADDRESS_BT include/mobileap_softap.h       104;"   d
-IP6_ADDRESS_USB        include/mobileap_softap.h       102;"   d
-IP6_ADDRESS_WIFI       include/mobileap_softap.h       103;"   d
-IPSEC_PASSTHROUGH_RULE include/mobileap_iptables.h     /^      IPSEC_PASSTHROUGH_RULE,$/;"     e       enum:__anon23
-IPTABLES       include/mobileap_iptables.h     21;"    d
-IPV4_FORWARDING        include/mobileap_softap.h       227;"   d
-IPV6_FORWARDING        include/mobileap_softap.h       246;"   d
-IPV6_MASQUERADE_ADD_RULE_STR   src/mobileap_iptables.c 50;"    d       file:
-IPV6_MASQUERADE_DEL_RULE_STR   src/mobileap_iptables.c 51;"    d       file:
-IPV6_MASQ_RULE include/mobileap_iptables.h     /^      IPV6_MASQ_RULE,$/;"     e       enum:__anon22
-IPV6_NEIGH_PROXY       include/mobileap_softap.h       248;"   d
-IPV6_PROXY_NDP include/mobileap_softap.h       247;"   d
-IP_ADDRESS_BT_1        include/mobileap_softap.h       67;"    d
-IP_ADDRESS_BT_2        include/mobileap_softap.h       68;"    d
-IP_ADDRESS_BT_3        include/mobileap_softap.h       69;"    d
-IP_ADDRESS_BT_4        include/mobileap_softap.h       70;"    d
-IP_ADDRESS_BT_5        include/mobileap_softap.h       71;"    d
-IP_ADDRESS_BT_6        include/mobileap_softap.h       72;"    d
-IP_ADDRESS_BT_7        include/mobileap_softap.h       73;"    d
-IP_ADDRESS_SOFTAP      include/mobileap_softap.h       60;"    d
-IP_ADDRESS_USB include/mobileap_softap.h       63;"    d
-IP_ADDRESS_WIFI        include/mobileap_softap.h       57;"    d
-IP_CMD include/mobileap_softap.h       228;"   d
-IP_FORWARD     include/mobileap_softap.h       226;"   d
-IP_SUBNET_MASK include/mobileap_softap.h       53;"    d
-IP_USB_SUBNET  include/mobileap.h      56;"    d
-L2TP_PASSTHROUGH_RULE  include/mobileap_iptables.h     /^      L2TP_PASSTHROUGH_RULE,$/;"      e       enum:__anon23
-LOG_TAG        include/mobileap_softap.h       32;"    d
-LOG_TAG        include/mobileap_softap.h       34;"    d
-MASQUERADE_ADD_RULE_STR        src/mobileap_iptables.c 37;"    d       file:
-MASQUERADE_DEL_RULE_STR        src/mobileap_iptables.c 38;"    d       file:
-MASQ_RULE      include/mobileap_iptables.h     /^      MASQ_RULE,$/;"  e       enum:__anon22
-MAX_BUF_SIZE   include/mobileap_softap.h       77;"    d
-MH_CTRL_INTF   include/mobileap_softap.h       146;"   d
-MH_IF_INET6_PATH       src/mobileap_network.c  48;"    d       file:
-MH_LOCALE_DIR  src/mobileap_notification.c     39;"    d       file:
-MH_LOCALE_DOMAIN       src/mobileap_notification.c     38;"    d       file:
-MH_MAX_INTERFACE_NAME_LEN      src/mobileap_network.c  49;"    d       file:
-MH_MAX_IPV6_ADDRESS_STR_LEN    include/mobileap_network.h      27;"    d
-MH_MONITOR_INTF        include/mobileap_softap.h       147;"   d
-MH_NOTI_CALLER_PKGNAME src/mobileap_notification.c     37;"    d       file:
-MH_NOTI_ICON_BT        include/mobileap_notification.h 31;"    d
-MH_NOTI_ICON_GENERAL   include/mobileap_notification.h 32;"    d
-MH_NOTI_ICON_PATH      include/mobileap_notification.h 30;"    d
-MH_NOTI_ICON_USB       include/mobileap_notification.h 33;"    d
-MH_NOTI_ICON_WIFI      include/mobileap_notification.h 34;"    d
-MH_NOTI_LAUNCH_PKGNAME src/mobileap_notification.c     36;"    d       file:
-MH_NOTI_PATH_MAX       include/mobileap_notification.h 29;"    d
-MH_NOTI_STR_MAX        include/mobileap_notification.h 28;"    d
-MH_STR_BT_VISIBILITY   include/mobileap_notification.h 49;"    d
-MH_STR_CONFIGURE_TETHERING     include/mobileap_notification.h 47;"    d
-MH_STR_CONNECTED_DEV   include/mobileap_notification.h 45;"    d
-MH_STR_CONNECTION_TIMEOUT      include/mobileap_notification.h 46;"    d
-MH_STR_TETHERING       include/mobileap_notification.h 44;"    d
-MH_STR_TETHERING_ACTIVE        include/mobileap_notification.h 48;"    d
-MOBILEAP_AGENT_CMD     include/mobileap_softap.h       232;"   d
-MOBILEAP_LOCALE_COMMON_PKG     include/mobileap_notification.h 36;"    d
-MOBILEAP_LOCALE_COMMON_RES     include/mobileap_notification.h 37;"    d
-MOBILE_AP_ADDRESS_TYPE_IPV4    include/mobileap.h      /^      MOBILE_AP_ADDRESS_TYPE_IPV4 = 0,$/;"    e       enum:__anon13
-MOBILE_AP_ADDRESS_TYPE_IPV6    include/mobileap.h      /^      MOBILE_AP_ADDRESS_TYPE_IPV6 = 1,$/;"    e       enum:__anon13
-MOBILE_AP_CHANGE_WIFI_CONFIG_CFM       include/mobileap.h      /^      MOBILE_AP_CHANGE_WIFI_CONFIG_CFM,       \/* mobile_ap_change_wifi_config() *\/$/;"      e       enum:__anon11
-MOBILE_AP_DISABLED_BT_TETHERING_IND    include/mobileap.h      /^      MOBILE_AP_DISABLED_BT_TETHERING_IND,    \/* Turning off BT tethering indication *\/$/;" e       enum:__anon11
-MOBILE_AP_DISABLED_IND include/mobileap.h      /^      MOBILE_AP_DISABLED_IND,                 \/* Turning off tethering service indication *\/$/;"    e       enum:__anon11
-MOBILE_AP_DISABLED_USB_TETHERING_IND   include/mobileap.h      /^      MOBILE_AP_DISABLED_USB_TETHERING_IND,   \/* Turning off USB tethering indication *\/$/;"        e       enum:__anon11
-MOBILE_AP_DISABLED_WIFI_AP_IND include/mobileap.h      /^      MOBILE_AP_DISABLED_WIFI_AP_IND,         \/* Turning off WiFi AP indication *\/$/;"      e       enum:__anon11
-MOBILE_AP_DISABLED_WIFI_TETHERING_IND  include/mobileap.h      /^      MOBILE_AP_DISABLED_WIFI_TETHERING_IND,  \/* Turning off WiFi tethering indication *\/$/;"       e       enum:__anon11
-MOBILE_AP_DISABLE_BT_TETHERING_CFM     include/mobileap.h      /^      MOBILE_AP_DISABLE_BT_TETHERING_CFM,     \/* mobile_ap_disable_bt_tethering() *\/$/;"    e       enum:__anon11
-MOBILE_AP_DISABLE_CFM  include/mobileap.h      /^      MOBILE_AP_DISABLE_CFM,                  \/* mobile_ap_disable() *\/$/;" e       enum:__anon11
-MOBILE_AP_DISABLE_P2P_TETHERING_CFM    include/mobileap.h      /^      MOBILE_AP_DISABLE_P2P_TETHERING_CFM,    \/* Turning off P2P tethering indication *\/$/;"        e       enum:__anon11
-MOBILE_AP_DISABLE_USB_TETHERING_CFM    include/mobileap.h      /^      MOBILE_AP_DISABLE_USB_TETHERING_CFM,    \/* mobile_ap_disable_usb_tethering() *\/$/;"   e       enum:__anon11
-MOBILE_AP_DISABLE_WIFI_AP_CFM  include/mobileap.h      /^      MOBILE_AP_DISABLE_WIFI_AP_CFM,          \/* mobile_ap_disable_wifi_ap() *\/$/;" e       enum:__anon11
-MOBILE_AP_DISABLE_WIFI_TETHERING_CFM   include/mobileap.h      /^      MOBILE_AP_DISABLE_WIFI_TETHERING_CFM,   \/* mobile_ap_disable_wifi_tethering() *\/$/;"  e       enum:__anon11
-MOBILE_AP_DRV_INTERFACE_NONE   include/mobileap_softap.h       /^      MOBILE_AP_DRV_INTERFACE_NONE,$/;"       e       enum:__anon6
-MOBILE_AP_ENABLED_BT_TETHERING_IND     include/mobileap.h      /^      MOBILE_AP_ENABLED_BT_TETHERING_IND,     \/* Turning on BT tethering indication *\/$/;"  e       enum:__anon11
-MOBILE_AP_ENABLED_USB_TETHERING_IND    include/mobileap.h      /^      MOBILE_AP_ENABLED_USB_TETHERING_IND,    \/* Turning on USB tethering indication *\/$/;" e       enum:__anon11
-MOBILE_AP_ENABLED_WIFI_AP_IND  include/mobileap.h      /^      MOBILE_AP_ENABLED_WIFI_AP_IND,          \/* Turning on WiFi AP indication *\/$/;"       e       enum:__anon11
-MOBILE_AP_ENABLED_WIFI_TETHERING_IND   include/mobileap.h      /^      MOBILE_AP_ENABLED_WIFI_TETHERING_IND,   \/* Turning on WiFi tethering indication *\/$/;"        e       enum:__anon11
-MOBILE_AP_ENABLE_BT_TETHERING_CFM      include/mobileap.h      /^      MOBILE_AP_ENABLE_BT_TETHERING_CFM,      \/* mobile_ap_enable_bt_tethering() *\/$/;"     e       enum:__anon11
-MOBILE_AP_ENABLE_CFM   include/mobileap.h      /^      MOBILE_AP_ENABLE_CFM,                   \/* mobile_ap_enable() *\/$/;"  e       enum:__anon11
-MOBILE_AP_ENABLE_P2P_TETHERING_CFM     include/mobileap.h      /^      MOBILE_AP_ENABLE_P2P_TETHERING_CFM,     \/* Turning on P2P tethering indication *\/$/;" e       enum:__anon11
-MOBILE_AP_ENABLE_USB_TETHERING_CFM     include/mobileap.h      /^      MOBILE_AP_ENABLE_USB_TETHERING_CFM,     \/* mobile_ap_enable_usb_tethering() *\/$/;"    e       enum:__anon11
-MOBILE_AP_ENABLE_WIFI_AP_CFM   include/mobileap.h      /^      MOBILE_AP_ENABLE_WIFI_AP_CFM,           \/* mobile_ap_enable_wifi_ap() *\/$/;"  e       enum:__anon11
-MOBILE_AP_ENABLE_WIFI_TETHERING_CFM    include/mobileap.h      /^      MOBILE_AP_ENABLE_WIFI_TETHERING_CFM,    \/* mobile_ap_enable_wifi_tethering() *\/$/;"   e       enum:__anon11
-MOBILE_AP_ERROR_ALREADY_ENABLED        include/mobileap.h      /^      MOBILE_AP_ERROR_ALREADY_ENABLED,        \/**< Mobile AP is already ON *\/$/;"   e       enum:__anon10
-MOBILE_AP_ERROR_DHCP   include/mobileap.h      /^      MOBILE_AP_ERROR_DHCP,                   \/**< DHCP error *\/$/;"        e       enum:__anon10
-MOBILE_AP_ERROR_INTERNAL       include/mobileap.h      /^      MOBILE_AP_ERROR_INTERNAL,               \/**< Driver related error *\/$/;"      e       enum:__anon10
-MOBILE_AP_ERROR_INVALID_PARAM  include/mobileap.h      /^      MOBILE_AP_ERROR_INVALID_PARAM,          \/**< Invalid parameter *\/$/;" e       enum:__anon10
-MOBILE_AP_ERROR_IN_PROGRESS    include/mobileap.h      /^      MOBILE_AP_ERROR_IN_PROGRESS,            \/**< Request is in progress *\/$/;"    e       enum:__anon10
-MOBILE_AP_ERROR_MAX    include/mobileap.h      /^      MOBILE_AP_ERROR_MAX$/;" e       enum:__anon10
-MOBILE_AP_ERROR_NET_CLOSE      include/mobileap.h      /^      MOBILE_AP_ERROR_NET_CLOSE,              \/**< PDP network close error *\/$/;"   e       enum:__anon10
-MOBILE_AP_ERROR_NET_OPEN       include/mobileap.h      /^      MOBILE_AP_ERROR_NET_OPEN,               \/**< PDP network open error *\/$/;"    e       enum:__anon10
-MOBILE_AP_ERROR_NONE   include/mobileap.h      /^      MOBILE_AP_ERROR_NONE,                   \/**< No error *\/$/;"  e       enum:__anon10
-MOBILE_AP_ERROR_NOT_ENABLED    include/mobileap.h      /^      MOBILE_AP_ERROR_NOT_ENABLED,            \/**< Mobile AP is not ON, so cannot be disabled *\/$/;"        e       enum:__anon10
-MOBILE_AP_ERROR_NOT_PERMITTED  include/mobileap.h      /^      MOBILE_AP_ERROR_NOT_PERMITTED,          \/**< Operation is not permitted *\/$/;"        e       enum:__anon10
-MOBILE_AP_ERROR_PERMISSION_DENIED      include/mobileap.h      /^      MOBILE_AP_ERROR_PERMISSION_DENIED,      \/**< Permission Denied *\/$/;" e       enum:__anon10
-MOBILE_AP_ERROR_RESOURCE       include/mobileap.h      /^      MOBILE_AP_ERROR_RESOURCE,               \/**< Socket creation error, file open error *\/$/;"    e       enum:__anon10
-MOBILE_AP_GET_DATA_PACKET_USAGE_CFM    include/mobileap.h      /^      MOBILE_AP_GET_DATA_PACKET_USAGE_CFM,    \/* mobile_ap_get_data_packet_usage() *\/$/;"   e       enum:__anon11
-MOBILE_AP_GET_STATION_INFO_CFM include/mobileap.h      /^      MOBILE_AP_GET_STATION_INFO_CFM,         \/* mobile_ap_get_station_info() *\/$/;"        e       enum:__anon11
-MOBILE_AP_INTF_HWADDR_FILE     include/mobileap_softap.h       50;"    d
-MOBILE_AP_IPV6_SCOPE_GLOBAL    include/mobileap_network.h      /^      MOBILE_AP_IPV6_SCOPE_GLOBAL = 0,$/;"    e       enum:__anon8
-MOBILE_AP_IPV6_SCOPE_LINK      include/mobileap_network.h      /^      MOBILE_AP_IPV6_SCOPE_LINK = 20,$/;"     e       enum:__anon8
-MOBILE_AP_IPV6_SCOPE_SITE      include/mobileap_network.h      /^      MOBILE_AP_IPV6_SCOPE_SITE = 40,$/;"     e       enum:__anon8
-MOBILE_AP_MAX_BT_STA   include/mobileap.h      97;"    d
-MOBILE_AP_MAX_CONNECTED_STA    include/mobileap.h      99;"    d
-MOBILE_AP_MAX_EVENT    include/mobileap.h      /^      MOBILE_AP_MAX_EVENT,$/;"        e       enum:__anon11
-MOBILE_AP_MAX_USB_STA  include/mobileap.h      98;"    d
-MOBILE_AP_MAX_WIFI_STA include/mobileap.h      96;"    d
-MOBILE_AP_NAME_UNKNOWN include/mobileap.h      103;"   d
-MOBILE_AP_NL80211      include/mobileap_softap.h       /^      MOBILE_AP_NL80211,$/;"  e       enum:__anon6
-MOBILE_AP_SOFTAP_PASSPHRASE_STORE_KEY  src/mobileap_wifi.c     44;"    d       file:
-MOBILE_AP_STATE_ALL    include/mobileap_softap.h       266;"   d
-MOBILE_AP_STATE_BT     include/mobileap_softap.h       263;"   d
-MOBILE_AP_STATE_NONE   include/mobileap_softap.h       260;"   d
-MOBILE_AP_STATE_P2P    include/mobileap_softap.h       265;"   d
-MOBILE_AP_STATE_USB    include/mobileap_softap.h       262;"   d
-MOBILE_AP_STATE_WIFI   include/mobileap_softap.h       261;"   d
-MOBILE_AP_STATE_WIFI_AP        include/mobileap_softap.h       264;"   d
-MOBILE_AP_STATION_CONNECT_IND  include/mobileap.h      /^      MOBILE_AP_STATION_CONNECT_IND,          \/* Station connection indication *\/$/;"       e       enum:__anon11
-MOBILE_AP_STATION_DISCONNECT_IND       include/mobileap.h      /^      MOBILE_AP_STATION_DISCONNECT_IND,       \/* Station disconnection indication *\/$/;"    e       enum:__anon11
-MOBILE_AP_STR_HOSTNAME_LEN     include/mobileap.h      102;"   d
-MOBILE_AP_STR_INFO_LEN include/mobileap.h      101;"   d
-MOBILE_AP_TYPE_BT      include/mobileap.h      /^      MOBILE_AP_TYPE_BT,$/;"  e       enum:__anon12
-MOBILE_AP_TYPE_MAX     include/mobileap.h      /^      MOBILE_AP_TYPE_MAX,$/;" e       enum:__anon12
-MOBILE_AP_TYPE_P2P     include/mobileap.h      /^      MOBILE_AP_TYPE_P2P,$/;" e       enum:__anon12
-MOBILE_AP_TYPE_USB     include/mobileap.h      /^      MOBILE_AP_TYPE_USB,$/;" e       enum:__anon12
-MOBILE_AP_TYPE_WIFI    include/mobileap.h      /^      MOBILE_AP_TYPE_WIFI,$/;"        e       enum:__anon12
-MOBILE_AP_TYPE_WIFI_AP include/mobileap.h      /^      MOBILE_AP_TYPE_WIFI_AP,$/;"     e       enum:__anon12
-MOBILE_AP_UG_PKG_ID    include/mobileap.h      108;"   d
-MOBILE_AP_USB_STATION_CONNECT_IND      include/mobileap.h      /^      MOBILE_AP_USB_STATION_CONNECT_IND,$/;"  e       enum:__anon11
-MOBILE_AP_WEXT include/mobileap_softap.h       /^      MOBILE_AP_WEXT,$/;"     e       enum:__anon6
-MOBILE_AP_WIFI_BSSID_LEN       include/mobileap.h      85;"    d
-MOBILE_AP_WIFI_CHANNEL include/mobileap.h      84;"    d
-MOBILE_AP_WIFI_KEY_MAX_LEN     include/mobileap.h      89;"    d
-MOBILE_AP_WIFI_KEY_MAX_LEN     src/mobileap_wifi.c     41;"    d       file:
-MOBILE_AP_WIFI_KEY_MIN_LEN     include/mobileap.h      87;"    d
-MOBILE_AP_WIFI_KEY_MIN_LEN     src/mobileap_wifi.c     40;"    d       file:
-MOBILE_AP_WIFI_MODE_MAX_LEN    include/mobileap.h      90;"    d
-MOBILE_AP_WIFI_PASSPHRASE_STORE_KEY    src/mobileap_wifi.c     43;"    d       file:
-MOBILE_AP_WIFI_PLAIN_TEXT_KEY_MAX_LEN  include/mobileap.h      88;"    d
-MOBILE_AP_WIFI_SSID_MAX_LEN    include/mobileap.h      86;"    d
-MOBILE_AP_WIFI_VENDOR_MAX_LEN  include/mobileap.h      91;"    d
-MULTICAST_ADDR include/mobileap_softap.h       256;"   d
-MULTICAST_NETMASK      include/mobileap_softap.h       257;"   d
-MobileAP       unittest/unittest.cpp   /^class MobileAP:public::testing::Test$/;"      c       file:
-NAT64_BIN      include/mobileap_softap.h       126;"   d
-NAT64_CONF_FILE        include/mobileap_softap.h       127;"   d
-NAT64_DELAY    include/mobileap_softap.h       138;"   d
-NAT64_DEV      include/mobileap_softap.h       129;"   d
-NAT64_IPV4_ADDR        include/mobileap_softap.h       130;"   d
-NAT64_IPV4_PREFIX_ADDR include/mobileap_softap.h       131;"   d
-NAT64_IPV4_PREFIX_LEN  include/mobileap_softap.h       132;"   d
-NAT64_IPV6_ADDR        include/mobileap_softap.h       134;"   d
-NAT64_IPV6_PREFIX_ADDR include/mobileap_softap.h       135;"   d
-NAT64_IPV6_PREFIX_LEN  include/mobileap_softap.h       136;"   d
-NETCONFIG_DBUS_REPLY_TIMEOUT   src/mobileap_softap.c   54;"    d       file:
-NETCONFIG_SERVICE      src/mobileap_softap.c   50;"    d       file:
-NETCONFIG_WIFI_INTERFACE       src/mobileap_softap.c   51;"    d       file:
-NETCONFIG_WIFI_PATH    src/mobileap_softap.c   52;"    d       file:
-NETPOPUP       include/mobileap_notification.h 27;"    d
-NET_BUF_LEN    include/mobileap_softap.h       44;"    d
-P2P_IF include/mobileap_softap.h       55;"    d
-P2P_TETHERING_DISABLE_RQ       src/mobileap_p2p.c      /^      P2P_TETHERING_DISABLE_RQ$/;"    e       enum:__anon25   file:
-P2P_TETHERING_ENABLE_RQ        src/mobileap_p2p.c      /^      P2P_TETHERING_ENABLE_RQ,$/;"    e       enum:__anon25   file:
-PKT_REDIRECTION_RULE   include/mobileap_iptables.h     /^      PKT_REDIRECTION_RULE,$/;"       e       enum:__anon22
-PORT_FILTER_RULE       include/mobileap_iptables.h     /^      PORT_FILTER_RULE,$/;"   e       enum:__anon22
-PORT_FORWARD_RULE_STR  src/mobileap_iptables.c 39;"    d       file:
-PORT_FW_RULE   include/mobileap_iptables.h     /^      PORT_FW_RULE,$/;"       e       enum:__anon22
-PPTP_PASSTHROUGH_RULE  include/mobileap_iptables.h     /^      PPTP_PASSTHROUGH_RULE,$/;"      e       enum:__anon23
-PROC_NET_DEV   include/mobileap_softap.h       270;"   d
-PSK_ITERATION_COUNT    include/mobileap_softap.h       274;"   d
-PS_RECHECK_COUNT_MAX   include/mobileap_bluetooth.h    24;"    d
-PS_RECHECK_INTERVAL    include/mobileap_bluetooth.h    23;"    d
-REDIRECTION_ADD_RULE_STR       src/mobileap_iptables.c 29;"    d       file:
-REDIRECTION_DEL_RULE_STR       src/mobileap_iptables.c 30;"    d       file:
-RET_FAILURE    include/mobileap_softap.h       75;"    d
-RET_SUCCESS    include/mobileap_softap.h       76;"    d
-ROUTE_ADD      include/mobileap_softap.h       254;"   d
-ROUTE_CMD      include/mobileap_softap.h       251;"   d
-ROUTE_DEL      include/mobileap_softap.h       255;"   d
-SDBG   include/mobileap_softap.h       38;"    d
-SECURITY_TYPE_LEN      include/mobileap_softap.h       46;"    d
-SERR   include/mobileap_softap.h       39;"    d
-SIGNAL_MSG_NOT_AVAIL_INTERFACE include/mobileap.h      50;"    d
-SIGNAL_MSG_SSID_HIDE   include/mobileap.h      53;"    d
-SIGNAL_MSG_SSID_VISIBLE        include/mobileap.h      52;"    d
-SIGNAL_MSG_TIMEOUT     include/mobileap.h      51;"    d
-SIGNAL_NAME_BT_TETHER_OFF      include/mobileap.h      40;"    d
-SIGNAL_NAME_BT_TETHER_ON       include/mobileap.h      39;"    d
-SIGNAL_NAME_DHCP_STATUS        include/mobileap.h      49;"    d
-SIGNAL_NAME_FLIGHT_MODE        include/mobileap.h      45;"    d
-SIGNAL_NAME_LOW_BATTERY_MODE   include/mobileap.h      44;"    d
-SIGNAL_NAME_NET_CLOSED include/mobileap.h      32;"    d
-SIGNAL_NAME_NO_DATA_TIMEOUT    include/mobileap.h      43;"    d
-SIGNAL_NAME_PASSPHRASE_CHANGED include/mobileap.h      48;"    d
-SIGNAL_NAME_SECURITY_TYPE_CHANGED      include/mobileap.h      46;"    d
-SIGNAL_NAME_SSID_VISIBILITY_CHANGED    include/mobileap.h      47;"    d
-SIGNAL_NAME_STA_CONNECT        include/mobileap.h      33;"    d
-SIGNAL_NAME_STA_DISCONNECT     include/mobileap.h      34;"    d
-SIGNAL_NAME_USB_TETHER_OFF     include/mobileap.h      38;"    d
-SIGNAL_NAME_USB_TETHER_ON      include/mobileap.h      37;"    d
-SIGNAL_NAME_WIFI_AP_OFF        include/mobileap.h      42;"    d
-SIGNAL_NAME_WIFI_AP_ON include/mobileap.h      41;"    d
-SIGNAL_NAME_WIFI_TETHER_OFF    include/mobileap.h      36;"    d
-SIGNAL_NAME_WIFI_TETHER_ON     include/mobileap.h      35;"    d
-SOFTAP_DEFAULT_DHCP_RANGESTART include/mobileap_softap.h       98;"    d
-SOFTAP_DEFAULT_DHCP_RANGESTOP  include/mobileap_softap.h       99;"    d
-SOFTAP_IF      include/mobileap_softap.h       59;"    d
-SOFTAP_PASSPHRASE_GROUP_ID     include/mobileap_wifi.h 31;"    d
-SOFTAP_PASSPHRASE_PATH include/mobileap_wifi.h 30;"    d
-SOFTAP_SECURITY_TYPE_MAX       include/mobileap_softap.h       /^      SOFTAP_SECURITY_TYPE_MAX,$/;"   e       enum:__anon2
-SOFTAP_SECURITY_TYPE_OPEN      include/mobileap_softap.h       /^      SOFTAP_SECURITY_TYPE_OPEN = 0,$/;"      e       enum:__anon2
-SOFTAP_SECURITY_TYPE_OPEN_STR  include/mobileap_wifi.h 27;"    d
-SOFTAP_SECURITY_TYPE_WPA2_PSK  include/mobileap_softap.h       /^      SOFTAP_SECURITY_TYPE_WPA2_PSK,$/;"      e       enum:__anon2
-SOFTAP_SECURITY_TYPE_WPA2_PSK_STR      include/mobileap_wifi.h 28;"    d
-SOFTAP_SECURITY_TYPE_WPS       include/mobileap_softap.h       /^      SOFTAP_SECURITY_TYPE_WPS,$/;"   e       enum:__anon2
-SOFTAP_SECURITY_TYPE_WPS_STR   include/mobileap_wifi.h 29;"    d
-SOFTAP_SERVICE_INTERFACE       include/mobileap.h      30;"    d
-SOFTAP_WIRELESS_MODE_A include/mobileap_wifi.h /^      SOFTAP_WIRELESS_MODE_A,$/;"     e       enum:__anon1
-SOFTAP_WIRELESS_MODE_AD        include/mobileap_wifi.h /^      SOFTAP_WIRELESS_MODE_AD,$/;"    e       enum:__anon1
-SOFTAP_WIRELESS_MODE_B include/mobileap_wifi.h /^      SOFTAP_WIRELESS_MODE_B = 0,$/;" e       enum:__anon1
-SOFTAP_WIRELESS_MODE_G include/mobileap_wifi.h /^      SOFTAP_WIRELESS_MODE_G,$/;"     e       enum:__anon1
-SRC_ROUTING_RULE       include/mobileap_softap.h       237;"   d
-STATE_INVALID  include/mobileap_iptables.h     33;"    d
-STATE_RELATED_ESTAB    include/mobileap_iptables.h     32;"    d
-SetUp  unittest/unittest.cpp   /^              virtual void SetUp() {$/;"      f       class:MobileAP
-TABLE_FILTER   include/mobileap_iptables.h     22;"    d
-TABLE_MANGLE   include/mobileap_iptables.h     24;"    d
-TABLE_NAT      include/mobileap_iptables.h     23;"    d
-TCP_DNS_FORWARD_RULE   include/mobileap_softap.h       241;"   d
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_custom_port_filtering_rule_p) {$/;"  f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_port_filtering_rule_p) {$/;" f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_port_forwarding_rule_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_remove_multiple_station_info_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_remove_station_info_p) {$/;" f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_add_remve_ipv6_neigh_proxy_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_bt_get_remote_device_name_n) {$/;"       f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_change_mac_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_create_connected_noti_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_create_security_restriction_noti_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_create_timeout_noti_p) {$/;"     f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_delete_connected_noti_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_disable_all_tethering_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_disable_bt_tethering_n) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_bt_ipv6_tethering_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_bt_tethering_p) {$/;"     f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_dhcp_p) {$/;"     f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_dhcp_with_range_p) {$/;"  f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_wifi_ipv6_tethering_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_disable_wifi_tethering_n) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_port_filtering_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_port_forwarding_p) {$/;"  f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_enable_reload_disable_wifi_tethering_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_data_packet_usage_n) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_data_packet_usage_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_hostapd_tx_power_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_ipv6_interface_address_n) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_name_from_lease_info_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_station_info_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_tethering_type_from_ip_n) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_get_tizen_profile_p) {$/;"       f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_is_enabled_by_type_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_is_trying_operation_p) {$/;"     f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_client_get_state_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_destroy_group_p) {$/;"       f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_enable_disable_n) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_enable_disable_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_set_passphrase_n) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_set_passphrase_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_set_ssid_n) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_p2p_set_ssid_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_remove_dhcp_ack_timer_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_reset_port_forwarding_rule_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_get_wifi_tethering_passphrase_p) {$/;"       f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_hostapd_tx_power_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_mtu_n) {$/;" f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_mtu_p) {$/;" f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_vpn_passthrough_rule_p) {$/;"        f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_wifi_tethering_passphrase_n) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_set_wps_pin_n) {$/;"     f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_enable_dhcp_with_range_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_enable_disable_dhcp_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_enable_reload_disable_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_get_dhcp_state_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_get_station_info_p) {$/;" f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_softap_wps_p) {$/;"      f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_start_stop_timeout_cb_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_update_connected_noti_p) {$/;"   f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_update_station_count_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_usb_tethering_enable_disable_p) {$/;"    f
-TEST_F unittest/unittest.cpp   /^TEST_F(MobileAP, mobileap_agent_test_wps_p) {$/;"     f
-TETHERING_CONN_TIMEOUT include/mobileap_softap.h       271;"   d
-TETHERING_NET_OPEN_RETRY_INTERVAL      include/mobileap_network.h      24;"    d
-TETHERING_ROUTING_TABLE        include/mobileap_softap.h       236;"   d
-TETHERING_SERVICE_INTERFACE    include/mobileap.h      29;"    d
-TETHERING_SERVICE_NAME include/mobileap.h      28;"    d
-TETHERING_SERVICE_OBJECT_PATH  include/mobileap.h      27;"    d
-TETH_FILTER_FW include/mobileap_iptables.h     29;"    d
-TETH_NAT_POST  include/mobileap_iptables.h     30;"    d
-TETH_NAT_PRE   include/mobileap_iptables.h     31;"    d
-TIZEN_PROFILE_TV       include/mobileap.h      227;"   d
-TearDown       unittest/unittest.cpp   /^              virtual void TearDown() {$/;"   f       class:MobileAP
-UDP_DNS_FORWARD_RULE   include/mobileap_softap.h       242;"   d
-USBCLIENT_STATE_AVAILABLE      src/mobileap_usb.c      /^      USBCLIENT_STATE_AVAILABLE    = 0x02,$/;"        e       enum:usbclient_state    file:
-USBCLIENT_STATE_CONNECTED      src/mobileap_usb.c      /^      USBCLIENT_STATE_CONNECTED    = 0x01, \/* usb cable is attached *\/$/;"  e       enum:usbclient_state    file:
-USBCLIENT_STATE_DISCONNECTED   src/mobileap_usb.c      /^      USBCLIENT_STATE_DISCONNECTED = 0x00, \/* usb cable is detached *\/$/;"  e       enum:usbclient_state    file:
-USB_IF include/mobileap_softap.h       62;"    d
-USB_STATE_CHANGE_SIGNAL        src/mobileap_usb.c      42;"    d       file:
-USB_SYSTEM_DEVICE_IFACE        src/mobileap_usb.c      41;"    d       file:
-USB_SYSTEM_DEVICE_PATH src/mobileap_usb.c      40;"    d       file:
-Updated_sig_id src/mobileap.c  /^guint Updated_sig_id = 0;$/;" v
-VCONFKEY_MOBILE_HOTSPOT_SSID   include/mobileap_wifi.h 23;"    d
-VCONFKEY_SOFTAP_KEY    include/mobileap_wifi.h 25;"    d
-VCONFKEY_SOFTAP_SSID   include/mobileap_wifi.h 24;"    d
-VCONF_IS_DEVICE_RENAMED_IN_UG  src/mobileap_handler.c  30;"    d       file:
-WFD_MANAGER_CONFIG_INTERFACE   include/mobileap_dbus.h 33;"    d
-WFD_MANAGER_DISPLAY_INTERFACE  include/mobileap_dbus.h 35;"    d
-WFD_MANAGER_GROUP_INTERFACE    include/mobileap_dbus.h 32;"    d
-WFD_MANAGER_MANAGE_INTERFACE   include/mobileap_dbus.h 31;"    d
-WFD_MANAGER_PATH       include/mobileap_dbus.h 29;"    d
-WFD_MANAGER_SERVICE    include/mobileap_dbus.h 28;"    d
-WFD_MANAGER_SERVICE_INTERFACE  include/mobileap_dbus.h 34;"    d
-WIFI_AP_CONN_TIMEOUT   include/mobileap_softap.h       272;"   d
-WIFI_IF        include/mobileap_softap.h       56;"    d
-WIFI_RECOVERY_GUARD_TIME       src/mobileap_wifi.c     39;"    d       file:
-_      include/mobileap_notification.h 40;"    d
-_      include/mobileap_notification.h 42;"    d
-_PROFILE_COMMON        include/mobileap.h      /^      _PROFILE_COMMON = 0x10,$/;"     e       enum:__anon18
-_PROFILE_IVI   include/mobileap.h      /^      _PROFILE_IVI = 0x8,$/;" e       enum:__anon18
-_PROFILE_MOBILE        include/mobileap.h      /^      _PROFILE_MOBILE = 0x1,$/;"      e       enum:__anon18
-_PROFILE_TV    include/mobileap.h      /^      _PROFILE_TV = 0x4,$/;"  e       enum:__anon18
-_PROFILE_UNKNOWN       include/mobileap.h      /^      _PROFILE_UNKNOWN = 0,$/;"       e       enum:__anon18
-_PROFILE_WEARABLE      include/mobileap.h      /^      _PROFILE_WEARABLE = 0x2,$/;"    e       enum:__anon18
-__INTERNET     src/mobileap_network.c  /^      __INTERNET,$/;" e       enum:__anon29   file:
-__MOBILEAP_AGENT_UNITTEST_H__  unittest/unittest.h     17;"    d
-__MOBILEAP_BLUETOOTH_H__       include/mobileap_bluetooth.h    19;"    d
-__MOBILEAP_COMMON_H__  include/mobileap_common.h       19;"    d
-__MOBILEAP_DBUS_H__    include/mobileap_dbus.h 19;"    d
-__MOBILEAP_HANDLER_H__ include/mobileap_handler.h      19;"    d
-__MOBILEAP_INTERNAL_H__        include/mobileap.h      19;"    d
-__MOBILEAP_IPTABLES_H__        include/mobileap_iptables.h     19;"    d
-__MOBILEAP_NETWORK_H__ include/mobileap_network.h      19;"    d
-__MOBILEAP_NOTIFICATION_H__    include/mobileap_notification.h 19;"    d
-__MOBILEAP_P2P_H__     include/mobileap_p2p.h  19;"    d
-__MOBILEAP_SOFTAP_H__  include/mobileap_softap.h       19;"    d
-__MOBILEAP_USB_H__     include/mobileap_usb.h  19;"    d
-__MOBILEAP_WIFI_H__    include/mobileap_wifi.h 19;"    d
-__NO_SERVICE   src/mobileap_network.c  /^      __NO_SERVICE,$/;"       e       enum:__anon29   file:
-__TETHERING_ONLY       src/mobileap_network.c  /^      __TETHERING_ONLY$/;"    e       enum:__anon29   file:
-__WFD_CLIENT_H__       include/mobileap_wfd.h  19;"    d
-__add_bt_remote        src/mobileap_bluetooth.c        /^static __bt_remote_device_s *__add_bt_remote(bt_device_info_s *info, const char *intf_name)$/;"       f       file:
-__bt_adapter_state_changed     src/mobileap_bluetooth.c        /^static void __bt_adapter_state_changed(int result, bt_adapter_state_e adapter_state, void *user_data)$/;"     f       file:
-__bt_adapter_timeout_cb        src/mobileap_bluetooth.c        /^gboolean __bt_adapter_timeout_cb(gpointer data)$/;"   f
-__bt_adapter_visibility_changed_cb     src/mobileap_bluetooth.c        /^static void __bt_adapter_visibility_changed_cb(int result,$/;"        f       file:
-__bt_ipv6_adapter_state_changed        src/mobileap_bluetooth.c        /^static void __bt_ipv6_adapter_state_changed(int result, bt_adapter_state_e adapter_state, void *user_data)$/;"        f       file:
-__bt_nap_connection_changed    src/mobileap_bluetooth.c        /^static void __bt_nap_connection_changed(bool connected, const char *remote_address, const char *interface_name, void *user_data)$/;"  f       file:
-__bt_nap_ipv6_connection_changed       src/mobileap_bluetooth.c        /^static void __bt_nap_ipv6_connection_changed(bool connected, const char *remote_address,$/;"  f       file:
-__bt_remote_device_s   src/mobileap_bluetooth.c        /^} __bt_remote_device_s;$/;"   t       typeref:struct:__anon27 file:
-__bt_remote_devices    src/mobileap_bluetooth.c        /^static __bt_remote_device_s __bt_remote_devices[MOBILE_AP_MAX_BT_STA] = {$/;" v       file:
-__bt_timeout_cb        src/mobileap_handler.c  /^static gboolean __bt_timeout_cb(gpointer data)$/;"    f       file:
-__cellular_state_changed_cb    src/mobileap_network.c  /^void __cellular_state_changed_cb(keynode_t *node, void *user_data)$/;"        f
-__cleanup_ipv6_network_info    src/mobileap_network.c  /^static void __cleanup_ipv6_network_info(void)$/;"     f       file:
-__close_hostapd_intf   src/mobileap_softap.c   /^static int __close_hostapd_intf(int *fd)$/;"  f       file:
-__close_hostapd_monitor        src/mobileap_softap.c   /^static int __close_hostapd_monitor(int *fd)$/;"       f       file:
-__close_tethering_profile      src/mobileap_network.c  /^static gboolean __close_tethering_profile(void)$/;"   f       file:
-__connection_type_changed_cb   src/mobileap_network.c  /^static void __connection_type_changed_cb(connection_type_e type, void *user_data)$/;" f       file:
-__convert_mode_str_to_int      src/mobileap_wifi.c     /^static int __convert_mode_str_to_int(char *mode)$/;"  f       file:
-__create_p2p_tethering_group   src/mobileap_p2p.c      /^static int __create_p2p_tethering_group(request_data_t *request_data)$/;"     f       file:
-__create_status_noti   src/mobileap_notification.c     /^static int __create_status_noti(const char *content)$/;"      f       file:
-__create_tethering_profile     src/mobileap_network.c  /^static int __create_tethering_profile(void)$/;"       f       file:
-__deinit_bt    src/mobileap_bluetooth.c        /^static void __deinit_bt(void)$/;"     f       file:
-__del_bt_remote        src/mobileap_bluetooth.c        /^static gboolean __del_bt_remote(const char *mac)$/;"  f       file:
-__del_bt_remote_all    src/mobileap_bluetooth.c        /^static void __del_bt_remote_all(void)$/;"     f       file:
-__del_ipv6_bt_remote   src/mobileap_bluetooth.c        /^static gboolean __del_ipv6_bt_remote(const char *mac)$/;"     f       file:
-__del_ipv6_bt_remote_all       src/mobileap_bluetooth.c        /^static void __del_ipv6_bt_remote_all(void)$/;"        f       file:
-__disable_ipv4_forwarding      src/mobileap_network.c  /^static int __disable_ipv4_forwarding(void)$/;"        f       file:
-__disable_ipv6_forwarding      src/mobileap_network.c  /^static int __disable_ipv6_forwarding(void)$/;"        f       file:
-__disable_ipv6_proxy_ndp       src/mobileap_network.c  /^static int __disable_ipv6_proxy_ndp(void)$/;" f       file:
-__disable_p2p_tethering        src/mobileap_p2p.c      /^void __disable_p2p_tethering(void)$/;"        f
-__disable_port_forwarding      src/mobileap_softap.c   /^static int __disable_port_forwarding(void)$/;"        f       file:
-__enable_ipv4_forwarding       src/mobileap_network.c  /^static int __enable_ipv4_forwarding(void)$/;" f       file:
-__enable_ipv6_forwarding       src/mobileap_network.c  /^static int __enable_ipv6_forwarding(void)$/;" f       file:
-__enable_ipv6_proxy_ndp        src/mobileap_network.c  /^static int __enable_ipv6_proxy_ndp(void)$/;"  f       file:
-__enable_p2p_tethering src/mobileap_p2p.c      /^int __enable_p2p_tethering(void)$/;"  f
-__enable_port_forwarding       src/mobileap_softap.c   /^static int __enable_port_forwarding(void)$/;" f       file:
-__execute_hostapd      src/mobileap_softap.c   /^static int __execute_hostapd(const mobile_ap_type_e type, softap_settings_t *settings)$/;"    f       file:
-__execute_hostapd_wps  src/mobileap_softap.c   /^static int __execute_hostapd_wps(const mobile_ap_type_e type, softap_settings_t *settings)$/;"        f       file:
-__expire_timeout       src/mobileap_handler.c  /^static void __expire_timeout(sp_timeout_handler_t *sp)$/;"    f       file:
-__find_bt_remote       src/mobileap_bluetooth.c        /^static __bt_remote_device_s *__find_bt_remote(const char *mac)$/;"    f       file:
-__find_first_caps_char src/mobileap_softap.c   /^static char *__find_first_caps_char(char *str)$/;"    f       file:
-__find_next_timeout    src/mobileap_handler.c  /^static sp_timeout_handler_t *__find_next_timeout(void)$/;"    f       file:
-__generate_eui64_address       src/mobileap_softap.c   /^static void __generate_eui64_address(int idx, const char *hw_addr, char **eui64_addr)$/;"     f       file:
-__generate_initial_passphrase  src/mobileap_wifi.c     /^static unsigned int __generate_initial_passphrase(char *passphrase, unsigned int size)$/;"    f       file:
-__get_conn_error       src/mobileap_network.c  /^static mobile_ap_error_code_e __get_conn_error(int conn_error)$/;"    f       file:
-__get_drv_interface    src/mobileap_softap.c   /^static mobile_ap_drv_interface_e __get_drv_interface(void)$/;"        f       file:
-__get_icon_path        src/mobileap_notification.c     /^static char *__get_icon_path(mobile_ap_type_e type)$/;"       f       file:
-__get_key_manager_alias        src/mobileap_wifi.c     /^static char *__get_key_manager_alias(const char* name)$/;"    f       file:
-__get_passphrase       src/mobileap_wifi.c     /^static mobile_ap_error_code_e __get_passphrase(const char *key,$/;"   f       file:
-__get_psk_hexascii     src/mobileap_softap.c   /^static int __get_psk_hexascii(const char *pass, const unsigned char *salt,$/;"        f       file:
-__get_wifi_direct_state        src/mobileap_p2p.c      /^static int __get_wifi_direct_state(void)$/;"  f       file:
-__handle_bt_adapter_visibility src/mobileap_bluetooth.c        /^static void __handle_bt_adapter_visibility()$/;"      f       file:
-__handle_device_name_changed_cb        src/mobileap_handler.c  /^static void __handle_device_name_changed_cb(keynode_t *key, void *data)$/;"   f       file:
-__handle_dnsmasq_dhcp_status_changed_cb        src/mobileap.c  /^static void __handle_dnsmasq_dhcp_status_changed_cb(GDBusConnection *connection,$/;"  f       file:
-__handle_language_changed_cb   src/mobileap_handler.c  /^static void __handle_language_changed_cb(keynode_t *key, void *data)$/;"      f       file:
-__handle_network_cellular_state_changed_cb     src/mobileap_handler.c  /^static void __handle_network_cellular_state_changed_cb(keynode_t *key, void *data)$/;"        f       file:
-__handle_open_network_error    src/mobileap_network.c  /^static void __handle_open_network_error(void)$/;"     f       file:
-__handle_p2p_tethering_error   src/mobileap_p2p.c      /^static void __handle_p2p_tethering_error(void)$/;"    f       file:
-__handle_station_signal        src/mobileap_softap.c   /^static void __handle_station_signal(int sig)$/;"      f       file:
-__handle_usb_disconnect_cb     src/mobileap_usb.c      /^void __handle_usb_disconnect_cb(keynode_t *key, void *data)$/;"       f
-__handle_usb_mode_change       src/mobileap_usb.c      /^static void __handle_usb_mode_change(keynode_t *key, void *data)$/;"  f       file:
-__hostapd_connect_timer_cb     src/mobileap_softap.c   /^static gboolean __hostapd_connect_timer_cb(gpointer user_data)$/;"    f       file:
-__hostapd_monitor_cb   src/mobileap_softap.c   /^static gboolean __hostapd_monitor_cb(GIOChannel *source)$/;"  f       file:
-__init_bt      src/mobileap_bluetooth.c        /^static mobile_ap_error_code_e __init_bt(Tethering *obj, mobile_ap_address_type_e address_type)$/;"    f       file:
-__is_bt_adapter_on     src/mobileap_bluetooth.c        /^static gboolean __is_bt_adapter_on(void)$/;"  f       file:
-__is_connected_profile src/mobileap_network.c  /^static gboolean __is_connected_profile(connection_profile_h profile)$/;"      f       file:
-__is_equal_profile     src/mobileap_network.c  /^static gboolean __is_equal_profile(connection_profile_h a, connection_profile_h b)$/;"        f       file:
-__is_equal_softap_settings     src/mobileap_wifi.c     /^static gboolean __is_equal_softap_settings(softap_settings_t *a, softap_settings_t *b)$/;"    f       file:
-__is_valid_passphrase_length   src/mobileap_wifi.c     /^static gboolean __is_valid_passphrase_length(char *key)$/;"   f       file:
-__is_wifi_direct_activated     src/mobileap_p2p.c      /^static gboolean __is_wifi_direct_activated(void)$/;"  f       file:
-__is_wifi_direct_deactivated   src/mobileap_p2p.c      /^static gboolean __is_wifi_direct_deactivated(void)$/;"        f       file:
-__is_wifi_direct_on    src/mobileap_wifi.c     /^static gboolean __is_wifi_direct_on(void)$/;" f       file:
-__issue_ioctl  src/mobileap_softap.c   /^static int __issue_ioctl(int sock_fd, char *if_name, char *cmd, char *buf)$/;"        f       file:
-__make_hostapd_dir     src/mobileap_softap.c   /^static int __make_hostapd_dir(void)$/;"       f       file:
-__mh_core_softap_firmware_start        src/mobileap_softap.c   /^static int __mh_core_softap_firmware_start(void)$/;"  f       file:
-__mh_core_softap_firmware_stop src/mobileap_softap.c   /^static int __mh_core_softap_firmware_stop(void)$/;"   f       file:
-__open_hostapd_intf    src/mobileap_softap.c   /^static int __open_hostapd_intf(int *fd, const char *intf)$/;" f       file:
-__open_hostapd_monitor src/mobileap_softap.c   /^static int __open_hostapd_monitor(int *fd)$/;"        f       file:
-__open_tethering_profile       src/mobileap_network.c  /^static gboolean __open_tethering_profile(void)$/;"    f       file:
-__p2p_tethering_error_timeout_cb       src/mobileap_p2p.c      /^static gboolean __p2p_tethering_error_timeout_cb(gpointer data)$/;"   f       file:
-__policy_chnaged_cb    src/mobileap_common.c   /^static void __policy_chnaged_cb(const char *name, const char *value, void *data)$/;"  f       file:
-__print_cellular_profile       src/mobileap_network.c  /^static void __print_cellular_profile(void)$/;"        f       file:
-__profile_closed_cb    src/mobileap_network.c  /^static void __profile_closed_cb(connection_error_e result, void *user_data)$/;"       f       file:
-__profile_opened_cb    src/mobileap_network.c  /^static void __profile_opened_cb(connection_error_e result, void *user_data)$/;"       f       file:
-__profile_state_changed_cb     src/mobileap_network.c  /^static void __profile_state_changed_cb(connection_profile_state_e state, void *user_data)$/;" f       file:
-__recheck_bt_adapter_timer     src/mobileap_bluetooth.c        /^int __recheck_bt_adapter_timer = 0;$/;"       v
-__reset_timeout        src/mobileap_handler.c  /^static void __reset_timeout(sp_timeout_handler_t *sp)$/;"     f       file:
-__send_hostapd_req     src/mobileap_softap.c   /^static int __send_hostapd_req(int fd, const char *req, const int req_len,$/;" f       file:
-__send_station_event_cb        src/mobileap_softap.c   /^static gboolean __send_station_event_cb(gpointer data)$/;"    f       file:
-__set_passphrase       src/mobileap_wifi.c     /^static mobile_ap_error_code_e __set_passphrase(const char *key,$/;"   f       file:
-__softap_emit_changed_signal   src/mobileap_wifi.c     /^static void __softap_emit_changed_signal(Softap *obj, softap_settings_t *new, softap_settings_t *old)$/;"     f       file:
-__terminate_hostapd    src/mobileap_softap.c   /^static int __terminate_hostapd()$/;"  f       file:
-__tethering_setup_gdbus        src/mobileap.c  /^static int __tethering_setup_gdbus(void)$/;"  f       file:
-__try_to_open_tethering_profile        src/mobileap_network.c  /^static gboolean __try_to_open_tethering_profile(gpointer user_data)$/;"       f       file:
-__turn_off_bt_nap      src/mobileap_bluetooth.c        /^static void __turn_off_bt_nap(void)$/;"       f       file:
-__turn_off_wifi        src/mobileap_wifi.c     /^static int __turn_off_wifi(void *obj)$/;"     f       file:
-__turn_off_wifi_direct src/mobileap_wifi.c     /^static int __turn_off_wifi_direct(void *obj)$/;"      f       file:
-__turn_on_bt_adapter   src/mobileap_bluetooth.c        /^static mobile_ap_error_code_e __turn_on_bt_adapter(gpointer data)$/;" f       file:
-__turn_on_bt_nap       src/mobileap_bluetooth.c        /^static mobile_ap_error_code_e __turn_on_bt_nap(Tethering *obj, mobile_ap_address_type_e address_type)$/;"     f       file:
-__turn_on_wifi src/mobileap_wifi.c     /^static int __turn_on_wifi(void)$/;"   f       file:
-__turn_on_wifi_timeout_cb      src/mobileap_wifi.c     /^static gboolean __turn_on_wifi_timeout_cb(gpointer user_data)$/;"     f       file:
-__update_ipv6_network_info     src/mobileap_network.c  /^static int __update_ipv6_network_info(void)$/;"       f       file:
-__update_softap_settings       src/mobileap_wifi.c     /^static mobile_ap_error_code_e __update_softap_settings(softap_settings_t *dst, softap_settings_t *src)$/;"    f       file:
-__update_tethering_cellular_profile    src/mobileap_network.c  /^static void __update_tethering_cellular_profile(void)$/;"     f       file:
-__usb_device_state_change_cb   src/mobileap_usb.c      /^static void __usb_device_state_change_cb(GDBusConnection *connection,$/;"     f       file:
-__wifi_manager_activated_cb    src/mobileap_wifi.c     /^static void __wifi_manager_activated_cb(wifi_manager_error_e result, void *user_data)$/;"     f       file:
-__wifi_manager_deactivated_cb  src/mobileap_wifi.c     /^static void __wifi_manager_deactivated_cb(wifi_manager_error_e result, void *user_data)$/;"   f       file:
-__wifi_timeout_cb      src/mobileap_handler.c  /^static gboolean __wifi_timeout_cb(gpointer data)$/;"  f       file:
-_add_address   src/mobileap_network.c  /^gboolean _add_address(const char *if_name, char *ip)$/;"      f
-_add_default_router    src/mobileap_network.c  /^gboolean _add_default_router(void)$/;"        f
-_add_interface_routing src/mobileap_common.c   /^int _add_interface_routing(const char *interface, const in_addr_t gateway)$/;"        f
-_add_ipv6_default_router       src/mobileap_network.c  /^gboolean _add_ipv6_default_router(void)$/;"   f
-_add_ipv6_neigh_proxy  src/mobileap_network.c  /^gboolean _add_ipv6_neigh_proxy(const char *if_name, const char *ip)$/;"       f
-_add_multicast_routing src/mobileap_common.c   /^int _add_multicast_routing(const char *interface)$/;" f
-_add_route     src/mobileap_network.c  /^gboolean _add_route(const char *if_name, char *ip, mobile_ap_address_type_e address_type, int prefix)$/;"     f
-_add_routing_rule      src/mobileap_common.c   /^int _add_routing_rule(const char *interface)$/;"      f
-_add_station_info      src/mobileap_common.c   /^int _add_station_info(mobile_ap_station_info_t *info)$/;"     f
-_block_device_sleep    src/mobileap.c  /^void _block_device_sleep(void)$/;"    f
-_bt_get_remote_device_name     src/mobileap_bluetooth.c        /^void _bt_get_remote_device_name(const char *mac, char **name)$/;"     f
-_close_ipv6_network    src/mobileap_network.c  /^void _close_ipv6_network(void)$/;"    f
-_close_network src/mobileap_network.c  /^void _close_network(void)$/;" f
-_create_connected_noti src/mobileap_notification.c     /^int _create_connected_noti(mobile_ap_type_e type, int count)$/;"      f
-_create_nat64_interface        src/mobileap_network.c  /^gboolean _create_nat64_interface(void)$/;"    f
-_create_security_restriction_noti      src/mobileap_notification.c     /^void _create_security_restriction_noti(mobile_ap_type_e type)$/;"     f
-_create_tethering_active_noti  src/mobileap_notification.c     /^void _create_tethering_active_noti(void)$/;"  f
-_create_timeout_noti   src/mobileap_notification.c     /^int _create_timeout_noti(mobile_ap_type_e type)$/;"   f
-_dbus_register_usb_state_change_signal src/mobileap_usb.c      /^int _dbus_register_usb_state_change_signal(void *data)$/;"    f
-_deinit_dpm    src/mobileap_common.c   /^void _deinit_dpm(void)$/;"    f
-_deinit_network        src/mobileap_network.c  /^gboolean _deinit_network(void)$/;"    f
-_deinit_tethering      src/mobileap.c  /^gboolean _deinit_tethering(mobile_ap_address_type_e address_type)$/;" f
-_deinit_timeout_cb     src/mobileap_handler.c  /^void _deinit_timeout_cb(mobile_ap_type_e type)$/;"    f
-_deinit_wifi_manager   src/mobileap_wifi.c     /^void _deinit_wifi_manager(void)$/;"   f
-_del_default_router    src/mobileap_network.c  /^gboolean _del_default_router(void)$/;"        f
-_del_interface_routing src/mobileap_common.c   /^int _del_interface_routing(const char *interface, const in_addr_t gateway)$/;"        f
-_del_ipv6_route        src/mobileap_network.c  /^static gboolean _del_ipv6_route(void)$/;"     f       file:
-_del_multicast_routing src/mobileap_common.c   /^int _del_multicast_routing(const char *interface)$/;" f
-_del_port_forward_rule src/mobileap_network.c  /^void _del_port_forward_rule(void)$/;" f
-_del_routing_rule      src/mobileap_common.c   /^int _del_routing_rule(const char *interface)$/;"      f
-_delete_connected_noti src/mobileap_notification.c     /^int _delete_connected_noti(void)$/;"  f
-_delete_timeout_noti   src/mobileap_notification.c     /^int _delete_timeout_noti(void)$/;"    f
-_destroy_dhcp_ack_timer        src/mobileap_softap.c   /^void _destroy_dhcp_ack_timer(char *mac_addr)$/;"      f
-_disable_bt_tethering  src/mobileap_bluetooth.c        /^mobile_ap_error_code_e _disable_bt_tethering(Tethering *obj, mobile_ap_address_type_e address_type)$/;"       f
-_disable_soft_ap       src/mobileap_wifi.c     /^mobile_ap_error_code_e _disable_soft_ap(Softap *obj)$/;"      f
-_disable_usb_tethering src/mobileap_usb.c      /^mobile_ap_error_code_e _disable_usb_tethering(Tethering *obj, mobile_ap_address_type_e address_type)$/;"      f
-_disable_wifi_tethering        src/mobileap_wifi.c     /^mobile_ap_error_code_e _disable_wifi_tethering(Tethering *obj, mobile_ap_address_type_e address_type)$/;"     f
-_enable_bt_tethering   src/mobileap_bluetooth.c        /^mobile_ap_error_code_e _enable_bt_tethering(Tethering *obj, mobile_ap_address_type_e address_type)$/;"        f
-_enable_ipv6   src/mobileap_network.c  /^int _enable_ipv6(const char *if_name)$/;"     f
-_enable_soft_ap        src/mobileap_wifi.c     /^mobile_ap_error_code_e _enable_soft_ap(Softap *obj, softap_settings_t *settings)$/;"  f
-_enable_usb_tethering  src/mobileap_usb.c      /^mobile_ap_error_code_e _enable_usb_tethering(Tethering *obj, mobile_ap_address_type_e address_type)$/;"       f
-_enable_wifi_tethering src/mobileap_wifi.c     /^mobile_ap_error_code_e _enable_wifi_tethering(Tethering *obj, softap_settings_t *settings)$/;"        f
-_execute_command       src/mobileap_common.c   /^int _execute_command(const char *cmd)$/;"     f
-_extract_softap_settings       src/mobileap_wifi.c     /^static int _extract_softap_settings(GVariant *values, softap_settings_t *settings)$/;"        f       file:
-_flush_dhcp_ack_timer  src/mobileap_softap.c   /^void _flush_dhcp_ack_timer(void)$/;"  f
-_flush_ip_address      src/mobileap_common.c   /^int _flush_ip_address(const char *interface)$/;"      f
-_get_data_usage        src/mobileap_iptables.c /^int _get_data_usage(const char *src, const char *dest, unsigned long long *tx,$/;"    f
-_get_hostapd_tx_power  src/mobileap_softap.c   /^unsigned int _get_hostapd_tx_power(void)$/;"  f
-_get_hw_address        src/mobileap_softap.c   /^int _get_hw_address(const char *if_name, char **hw_addr)$/;"  f
-_get_ipv6_interface_address    src/mobileap_network.c  /^gboolean _get_ipv6_interface_address(const char *if_name, mobile_ap_ipv6_scope_e ip_scope, char **ip)$/;"     f
-_get_ipv6_network_address      src/mobileap_network.c  /^char *_get_ipv6_network_address(void)$/;"     f
-_get_ipv6_network_dns_address  src/mobileap_network.c  /^char *_get_ipv6_network_dns_address(void)$/;" f
-_get_ipv6_network_interface    src/mobileap_network.c  /^char *_get_ipv6_network_interface(void)$/;"   f
-_get_ipv6_network_prefix       src/mobileap_network.c  /^char *_get_ipv6_network_prefix(void)$/;"      f
-_get_ipv6_network_state        src/mobileap_network.c  /^gboolean _get_ipv6_network_state(void)$/;"    f
-_get_network_dns_address       src/mobileap_network.c  /^gboolean _get_network_dns_address(mobile_ap_address_type_e address_type, char **dns)$/;"      f
-_get_network_gateway_address   src/mobileap_network.c  /^gboolean _get_network_gateway_address(mobile_ap_address_type_e address_type, char **ip)$/;"   f
-_get_network_interface_name    src/mobileap_network.c  /^gboolean _get_network_interface_name(char **if_name)$/;"      f
-_get_softap_obj        src/mobileap.c  /^Softap *_get_softap_obj(void)$/;"     f
-_get_softap_settings   src/mobileap_wifi.c     /^softap_settings_t *_get_softap_settings()$/;" f
-_get_station_count     src/mobileap_common.c   /^int _get_station_count(gconstpointer data, GCompareFunc func, int *count)$/;" f
-_get_station_info      src/mobileap_common.c   /^int _get_station_info(gconstpointer data, GCompareFunc func,$/;"      f
-_get_tethering_obj     src/mobileap.c  /^Tethering *_get_tethering_obj(void)$/;"       f
-_get_tethering_type_from_ip    src/mobileap_common.c   /^int _get_tethering_type_from_ip(const char *ip, mobile_ap_type_e *type)$/;"   f
-_get_tizen_profile     src/mobileap_network.c  /^tizen_profile_t _get_tizen_profile()$/;"      f
-_get_wifi_name_from_lease_info src/mobileap_wifi.c     /^int _get_wifi_name_from_lease_info(const char *mac, char **name_buf)$/;"      f
-_init_dpm      src/mobileap_common.c   /^int _init_dpm(void)$/;"       f
-_init_network  src/mobileap_network.c  /^gboolean _init_network(void *user_data)$/;"   f
-_init_tethering        src/mobileap.c  /^int _init_tethering(mobile_ap_address_type_e address_type)$/;"        f
-_init_timeout_cb       src/mobileap_handler.c  /^void _init_timeout_cb(mobile_ap_type_e type, void *user_data)$/;"     f
-_init_wifi_manager     src/mobileap_wifi.c     /^void _init_wifi_manager(void)$/;"     f
-_iptables_add_rule     src/mobileap_iptables.c /^int _iptables_add_rule(iptables_rule_e rule_type, const char *table, const char *chain, ...)$/;"      f
-_iptables_create_chain src/mobileap_iptables.c /^int _iptables_create_chain(const char *table_name, const char *chain_name)$/;"        f
-_iptables_delete_chain src/mobileap_iptables.c /^int _iptables_delete_chain(const char *table_name, const char *chain_name)$/;"        f
-_iptables_delete_rule  src/mobileap_iptables.c /^int _iptables_delete_rule(iptables_rule_e rule_type, const char *table, const char *chain, ...)$/;"   f
-_iptables_flush_rules  src/mobileap_iptables.c /^int _iptables_flush_rules(const char *table_name, const char *chain_name)$/;" f
-_iptables_set_vpn_passthrough_rule     src/mobileap_iptables.c /^int _iptables_set_vpn_passthrough_rule(iptables_vpn_passthorugh_e vpn_type, int enable)$/;"   f
-_is_allowed    src/mobileap_common.c   /^int _is_allowed(mobile_ap_type_e type)$/;"    f
-_is_trying_bt_operation        src/mobileap_bluetooth.c        /^gboolean _is_trying_bt_operation(void)$/;"    f
-_is_trying_network_operation   src/mobileap_network.c  /^gboolean _is_trying_network_operation(void)$/;"       f
-_is_trying_p2p_operation       src/mobileap_p2p.c      /^gboolean _is_trying_p2p_operation(void)$/;"   f
-_is_trying_usb_operation       src/mobileap_usb.c      /^gboolean _is_trying_usb_operation(void)$/;"   f
-_is_trying_wifi_operation      src/mobileap_wifi.c     /^gboolean _is_trying_wifi_operation(void)$/;"  f
-_mh_core_active_nat64_interface        src/mobileap_softap.c   /^int _mh_core_active_nat64_interface(void)$/;" f
-_mh_core_add_custom_port_filtering_rule        src/mobileap_softap.c   /^int _mh_core_add_custom_port_filtering_rule(int port1, int port2, const char *protocol, int allow)$/;"        f
-_mh_core_add_port_filtering_rule       src/mobileap_softap.c   /^int _mh_core_add_port_filtering_rule(int port, const char *protocol, int allow)$/;"   f
-_mh_core_add_port_forwarding_rule      src/mobileap_softap.c   /^int _mh_core_add_port_forwarding_rule(const char* ifname, const char* proto,$/;"      f
-_mh_core_change_mac    src/mobileap_softap.c   /^int _mh_core_change_mac(const char *mac)$/;"  f
-_mh_core_create_ipv6_address   src/mobileap_softap.c   /^int _mh_core_create_ipv6_address(int idx, const char *hw_address, char **ipv6_address)$/;"    f
-_mh_core_deactive_nat64_interface      src/mobileap_softap.c   /^int _mh_core_deactive_nat64_interface(void)$/;"       f
-_mh_core_disable_ipv6_masquerade       src/mobileap_softap.c   /^int _mh_core_disable_ipv6_masquerade(const char *network_intf)$/;"    f
-_mh_core_disable_masquerade    src/mobileap_softap.c   /^int _mh_core_disable_masquerade(const char *ext_if)$/;"       f
-_mh_core_disable_softap        src/mobileap_softap.c   /^int _mh_core_disable_softap(void)$/;" f
-_mh_core_enable_ipv6_masquerade        src/mobileap_softap.c   /^int _mh_core_enable_ipv6_masquerade(const char *network_intf)$/;"     f
-_mh_core_enable_masquerade     src/mobileap_softap.c   /^int _mh_core_enable_masquerade(const char *ext_if)$/;"        f
-_mh_core_enable_p2p_masquerade src/mobileap_softap.c   /^static int _mh_core_enable_p2p_masquerade(const char *ext_if)$/;"     f       file:
-_mh_core_enable_port_filtering src/mobileap_softap.c   /^int _mh_core_enable_port_filtering(int enable)$/;"    f
-_mh_core_enable_port_forwarding        src/mobileap_softap.c   /^int _mh_core_enable_port_forwarding(int enable)$/;"   f
-_mh_core_enable_softap src/mobileap_softap.c   /^int _mh_core_enable_softap(const mobile_ap_type_e type, softap_settings_t *settings)$/;"      f
-_mh_core_execute_dhcp6_server  src/mobileap_softap.c   /^int _mh_core_execute_dhcp6_server(void)$/;"   f
-_mh_core_execute_dhcp_server   src/mobileap_softap.c   /^int _mh_core_execute_dhcp_server(gchar *softap_rangestart, gchar *softap_rangestop)$/;"       f
-_mh_core_execute_dns64 src/mobileap_softap.c   /^int _mh_core_execute_dns64(void)$/;"  f
-_mh_core_execute_nat64 src/mobileap_softap.c   /^int _mh_core_execute_nat64(void)$/;"  f
-_mh_core_get_dhcp_state        src/mobileap_softap.c   /^int _mh_core_get_dhcp_state(void)$/;" f
-_mh_core_push_wps_button       src/mobileap_softap.c   /^int _mh_core_push_wps_button(void)$/;"        f
-_mh_core_reset_port_forwarding_rule    src/mobileap_softap.c   /^int _mh_core_reset_port_forwarding_rule()$/;" f
-_mh_core_set_ip_address        src/mobileap_softap.c   /^int _mh_core_set_ip_address(const char *if_name, const in_addr_t ip)$/;"      f
-_mh_core_set_ipv6_address      src/mobileap_softap.c   /^int _mh_core_set_ipv6_address(const char *if_name, const char *ipv6_addr)$/;" f
-_mh_core_set_mtu       src/mobileap_softap.c   /^int _mh_core_set_mtu(int mtu)$/;"     f
-_mh_core_set_vpn_passthrough_rule      src/mobileap_softap.c   /^int _mh_core_set_vpn_passthrough_rule(int vpn_type, int enable)$/;"   f
-_mh_core_set_wps_pin   src/mobileap_softap.c   /^int _mh_core_set_wps_pin(const char *wps_pin)$/;"     f
-_mh_core_terminate_dhcp_server src/mobileap_softap.c   /^int _mh_core_terminate_dhcp_server(void)$/;"  f
-_mh_core_terminate_dns64       src/mobileap_softap.c   /^int _mh_core_terminate_dns64(void)$/;"        f
-_mh_core_terminate_nat64       src/mobileap_softap.c   /^int _mh_core_terminate_nat64(void)$/;"        f
-_mobileap_clear_ipv6_state     src/mobileap.c  /^gboolean _mobileap_clear_ipv6_state(int state)$/;"    f
-_mobileap_clear_state  src/mobileap.c  /^gboolean _mobileap_clear_state(int state)$/;" f
-_mobileap_get_ipv6_state       src/mobileap.c  /^gboolean _mobileap_get_ipv6_state(int state)$/;"      f
-_mobileap_is_disabled  src/mobileap.c  /^gboolean _mobileap_is_disabled(void)$/;"      f
-_mobileap_is_enabled   src/mobileap.c  /^gboolean _mobileap_is_enabled(int state)$/;"  f
-_mobileap_is_enabled_by_type   src/mobileap.c  /^gboolean _mobileap_is_enabled_by_type(mobile_ap_type_e type)$/;"      f
-_mobileap_set_ipv6_state       src/mobileap.c  /^gboolean _mobileap_set_ipv6_state(int state)$/;"      f
-_mobileap_set_state    src/mobileap.c  /^gboolean _mobileap_set_state(int state)$/;"   f
-_open_ipv6_network     src/mobileap_network.c  /^int _open_ipv6_network(void)$/;"      f
-_open_network  src/mobileap_network.c  /^int _open_network(void)$/;"   f
-_register_vconf_cb     src/mobileap_handler.c  /^void _register_vconf_cb(void *user_data)$/;"  f
-_register_wifi_station_handler src/mobileap_softap.c   /^void _register_wifi_station_handler(void)$/;" f
-_reload_softap_settings        src/mobileap_wifi.c     /^mobile_ap_error_code_e _reload_softap_settings(Tethering *obj, softap_settings_t *settings)$/;"       f
-_reload_softap_settings_for_softap     src/mobileap_wifi.c     /^mobile_ap_error_code_e _reload_softap_settings_for_softap(Softap *obj, softap_settings_t *settings)$/;"       f
-_remove_address        src/mobileap_network.c  /^gboolean _remove_address(const char *if_name, char *ip)$/;"   f
-_remove_ipv6_neigh_proxy       src/mobileap_network.c  /^gboolean _remove_ipv6_neigh_proxy(const char *if_name, const char *ip)$/;"    f
-_remove_nat64_interface        src/mobileap_network.c  /^gboolean _remove_nat64_interface(void)$/;"    f
-_remove_route  src/mobileap_network.c  /^gboolean _remove_route(const char *if_name, char *ip, mobile_ap_address_type_e address_type, int prefix)$/;"  f
-_remove_station_info   src/mobileap_common.c   /^int _remove_station_info(gconstpointer data, GCompareFunc func)$/;"   f
-_remove_station_info_all       src/mobileap_common.c   /^int _remove_station_info_all(mobile_ap_type_e type)$/;"       f
-_send_dbus_station_info        src/mobileap_common.c   /^void _send_dbus_station_info(const char *member, mobile_ap_station_info_t *info)$/;"  f
-_set_hostapd_tx_power  src/mobileap_softap.c   /^int _set_hostapd_tx_power(unsigned int txpower)$/;"   f
-_set_ipv6_masquerade   src/mobileap_network.c  /^gboolean _set_ipv6_masquerade(void)$/;"       f
-_set_masquerade        src/mobileap_network.c  /^gboolean _set_masquerade(void)$/;"    f
-_slist_find_station_by_interface       src/mobileap_common.c   /^gint _slist_find_station_by_interface(gconstpointer a, gconstpointer b)$/;"   f
-_slist_find_station_by_ip_addr src/mobileap_common.c   /^gint _slist_find_station_by_ip_addr(gconstpointer a, gconstpointer b)$/;"     f
-_slist_find_station_by_mac     src/mobileap_common.c   /^gint _slist_find_station_by_mac(gconstpointer a, gconstpointer b)$/;" f
-_sp_timeout_handler    src/mobileap_handler.c  /^int _sp_timeout_handler(alarm_id_t alarm_id, void *user_param)$/;"    f
-_start_timeout_cb      src/mobileap_handler.c  /^void _start_timeout_cb(mobile_ap_type_e type, time_t end_time)$/;"    f
-_station_info_foreach  src/mobileap_common.c   /^GVariant * _station_info_foreach()$/;"        f
-_stop_timeout_cb       src/mobileap_handler.c  /^void _stop_timeout_cb(mobile_ap_type_e type)$/;"      f
-_terminate_mobileap_agent      src/mobileap.c  /^gboolean _terminate_mobileap_agent(gpointer user_data)$/;"    f
-_unblock_device_sleep  src/mobileap.c  /^void _unblock_device_sleep(void)$/;"  f
-_unregister_vconf_cb   src/mobileap_handler.c  /^void _unregister_vconf_cb(void)$/;"   f
-_unregister_wifi_station_handler       src/mobileap_softap.c   /^void _unregister_wifi_station_handler(void)$/;"       f
-_unset_ipv6_masquerade src/mobileap_network.c  /^gboolean _unset_ipv6_masquerade(void)$/;"     f
-_unset_masquerade      src/mobileap_network.c  /^gboolean _unset_masquerade(void)$/;"  f
-_update_connected_noti src/mobileap_notification.c     /^int _update_connected_noti(mobile_ap_type_e type, int count)$/;"      f
-_update_station_count  src/mobileap_common.c   /^void _update_station_count(int count)$/;"     f
-_wifi_direct_state_cb  src/mobileap_wifi.c     /^static void _wifi_direct_state_cb(int error_code, wifi_direct_device_state_e state, void *user_data)$/;"      f       file:
-activate_wifi_direct   src/mobileap_p2p.c      /^static int activate_wifi_direct(request_data_t *request_data)$/;"     f       file:
-activated_cb   include/mobileap_wfd.h  /^      void (*activated_cb) (int error, void *user_data);$/;"  m       struct:__anon19
-activated_cb_user_data include/mobileap_wfd.h  /^      void *activated_cb_user_data;$/;"       m       struct:__anon19
-address_type   include/mobileap_softap.h       /^      mobile_ap_address_type_e address_type;$/;"      m       struct:__anon3
-alarm_id       src/mobileap_handler.c  /^      alarm_id_t alarm_id;$/;"        m       struct:__anon28 file:
-allow_bt_tethering     src/mobileap_common.c   /^static bool allow_bt_tethering = true;$/;"    v       file:
-allow_usb_tethering    src/mobileap_common.c   /^static bool allow_usb_tethering = true;$/;"   v       file:
-allow_wifi_tethering   src/mobileap_common.c   /^static bool allow_wifi_tethering = true;$/;"  v       file:
-bssid  include/mobileap_softap.h       /^      char bssid[MOBILE_AP_MAX_WIFI_STA][MOBILE_AP_STR_INFO_LEN];$/;" m       struct:__anon4
-bt_tethering_id        src/mobileap_common.c   /^int bt_tethering_id = 0;$/;"  v
-c_prof src/mobileap_network.c  /^static tethering_cellular_profile_s c_prof = {NULL, __NO_SERVICE};$/;"        v       file:
-callback_data  src/mobileap_p2p.c      /^static wfd_callback_t callback_data = {$/;"   v       file:
-cancellable    src/gdbus/mobileap_dbus.c       /^      GCancellable *cancellable;$/;"  m       struct:__anon34 file:
-cb     include/mobileap_softap.h       /^      vconf_callback_fn cb;$/;"       m       struct:__anon5
-changed_state_t        include/mobileap_handler.h      /^} changed_state_t;$/;"        t       typeref:struct:__anon20
-channel        include/mobileap_softap.h       /^      int channel;$/;"        m       struct:__anon3
-channel        src/mobileap_p2p.c      /^      int channel;                           \/* Channel          *\/$/;"     m       struct:__anon24 file:
-conn   src/mobileap_usb.c      /^static GDBusConnection *conn = NULL;$/;"      v       file:
-conn_sig_id    src/mobileap.c  /^guint conn_sig_id = 0;$/;"    v
-connected      include/mobileap_dbus.h /^      void (*connected)(const char *path);$/;"        m       struct:__anon21
-connected_noti_id      src/mobileap_notification.c     /^static int connected_noti_id = 0;$/;" v       file:
-connection     src/gdbus/mobileap_dbus.c       /^      GDBusConnection *connection;$/;"        m       struct:__anon34 file:
-connection     src/mobileap_network.c  /^static connection_h connection = NULL;$/;"    v       file:
-connection_cb  include/mobileap_wfd.h  /^      void (*connection_cb)(GVariant *parameters, void *user_data);$/;"       m       struct:__anon19
-connection_cb_user_data        include/mobileap_wfd.h  /^      void *connection_cb_user_data;$/;"      m       struct:__anon19
-connman_service_subscribe_id   src/gdbus/mobileap_dbus.c       /^static guint connman_service_subscribe_id;$/;"        v       file:
-connman_technology_subscribe_id        src/gdbus/mobileap_dbus.c       /^static guint connman_technology_subscribe_id;$/;"     v       file:
-deactivated_cb include/mobileap_wfd.h  /^      void (*deactivated_cb)(int error, void *user_data);$/;" m       struct:__anon19
-deactivated_cb_user_data       include/mobileap_wfd.h  /^      void *deactivated_cb_user_data;$/;"     m       struct:__anon19
-deleted_sig_id src/mobileap.c  /^guint deleted_sig_id = 0;$/;" v
-device_name    src/mobileap_network.c  /^      char *device_name;$/;"  m       struct:__anon31 file:
-disconnected   include/mobileap_dbus.h /^      void (*disconnected)();$/;"     m       struct:__anon21
-disconnection_cb       include/mobileap_wfd.h  /^      void (*disconnection_cb)(GVariant *parameters, void *user_data);$/;"    m       struct:__anon19
-disconnection_cb_user_data     include/mobileap_wfd.h  /^      void *disconnection_cb_user_data;$/;"   m       struct:__anon19
-dns    src/mobileap_network.c  /^      char *dns;$/;"  m       struct:__anon32 file:
-dns64_pid      src/mobileap_softap.c   /^static pid_t dns64_pid = 0;$/;"       v       file:
-dns_addr       src/mobileap_softap.c   /^static char dns_addr[INET_ADDRSTRLEN] = "0.0.0.0";$/;"        v       file:
-dnsmasq_pid    src/mobileap_softap.c   /^static pid_t dnsmasq_pid = 0;$/;"     v       file:
-dpm    src/mobileap_common.c   /^device_policy_manager_h dpm = NULL;$/;"       v
-end_time       src/mobileap_handler.c  /^      time_t end_time;$/;"    m       struct:__anon28 file:
-func   src/mobileap_handler.c  /^      GSourceFunc func;$/;"   m       struct:__anon28 file:
-g_context      src/mobileap_bluetooth.c        /^static GDBusMethodInvocation *g_context = NULL;$/;"   v       file:
-g_context      src/mobileap_p2p.c      /^static GDBusMethodInvocation *g_context = NULL;$/;"   v       file:
-g_context      src/mobileap_usb.c      /^static GDBusMethodInvocation *g_context = NULL;$/;"   v       file:
-g_context      src/mobileap_wifi.c     /^static GDBusMethodInvocation *g_context = NULL;$/;"   v       file:
-gateway_address        include/mobileap.h      /^      char gateway_address[MOBILE_AP_STR_INFO_LEN];   \/**< gateway address of interface *\/$/;"      m       struct:__anon16
-get_rx_data_usage      mobileap-agent-cmd.sh   /^get_rx_data_usage()$/;"       f
-get_softap_settings    unittest/unittest_common.cpp    /^GVariant *get_softap_settings(const char *ssid, const char *passphrase, int sec_type,$/;"     f
-get_state_str  src/mobileap_wfd.c      /^static char *get_state_str(int state)$/;"     f       file:
-get_tx_data_usage      mobileap-agent-cmd.sh   /^get_tx_data_usage()$/;"       f
-global_address src/mobileap_network.c  /^      char *global_address;$/;"       m       struct:__anon32 file:
-group_created_cb       include/mobileap_wfd.h  /^      void (*group_created_cb)(int error, void *user_data);$/;"       m       struct:__anon19
-group_created_cb_user_data     include/mobileap_wfd.h  /^      void *group_created_cb_user_data;$/;"   m       struct:__anon19
-group_destroyed_cb     include/mobileap_wfd.h  /^      void (*group_destroyed_cb)(int error, void *user_data);$/;"     m       struct:__anon19
-group_destroyed_cb_user_data   include/mobileap_wfd.h  /^      void *group_destroyed_cb_user_data;$/;" m       struct:__anon19
-handle src/mobileap_network.c  /^      connection_profile_h handle;$/;"        m       struct:__anon30 file:
-hide_mode      include/mobileap_softap.h       /^      int hide_mode;$/;"      m       struct:__anon3
-hostapd_ctrl_fd        src/mobileap_softap.c   /^static int hostapd_ctrl_fd = 0;$/;"   v       file:
-hostapd_io_channel     src/mobileap_softap.c   /^static GIOChannel *hostapd_io_channel = NULL;$/;"     v       file:
-hostapd_io_source      src/mobileap_softap.c   /^static guint hostapd_io_source = 0;$/;"       v       file:
-hostapd_monitor_fd     src/mobileap_softap.c   /^static int hostapd_monitor_fd = 0;$/;"        v       file:
-hostapd_pid    src/mobileap_softap.c   /^static pid_t hostapd_pid = 0;$/;"     v       file:
-hostname       include/mobileap.h      /^      char *hostname;$/;"     m       struct:__anon15
-if_name        src/mobileap_network.c  /^      char *if_name;$/;"      m       struct:__anon32 file:
-ifr6_addr      src/mobileap_softap.c   /^      struct in6_addr ifr6_addr;$/;"  m       struct:in6_ifreq        typeref:struct:in6_ifreq::in6_addr      file:
-ifr6_ifindex   src/mobileap_softap.c   /^      unsigned int ifr6_ifindex;$/;"  m       struct:in6_ifreq        file:
-ifr6_prefixlen src/mobileap_softap.c   /^      __u32 ifr6_prefixlen;$/;"       m       struct:in6_ifreq        file:
-in6_ifreq      src/mobileap_softap.c   /^struct in6_ifreq {$/;"        s       file:
-in_progress    src/mobileap_usb.c      /^static gboolean in_progress = FALSE;$/;"      v       file:
-info   src/mobileap_bluetooth.c        /^      bt_device_info_s *info;$/;"     m       struct:__anon27 file:
-init_count     src/mobileap.c  /^static int init_count = 0;$/;"        v       file:
-init_p2p_events        src/mobileap_p2p.c      /^static void init_p2p_events(void)$/;" f       file:
-input_interface        src/mobileap_network.c  /^      char *input_interface;$/;"      m       struct:__anon33 file:
-interface      include/mobileap.h      /^      mobile_ap_type_e interface;                     \/**< interface type *\/$/;"    m       struct:__anon15
-interface      include/mobileap.h      /^      mobile_ap_type_e interface;                     \/**< interface type *\/$/;"    m       struct:__anon16
-interface      src/gdbus/mobileap_dbus.c       /^      const char *interface;$/;"      m       struct:__anon35 file:
-interface_name include/mobileap.h      /^      char interface_name[MOBILE_AP_STR_INFO_LEN];            \/**< interface alphanumeric name *\/$/;"       m       struct:__anon16
-intf_ip        src/mobileap_bluetooth.c        /^      const in_addr_t intf_ip;$/;"    m       struct:__anon27 file:
-intf_name      src/mobileap_bluetooth.c        /^      char *intf_name;$/;"    m       struct:__anon27 file:
-ip     include/mobileap.h      /^      char ip[MOBILE_AP_STR_INFO_LEN];                \/**< assigned IP address *\/$/;"       m       struct:__anon15
-ip     src/mobileap_network.c  /^      char *ip;$/;"   m       struct:__anon31 file:
-ip_addr        include/mobileap_softap.h       /^      uint32_t ip_addr;$/;"   m       struct:__anon3
-ip_address     include/mobileap.h      /^      char ip_address[MOBILE_AP_STR_INFO_LEN];                \/**< assigned ip addresss to interface *\/$/;" m       struct:__anon16
-ip_assigned_cb include/mobileap_wfd.h  /^      void (*ip_assigned_cb)(GVariant *parameters, void *user_data);$/;"      m       struct:__anon19
-ip_assigned_cb_user_data       include/mobileap_wfd.h  /^      void *ip_assigned_cb_user_data;$/;"     m       struct:__anon19
-iptables_rule_e        include/mobileap_iptables.h     /^} iptables_rule_e;$/;"        t       typeref:enum:__anon22
-iptables_vpn_passthorugh_e     include/mobileap_iptables.h     /^} iptables_vpn_passthorugh_e;$/;"     t       typeref:enum:__anon23
-ipv6_addr      src/mobileap_bluetooth.c        /^      char *ipv6_addr;$/;"    m       struct:__anon27 file:
-ipv6_neigh_proxy_info  src/mobileap_network.c  /^} ipv6_neigh_proxy_info;$/;"  t       typeref:struct:__anon31 file:
-ipv6_net_info  src/mobileap_network.c  /^static ipv6_network_info_s ipv6_net_info = {NULL, NULL, NULL, NULL, FALSE};$/;"       v       file:
-ipv6_network_info_s    src/mobileap_network.c  /^} ipv6_network_info_s;$/;"    t       typeref:struct:__anon32 file:
-is_softap      src/mobileap_wifi.c     /^static gboolean is_softap = FALSE;$/;"        v       file:
-key    include/mobileap_softap.h       /^      char key[MOBILE_AP_WIFI_KEY_MAX_LEN + 1];$/;"   m       struct:__anon3
-key    include/mobileap_softap.h       /^      const char *key;$/;"    m       struct:__anon5
-key    src/mobileap_p2p.c      /^      char *key;                             \/* Passphrase       *\/$/;"     m       struct:__anon24 file:
-mac    include/mobileap.h      /^      char mac[MOBILE_AP_STR_INFO_LEN];               \/**< MAC Address *\/$/;"       m       struct:__anon15
-mac_addr       include/mobileap_softap.h       /^      char *mac_addr;$/;"     m       struct:__anon7
-mac_filter     include/mobileap_softap.h       /^      int mac_filter;$/;"     m       struct:__anon3
-main   src/mobileap_main.c     /^int main(int argc, char **argv)$/;"   f
-main   unittest/unittest.cpp   /^int main(int argc, char **argv) {$/;" f
-main_loop      unittest/unittest_common.cpp    /^GMainLoop *main_loop = NULL;$/;"      v
-mainloop       src/mobileap.c  /^GMainLoop *mainloop = NULL;$/;"       v
-manager_server src/mobileap.c  /^GDBusObjectManagerServer *manager_server = NULL;$/;"  v
-max_sta        include/mobileap_softap.h       /^      int max_sta;$/;"        m       struct:__anon3
-max_sta        src/mobileap_p2p.c      /^      int max_sta;                           \/* Maximum Stations *\/$/;"     m       struct:__anon24 file:
-member src/gdbus/mobileap_dbus.c       /^      const char *member;$/;" m       struct:__anon35 file:
-mobile_ap_address_type_e       include/mobileap.h      /^} mobile_ap_address_type_e;$/;"       t       typeref:enum:__anon13
-mobile_ap_data_packet_usage_t  include/mobileap.h      /^} mobile_ap_data_packet_usage_t;$/;"  t       typeref:struct:__anon14
-mobile_ap_device_info_t        include/mobileap.h      /^} mobile_ap_device_info_t;$/;"        t       typeref:struct:__anon17
-mobile_ap_drv_interface_e      include/mobileap_softap.h       /^} mobile_ap_drv_interface_e;$/;"      t       typeref:enum:__anon6
-mobile_ap_error_code_e include/mobileap.h      /^} mobile_ap_error_code_e;$/;" t       typeref:enum:__anon10
-mobile_ap_event_e      include/mobileap.h      /^} mobile_ap_event_e;$/;"      t       typeref:enum:__anon11
-mobile_ap_interface_info_t     include/mobileap.h      /^} mobile_ap_interface_info_t;$/;"     t       typeref:struct:__anon16
-mobile_ap_ipv6_scope_e include/mobileap_network.h      /^} mobile_ap_ipv6_scope_e;$/;" t       typeref:enum:__anon8
-mobile_ap_sig_e        include/mobileap.h      /^} mobile_ap_sig_e;$/;"        t       typeref:enum:__anon9
-mobile_ap_station_info_t       include/mobileap.h      /^} mobile_ap_station_info_t;$/;"       t       typeref:struct:__anon15
-mobile_ap_type_e       include/mobileap.h      /^} mobile_ap_type_e;$/;"       t       typeref:enum:__anon12
-mobileap_dbus  src/gdbus/mobileap_dbus.c       /^static mobileap_dbus_data mobileap_dbus = {NULL, NULL, 0, NULL};$/;"  v       file:
-mobileap_dbus_data     src/gdbus/mobileap_dbus.c       /^} mobileap_dbus_data;$/;"     t       typeref:struct:__anon34 file:
-mobileap_dbus_deinit   src/gdbus/mobileap_dbus.c       /^void mobileap_dbus_deinit(void)$/;"   f
-mobileap_dbus_deinit_network_signals   src/gdbus/mobileap_dbus.c       /^void mobileap_dbus_deinit_network_signals(void)$/;"   f
-mobileap_dbus_deinit_wfd_signals       src/gdbus/mobileap_dbus.c       /^void mobileap_dbus_deinit_wfd_signals(void)$/;"       f
-mobileap_dbus_emit_signal      src/gdbus/mobileap_dbus.c       /^gboolean mobileap_dbus_emit_signal(const gchar *destination_bus_name,$/;"     f
-mobileap_dbus_init     src/gdbus/mobileap_dbus.c       /^int mobileap_dbus_init(void)$/;"      f
-mobileap_dbus_init_network_signals     src/gdbus/mobileap_dbus.c       /^int mobileap_dbus_init_network_signals(void)$/;"      f
-mobileap_dbus_init_wfd_signals src/gdbus/mobileap_dbus.c       /^int mobileap_dbus_init_wfd_signals(void)$/;"  f
-mobileap_gdbus_method_async    src/gdbus/mobileap_dbus.c       /^gboolean mobileap_gdbus_method_async(const char *dest,$/;"    f
-mobileap_gdbus_method_sync     src/gdbus/mobileap_dbus.c       /^GVariant *mobileap_gdbus_method_sync(const char *dest,$/;"    f
-mobileap_gdbus_pending_call_ref        src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_pending_call_ref(void)$/;"        f
-mobileap_gdbus_pending_call_unref      src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_pending_call_unref(void)$/;"      f
-mobileap_gdbus_register_network_callbacks      src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_register_network_callbacks(networkCallbacks *callbacks)$/;"       f
-mobileap_gdbus_register_wfd_client_callbacks   src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_register_wfd_client_callbacks(wfd_client_callback callbacks)$/;"  f
-mobileap_gdbus_unregister_network_callbacks    src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_unregister_network_callbacks(void)$/;"    f
-mobileap_gdbus_unregister_wfd_client_callbacks src/gdbus/mobileap_dbus.c       /^void mobileap_gdbus_unregister_wfd_client_callbacks(void)$/;" f
-mobileap_ipv6_state    src/mobileap.c  /^int mobileap_ipv6_state = MOBILE_AP_STATE_NONE;$/;"   v
-mobileap_main  src/mobileap.c  /^int mobileap_main(void)$/;"   f
-mobileap_state src/mobileap.c  /^int mobileap_state = MOBILE_AP_STATE_NONE;$/;"        v
-mode   include/mobileap_softap.h       /^      char mode[MOBILE_AP_WIFI_MODE_MAX_LEN + 1];$/;" m       struct:__anon3
-nat64_pid      src/mobileap_softap.c   /^static pid_t nat64_pid = 0;$/;"       v       file:
-net_timeout_id src/mobileap_network.c  /^static guint net_timeout_id;$/;"      v       file:
-networkCallbacks       include/mobileap_dbus.h /^} networkCallbacks;$/;"       t       typeref:struct:__anon21
-network_cb     src/gdbus/mobileap_dbus.c       /^static networkCallbacks *network_cb = NULL;$/;"       v       file:
-network_property_changed_signal_handler        src/gdbus/mobileap_dbus.c       /^static void network_property_changed_signal_handler(GDBusConnection *connection,$/;"  f       file:
-network_technology_signal_handler      src/gdbus/mobileap_dbus.c       /^static void network_technology_signal_handler(GDBusConnection *connection,$/;"        f       file:
-new_dest_ip    src/mobileap_network.c  /^      char *new_dest_ip;$/;"  m       struct:__anon33 file:
-new_dest_port  src/mobileap_network.c  /^      unsigned short new_dest_port;$/;"       m       struct:__anon33 file:
-number include/mobileap.h      /^      unsigned short number;                  \/**< Number of connected device *\/$/;"        m       struct:__anon17
-number include/mobileap_softap.h       /^      unsigned int number;    \/* Number of connected device *\/$/;"  m       struct:__anon4
-obj    include/mobileap_handler.h      /^      void *obj;$/;"  m       struct:__anon20
-obj    src/mobileap_network.c  /^static Tethering *obj = NULL;$/;"     v       file:
-obj    unittest/unittest.cpp   /^              Tethering *obj;$/;"     m       class:MobileAP  file:
-obj_softap_settings    src/mobileap_wifi.c     /^static softap_settings_t obj_softap_settings = {"", "", "", "", 0, 0, 0, 0, 0, 0, 0};$/;"     v       file:
-object src/mobileap_p2p.c      /^      Tethering *object;$/;"  m       struct:__anon26 file:
-on_bus_acquired_cb     src/mobileap.c  /^static void on_bus_acquired_cb(GDBusConnection *connection, const gchar *name,$/;"    f       file:
-on_name_acquired_cb    src/mobileap.c  /^static void on_name_acquired_cb(GDBusConnection *connection, const gchar *name,$/;"   f       file:
-on_name_lost_db        src/mobileap.c  /^static void on_name_lost_db(GDBusConnection *conn, const gchar *name,$/;"     f       file:
-online include/mobileap_dbus.h /^      void (*online)();$/;"   m       struct:__anon21
-org_dest_ip    src/mobileap_network.c  /^      char *org_dest_ip;$/;"  m       struct:__anon33 file:
-org_dest_port  src/mobileap_network.c  /^      unsigned short org_dest_port;$/;"       m       struct:__anon33 file:
-owner_id       src/mobileap.c  /^guint owner_id = 0;$/;"       v
-p2p_activated  src/mobileap_p2p.c      /^static void p2p_activated(int error, void *user_data)$/;"     f       file:
-p2p_connection src/mobileap_p2p.c      /^static void p2p_connection(GVariant *parameters, void *user_data)$/;" f       file:
-p2p_deactivated        src/mobileap_p2p.c      /^static void p2p_deactivated(int error, void *user_data)$/;"   f       file:
-p2p_disconnection      src/mobileap_p2p.c      /^static void p2p_disconnection(GVariant *parameters, void *user_data)$/;"      f       file:
-p2p_group_created      src/mobileap_p2p.c      /^static void p2p_group_created(int error, void *user_data)$/;" f       file:
-p2p_group_destoyed     src/mobileap_p2p.c      /^static void p2p_group_destoyed(int error, void *user_data)$/;"        f       file:
-p2p_ip_assigned        src/mobileap_p2p.c      /^static void p2p_ip_assigned(GVariant *parameters, void *user_data)$/;"        f       file:
-p2p_settings   src/mobileap_p2p.c      /^static p2p_settings_t p2p_settings = {0, NULL, NULL, 0, 0};$/;"       v       file:
-p2p_settings_t src/mobileap_p2p.c      /^} p2p_settings_t;$/;" t       typeref:struct:__anon24 file:
-p2p_tethering_error_timeout_id src/mobileap_p2p.c      /^static guint p2p_tethering_error_timeout_id = 0;$/;"  v       file:
-p2p_tethering_rq_e     src/mobileap_p2p.c      /^} p2p_tethering_rq_e;$/;"     t       typeref:enum:__anon25   file:
-pdp_rx_bytes   include/mobileap.h      /^      unsigned long long pdp_rx_bytes;        \/**< packet data received *\/$/;"      m       struct:__anon14
-pdp_tx_bytes   include/mobileap.h      /^      unsigned long long pdp_tx_bytes;        \/**< packet data transmitted *\/$/;"   m       struct:__anon14
-port_forward_info      src/mobileap_network.c  /^static GSList *port_forward_info = NULL;$/;"  v       file:
-port_forward_info_s    src/mobileap_network.c  /^} port_forward_info_s;$/;"    t       typeref:struct:__anon33 file:
-prefix src/mobileap_network.c  /^      char *prefix;$/;"       m       struct:__anon32 file:
-prev_wifi_on   src/mobileap_wifi.c     /^static gboolean prev_wifi_on = FALSE;$/;"     v       file:
-proto  src/mobileap_network.c  /^      char *proto;$/;"        m       struct:__anon33 file:
-ref_count      src/gdbus/mobileap_dbus.c       /^      int ref_count;$/;"      m       struct:__anon34 file:
-request_data_t src/mobileap_p2p.c      /^} request_data_t;$/;" t       typeref:struct:__anon26 file:
-request_type   src/mobileap_p2p.c      /^      p2p_tethering_rq_e request_type;$/;"    m       struct:__anon26 file:
-run_gmain_loop unittest/unittest_common.cpp    /^void run_gmain_loop(int interval)$/;" f
-security_type  include/mobileap_softap.h       /^      softap_security_type_e security_type;$/;"       m       struct:__anon3
-security_type  src/mobileap_p2p.c      /^      softap_security_type_e security_type;  \/* Security Type    *\/$/;"     m       struct:__anon24 file:
-security_type_str      src/mobileap_softap.c   /^static char *security_type_str[SOFTAP_SECURITY_TYPE_MAX] = {$/;"      v       file:
-set_p2p_settings       src/mobileap_p2p.c      /^static bool set_p2p_settings(gchar *ssid, gchar *key, gint channel)$/;"       f       file:
-sobj   unittest/unittest.cpp   /^              Softap *sobj;$/;"       m       class:MobileAP  file:
-softap_device_info_t   include/mobileap_softap.h       /^} softap_device_info_t;$/;"   t       typeref:struct:__anon4
-softap_disable src/mobileap_wifi.c     /^gboolean softap_disable(Softap *obj,$/;"      f
-softap_disable_dhcp    src/mobileap_wifi.c     /^gboolean softap_disable_dhcp(Softap *obj,$/;" f
-softap_enable  src/mobileap_wifi.c     /^gboolean softap_enable(Softap *obj, GDBusMethodInvocation *context, GVariant *settings)$/;"   f
-softap_enable_dhcp     src/mobileap_wifi.c     /^gboolean softap_enable_dhcp(Softap *obj,$/;"  f
-softap_enable_dhcp_with_range  src/mobileap_wifi.c     /^gboolean softap_enable_dhcp_with_range(Softap *obj,$/;"       f
-softap_get_dhcp_state  src/mobileap_wifi.c     /^gboolean softap_get_dhcp_state(Softap *obj, GDBusMethodInvocation *context)$/;"       f
-softap_get_passphrase  src/mobileap_wifi.c     /^gboolean softap_get_passphrase(Softap *obj,$/;"       f
-softap_get_station_info        src/mobileap_wifi.c     /^gboolean softap_get_station_info(Softap *obj,$/;"     f
-softap_obj     src/mobileap.c  /^Softap *softap_obj = NULL;$/;"        v
-softap_push_wps_button src/mobileap_wifi.c     /^gboolean softap_push_wps_button(Softap *obj, GDBusMethodInvocation *context)$/;"      f
-softap_reload_settings src/mobileap_wifi.c     /^gboolean softap_reload_settings(Softap *obj,$/;"      f
-softap_security_type_e include/mobileap_softap.h       /^} softap_security_type_e;$/;" t       typeref:enum:__anon2
-softap_set_wps_pin     src/mobileap_wifi.c     /^gboolean softap_set_wps_pin(Softap *obj,$/;"  f
-softap_settings_t      include/mobileap_softap.h       /^} softap_settings_t;$/;"      t       typeref:struct:__anon3
-softap_wireless_mode_e include/mobileap_wifi.h /^} softap_wireless_mode_e;$/;" t       typeref:enum:__anon1
-sp_timeout_handler     src/mobileap_handler.c  /^static sp_timeout_handler_t sp_timeout_handler[MOBILE_AP_TYPE_MAX] = {$/;"    v       file:
-sp_timeout_handler_t   src/mobileap_handler.c  /^} sp_timeout_handler_t;$/;"   t       typeref:struct:__anon28 file:
-ssid   include/mobileap_softap.h       /^      char ssid[MOBILE_AP_WIFI_SSID_MAX_LEN + 1];$/;" m       struct:__anon3
-ssid   src/mobileap_p2p.c      /^      char *ssid;                            \/* Device Name      *\/$/;"     m       struct:__anon24 file:
-sta_info       include/mobileap.h      /^      mobile_ap_station_info_t sta_info[MOBILE_AP_MAX_CONNECTED_STA];$/;"     m       struct:__anon17
-sta_timer_list src/mobileap_softap.c   /^GSList *sta_timer_list = NULL;$/;"    v
-sta_timer_t    include/mobileap_softap.h       /^} sta_timer_t;$/;"    t       typeref:struct:__anon7
-state  include/mobileap_handler.h      /^      unsigned int state;$/;" m       struct:__anon20
-state  src/mobileap_network.c  /^      gboolean state;$/;"     m       struct:__anon32 file:
-station_list   src/mobileap_common.c   /^static GSList *station_list = NULL;$/;"       v       file:
-sub_id src/gdbus/mobileap_dbus.c       /^      int sub_id;$/;" m       struct:__anon35 file:
-subnet_mask    include/mobileap.h      /^      char subnet_mask[MOBILE_AP_STR_INFO_LEN];       \/**< subnet mask of interface *\/$/;"  m       struct:__anon16
-subscription_id        src/mobileap_usb.c      /^static guint subscription_id = 0;$/;" v       file:
-svc_type       src/mobileap_network.c  /^      tethering_cellular_service_type_e svc_type;$/;" m       struct:__anon30 file:
-tech_connected include/mobileap_dbus.h /^      void (*tech_connected)(const char *path, gboolean powered);$/;" m       struct:__anon21
-teth_gdbus_conn        src/mobileap.c  /^GDBusConnection *teth_gdbus_conn = NULL;$/;"  v
-tethered_prof  src/mobileap_network.c  /^static connection_profile_h tethered_prof = NULL;$/;" v       file:
-tethering_add_custom_port_filtering_rule       src/mobileap_wifi.c     /^gboolean tethering_add_custom_port_filtering_rule(Tethering *obj,$/;" f
-tethering_add_port_filtering_rule      src/mobileap_wifi.c     /^gboolean tethering_add_port_filtering_rule(Tethering *obj,$/;"        f
-tethering_add_port_forwarding_rule     src/mobileap_wifi.c     /^gboolean tethering_add_port_forwarding_rule(Tethering *obj, GDBusMethodInvocation *context,$/;"       f
-tethering_cellular_profile_s   src/mobileap_network.c  /^} tethering_cellular_profile_s;$/;"   t       typeref:struct:__anon30 file:
-tethering_cellular_service_type_e      src/mobileap_network.c  /^} tethering_cellular_service_type_e;$/;"      t       typeref:enum:__anon29   file:
-tethering_change_mac   src/mobileap_wifi.c     /^gboolean tethering_change_mac(Tethering *obj,$/;"     f
-tethering_dhcp_range   src/mobileap_wifi.c     /^gboolean tethering_dhcp_range(Tethering *obj,$/;"     f
-tethering_disable      src/mobileap_common.c   /^gboolean tethering_disable(Tethering *obj, GDBusMethodInvocation *context)$/;"        f
-tethering_disable_bt_tethering src/mobileap_bluetooth.c        /^gboolean tethering_disable_bt_tethering(Tethering *obj,$/;"   f
-tethering_disable_usb_tethering        src/mobileap_usb.c      /^gboolean tethering_disable_usb_tethering(Tethering *obj,$/;"  f
-tethering_disable_wifi_tethering       src/mobileap_wifi.c     /^gboolean tethering_disable_wifi_tethering(Tethering *obj,$/;" f
-tethering_enable_bt_tethering  src/mobileap_bluetooth.c        /^gboolean tethering_enable_bt_tethering(Tethering *obj,$/;"    f
-tethering_enable_dhcp  src/mobileap_wifi.c     /^gboolean tethering_enable_dhcp(Tethering *obj,$/;"    f
-tethering_enable_port_filtering        src/mobileap_wifi.c     /^gboolean tethering_enable_port_filtering(Tethering *obj,$/;"  f
-tethering_enable_port_forwarding       src/mobileap_wifi.c     /^gboolean tethering_enable_port_forwarding(Tethering *obj,$/;" f
-tethering_enable_usb_tethering src/mobileap_usb.c      /^gboolean tethering_enable_usb_tethering(Tethering *obj,$/;"   f
-tethering_enable_wifi_tethering        src/mobileap_wifi.c     /^gboolean tethering_enable_wifi_tethering(Tethering *obj,$/;"  f
-tethering_get_data_packet_usage        src/mobileap_common.c   /^gboolean tethering_get_data_packet_usage(Tethering *obj,$/;"  f
-tethering_get_hostapd_tx_power src/mobileap_wifi.c     /^gboolean tethering_get_hostapd_tx_power(Tethering *obj,$/;"   f
-tethering_get_station_info     src/mobileap_common.c   /^gboolean tethering_get_station_info(Tethering *obj,$/;"       f
-tethering_get_wifi_tethering_passphrase        src/mobileap_wifi.c     /^gboolean tethering_get_wifi_tethering_passphrase(Tethering *obj,$/;"  f
-tethering_obj  src/mobileap.c  /^Tethering *tethering_obj = NULL;$/;"  v
-tethering_p2p_disable  src/mobileap_p2p.c      /^gboolean tethering_p2p_disable(Tethering *obj,$/;"    f
-tethering_p2p_enable   src/mobileap_p2p.c      /^gboolean tethering_p2p_enable(Tethering *obj,$/;"     f
-tethering_push_wps_button      src/mobileap_wifi.c     /^gboolean tethering_push_wps_button(Tethering *obj,$/;"        f
-tethering_reload_wifi_settings src/mobileap_wifi.c     /^gboolean tethering_reload_wifi_settings(Tethering *obj,$/;"   f
-tethering_reset_port_forwarding_rule   src/mobileap_wifi.c     /^gboolean tethering_reset_port_forwarding_rule(Tethering *obj,$/;"     f
-tethering_set_hostapd_tx_power src/mobileap_wifi.c     /^gboolean tethering_set_hostapd_tx_power(Tethering *obj,$/;"   f
-tethering_set_mtu      src/mobileap_wifi.c     /^gboolean tethering_set_mtu(Tethering *obj,$/;"        f
-tethering_set_vpn_passthrough_rule     src/mobileap_wifi.c     /^gboolean tethering_set_vpn_passthrough_rule(Tethering *obj,$/;"       f
-tethering_set_wifi_tethering_passphrase        src/mobileap_wifi.c     /^gboolean tethering_set_wifi_tethering_passphrase(Tethering *obj,$/;"  f
-tethering_set_wps_pin  src/mobileap_wifi.c     /^gboolean tethering_set_wps_pin(Tethering *obj,$/;"    f
-tid    include/mobileap_softap.h       /^      guint tid;$/;"  m       struct:__anon7
-timeout_cb     unittest/unittest_common.cpp    /^static gboolean timeout_cb(gpointer data)$/;" f       file:
-timeout_id     unittest/unittest_common.cpp    /^guint timeout_id;$/;" v
-timeout_noti_id        src/mobileap_notification.c     /^static int timeout_noti_id = 0;$/;"   v       file:
-tizen_profile_t        include/mobileap.h      /^} tizen_profile_t;$/;"        t       typeref:enum:__anon18
-tm     include/mobileap.h      /^      time_t tm;      \/**< connection time*\/$/;"    m       struct:__anon15
-usb_client_state       src/mobileap_usb.c      /^static int usb_client_state = 0;$/;"  v       file:
-usb_tethering_id       src/mobileap_common.c   /^int usb_tethering_id = 0;$/;" v
-usbclient_state        src/mobileap_usb.c      /^enum usbclient_state {$/;"    g       file:
-user_data      src/mobileap_handler.c  /^      void *user_data;$/;"    m       struct:__anon28 file:
-value  include/mobileap_softap.h       /^      int *value;$/;" m       struct:__anon5
-vconf_reg_t    include/mobileap_softap.h       /^} vconf_reg_t;$/;"    t       typeref:struct:__anon5
-vendor_elements        include/mobileap_softap.h       /^      char vendor_elements[MOBILE_AP_WIFI_VENDOR_MAX_LEN + 1];$/;"    m       struct:__anon3
-wfd_callback   src/mobileap_wfd.c      /^static wfd_callback_t *wfd_callback = NULL;$/;"       v       file:
-wfd_callback_t include/mobileap_wfd.h  /^} wfd_callback_t;$/;" t       typeref:struct:__anon19
-wfd_client     src/gdbus/mobileap_dbus.c       /^      wfd_client_callback wfd_client;$/;"     m       struct:__anon34 file:
-wfd_client_activate    src/mobileap_wfd.c      /^int wfd_client_activate(void *user_data)$/;"  f
-wfd_client_callback    include/mobileap_dbus.h /^typedef void (*wfd_client_callback)(const gchar *signal,$/;"  t
-wfd_client_create_group        src/mobileap_wfd.c      /^int wfd_client_create_group(gchar *ssid, void *user_data)$/;" f
-wfd_client_dbus_method_call_sync       include/mobileap_dbus.h 64;"    d
-wfd_client_deactivate  src/mobileap_wfd.c      /^int wfd_client_deactivate(void *user_data)$/;"        f
-wfd_client_deinit      src/mobileap_wfd.c      /^void wfd_client_deinit(void)$/;"      f
-wfd_client_deregister_callback src/mobileap_wfd.c      /^void wfd_client_deregister_callback(void)$/;" f
-wfd_client_destroy_group       src/mobileap_wfd.c      /^int wfd_client_destroy_group(void *user_data)$/;"     f
-wfd_client_disconnect_all      src/mobileap_wfd.c      /^int wfd_client_disconnect_all(void *user_data)$/;"    f
-wfd_client_event_handler       src/mobileap_wfd.c      /^static void wfd_client_event_handler(const gchar *signal, GVariant *parameters, void *user_data)$/;"  f       file:
-wfd_client_get_state   src/mobileap_wfd.c      /^int wfd_client_get_state(int *state)$/;"      f
-wfd_client_init        src/mobileap_wfd.c      /^int wfd_client_init(void)$/;" f
-wfd_client_register_callback   src/mobileap_wfd.c      /^void wfd_client_register_callback(wfd_callback_t *callback)$/;"       f
-wfd_client_set_auto_group_removal      src/mobileap_wfd.c      /^int wfd_client_set_auto_group_removal(bool enable)$/;"        f
-wfd_client_set_passphrase      src/mobileap_wfd.c      /^int wfd_client_set_passphrase(gchar *passphrase)$/;"  f
-wfd_client_set_ssid    src/mobileap_wfd.c      /^int wfd_client_set_ssid(gchar *ssid)$/;"      f
-wfd_dbus_method_call_debug     src/gdbus/mobileap_dbus.c       /^GVariant *wfd_dbus_method_call_debug(const char* interface_name,$/;"  f
-wfd_dbus_signal        src/gdbus/mobileap_dbus.c       /^} wfd_dbus_signal[] = {$/;"   v       typeref:struct:__anon35 file:
-wfd_dbus_signal_handler        src/gdbus/mobileap_dbus.c       /^static void wfd_dbus_signal_handler(GDBusConnection *connection,$/;"  f       file:
-wifi_ap_settings       src/mobileap_wifi.c     /^static softap_settings_t wifi_ap_settings = {"", "", "", "", 0, 0, 0, MOBILE_AP_MAX_WIFI_STA, 0, 0, 0};$/;"   v       file:
-wifi_manager   src/mobileap_wifi.c     /^static wifi_manager_h wifi_manager = NULL;$/;"        v       file:
-wifi_recovery_timeout_id       src/mobileap_wifi.c     /^static guint wifi_recovery_timeout_id = 0;$/;"        v       file:
-wifi_settings  src/mobileap_wifi.c     /^static softap_settings_t wifi_settings = {"", "", "", "", 0, 0, 0, 0, 0, 0, 0};$/;"   v       file:
-wifi_tethering_id      src/mobileap_common.c   /^int wifi_tethering_id = 0;$/;"        v