/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/aot/ |
H A D | aot_executor.h | 37 void ExecuteAOT(const AOTArgs &aotArgs, ErrCode &ret, std::vector<uint8_t> &pendSignData);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_aot_test/ |
H A D | bms_data_aot_test.cpp | 179 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 195 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 211 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 227 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 245 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 264 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 284 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F() 304 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 74 ErrCode InstalldClient::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::InstalldClient 76 return CallService(&IInstalld::ExecuteAOT, aotArgs, pendSignData); in ExecuteAOT()
|
H A D | mock_installd_host_impl.cpp | 209 ErrCode InstalldHostImpl::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData)
in ExecuteAOT() function in OHOS::AppExecFwk::InstalldHostImpl
|
H A D | mock_install_client.cpp | 52 ErrCode InstalldClient::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::InstalldClient
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 80 ErrCode InstalldClient::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::InstalldClient 82 return CallService(&IInstalld::ExecuteAOT, aotArgs, pendSignData); in ExecuteAOT()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 67 virtual ErrCode ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 192 ErrCode ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 92 virtual ErrCode ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::IInstalld
|
H A D | installd_proxy.h | 69 virtual ErrCode ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/aot/ |
H A D | aot_executor.cpp | 259 void AOTExecutor::ExecuteAOT(const AOTArgs &aotArgs, ErrCode &ret, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::AOTExecutor
|
H A D | aot_handler.cpp | 209 ret = InstalldClient::GetInstance()->ExecuteAOT(*aotArgs, pendSignData); in AOTInternal() 211 APP_LOGI("ExecuteAOT ret : %{public}d", ret); in AOTInternal()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_ipc_test.cpp | 585 * @tc.desc: 1. calling ExecuteAOT of proxy
594 auto ret = installdProxy->ExecuteAOT(aotArgs, pendSignData);
in HWTEST_F() 1001 * @tc.name: test Marshalling function of ExecuteAOT
1002 * @tc.desc: 1. calling ExecuteAOT of proxy
1011 auto ret = proxy->ExecuteAOT(aotArgs, pendSignData);
in HWTEST_F()
|
H A D | bms_install_daemon_host_impl_test.cpp | 817 auto ret = impl.ExecuteAOT(aotArgs, pendSignData);
in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 221 ErrCode InstalldHostImpl::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::InstalldHostImpl 229 AOTExecutor::GetInstance().ExecuteAOT(aotArgs, ret, pendSignData); in ExecuteAOT()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 319 ErrCode result = ExecuteAOT(*aotArgs, pendSignData); in HandleExecuteAOT() 323 LOG_E(BMS_TAG_INSTALLD, "WriteParcelable ExecuteAOT failed"); in HandleExecuteAOT()
|
H A D | installd_proxy.cpp | 123 ErrCode InstalldProxy::ExecuteAOT(const AOTArgs &aotArgs, std::vector<uint8_t> &pendSignData) in ExecuteAOT() function in OHOS::AppExecFwk::InstalldProxy 136 LOG_E(BMS_TAG_INSTALLD, "TransactInstalldCmd ExecuteAOT failed when AOTSign disable"); in ExecuteAOT() 138 LOG_E(BMS_TAG_INSTALLD, "ReadUInt8Vector ExecuteAOT failed"); in ExecuteAOT()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 1130 * @tc.name: ExecuteAOT 1131 * @tc.desc: call ExecuteAOT. 1138 ErrCode result = installClient_->ExecuteAOT(aotArgs, pendSignData); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_test.cpp | 4950 auto ret = impl.ExecuteAOT(aotArgs, pendSignData); in HWTEST_F()
|