change the function name for enabling/disabling all pkgs 47/75747/1 accepted/tizen/common/20160621.184517 accepted/tizen/ivi/20160622.093648 accepted/tizen/mobile/20160622.093538 accepted/tizen/tv/20160622.093607 accepted/tizen/wearable/20160622.093627 submit/tizen/20160621.063045
authorjongmyeongko <jongmyeong.ko@samsung.com>
Tue, 21 Jun 2016 08:24:42 +0000 (17:24 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Tue, 21 Jun 2016 08:24:42 +0000 (17:24 +0900)
Change-Id: I7a1425dfc38235de55f13d9b5f54b99d5d2285a6
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
inc/app2ext_interface.h
src/app2ext_interface.c

index 3e75fcf..e145191 100644 (file)
@@ -432,8 +432,8 @@ API int app2ext_usr_force_clean_pkg(const char *pkgid, uid_t uid);
  * @brief : This API mount/unmount all entries which are located in external memory
  * @return      error < 0 if fail to start enable/disable
  */
-API int app2ext_enable_external_full_pkg(void);
-API int app2ext_disable_external_full_pkg(void);
+API int app2ext_enable_all_external_pkgs(void);
+API int app2ext_disable_all_external_pkgs(void);
 
 #ifdef __cplusplus
 }
index 89ec0cd..f8f5014 100644 (file)
@@ -280,7 +280,7 @@ int app2ext_disable_external_pkg(const char *pkgid)
        return ret;
 }
 
-int app2ext_enable_external_full_pkg(void)
+int app2ext_enable_all_external_pkgs(void)
 {
        int ret = 0;
        app2ext_handle *handle = NULL;
@@ -303,7 +303,7 @@ int app2ext_enable_external_full_pkg(void)
        return 0;
 }
 
-int app2ext_disable_external_full_pkg(void)
+int app2ext_disable_all_external_pkgs(void)
 {
        int ret = 0;
        app2ext_handle *handle = NULL;