Home
last modified time | relevance | path

Searched refs:installState (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dgt_bundle_manager_service.cpp235 *installState = BUNDLE_INSTALL_OK; in GetInstallState()
241 *installState = BUNDLE_INSTALL_FAIL; in GetInstallState()
246 *installState = bundleInstallMsg_->installState; in GetInstallState()
250 *installState = BUNDLE_INSTALL_FAIL; in GetInstallState()
1149 bundleInstallMsg_->installState = static_cast<InstallState>(installState); in ReportHceInstallCallback()
1151 bundleInstallMsg->installState = bundleInstallMsg_->installState; in ReportHceInstallCallback()
1161 uint8_t errCode, uint8_t installState, char *bundleName, uint8_t process) in ReportHceUninstallCallback() argument
1172 bundleInstallMsg->installState = static_cast<InstallState>(installState); in ReportHceUninstallCallback()
1194 bundleInstallMsg_->installState = static_cast<InstallState>(installState); in ReportInstallCallback()
1196 bundleInstallMsg->installState = bundleInstallMsg_->installState; in ReportInstallCallback()
[all …]
H A Dbundle_mgr_slite_feature.cpp129 bool BundleMgrSliteFeature::GetInstallState(const char *bundleName, InstallState *installState, uin… in GetInstallState() argument
131 …return OHOS::GtManagerService::GetInstance().GetInstallState(bundleName, installState, installProc… in GetInstallState()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dgt_bundle_manager_service.h74 … uint8_t errCode, uint8_t installState, uint8_t process, InstallerCallback installerCallback);
76 …uint8_t errCode, uint8_t installState, char *bundleName, uint8_t process, InstallerCallback instal…
77 … bool GetInstallState(const char *bundleName, InstallState *installState, uint8_t *installProcess);
107 int32_t ReportHceInstallCallback(uint8_t errCode, uint8_t installState, uint8_t process);
108 …int32_t ReportHceUninstallCallback(uint8_t errCode, uint8_t installState, char *bundleName, uint8_…
H A Dbundle_mgr_slite_feature.h38 …static bool GetInstallState(const char *bundleName, InstallState *installState, uint8_t *installPr…
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/interfaces/inner_api/bundlemgr_lite/slite/
H A Dbundle_install_msg.h45 InstallState installState; member
66 bool GetInstallState(const char *bundleName, InstallState *installState, uint8_t *installProcess);
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/slite/
H A Dbundle_manager_inner.cpp22 bool GetInstallState(const char *bundleName, InstallState *installState, uint8_t *installProcess) in GetInstallState() argument
24 …return OHOS::BundleMsClient::GetInstance().GetInstallState(bundleName, installState, installProces… in GetInstallState()
H A Dbundlems_slite_client.cpp188 bool BundleMsClient::GetInstallState (const char *bundleName, InstallState *installState, uint8_t *… in GetInstallState() argument
190 if ((bundleName == nullptr) || (installState == nullptr) || (installProcess == nullptr)) { in GetInstallState()
196 return bmsProxy_->GetInstallState(bundleName, installState, installProcess); in GetInstallState()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/include/
H A Dbundlems_slite_client.h47 …bool GetInstallState(const char *bundleName, InstallState *installState, uint8_t *installProcess) …
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/interfaces/inner_api/bundlemgr_lite/
H A Dbundle_service_interface.h56 …bool (*GetInstallState)(const char *bundleName, InstallState *installState, uint8_t *installProces…