Home
last modified time | relevance | path

Searched refs:resultMsg (Results 1 - 25 of 65) sorted by relevance

123

/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dstatus_receiver_impl.cpp41 void StatusReceiverImpl::OnFinished(const int32_t resultCode, const std::string &resultMsg) in OnFinished() argument
43 APP_LOGI("on finished result is %{public}d, %{public}s", resultCode, resultMsg.c_str()); in OnFinished()
48 resultMsgSignal_.set_value(resultMsg); in OnFinished()
73 std::string resultMsg = future.get(); in GetResultMsg() local
74 return resultMsg; in GetResultMsg()
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/
H A Ddistributed_sched_test_util.cpp50 void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
75 void StatusReceiverImpl::OnFinished(const int32_t resultCode, const std::string &resultMsg) in OnFinished() argument
77 HILOGI("on finished result is %{public}d, %{public}s", resultCode, resultMsg.c_str()); in OnFinished()
78 resultMsgSignal_.set_value(resultMsg); in OnFinished()
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundlemgr/
H A Dinstaller_callback.cpp20 void InstallerCallback::OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) in OnFinished() argument
26 resultMsgSignal_.set_value(resultMsg); in OnFinished()
H A Dinstaller_callback.h32 virtual void OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) override;
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlestatuscallbackproxy_fuzzer/
H A Dbundlestatuscallbackproxy_fuzzer.cpp29 std::string resultMsg (reinterpret_cast<const char*>(data), size); in DoSomethingInterestingWithMyAPI()
32 reinterpret_cast<uintptr_t>(data), resultMsg, bundleName); in DoSomethingInterestingWithMyAPI() local
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dstatus_receiver_host.cpp50 std::string resultMsg = Str16ToStr8(data.ReadString16()); in OnRemoteRequest() local
51 OnFinished(resultCode, resultMsg); in OnRemoteRequest()
H A Dbundle_status_callback_host.cpp52 std::string resultMsg = Str16ToStr8(data.ReadString16()); in OnRemoteRequest() local
54 OnBundleStateChanged(installType, resultCode, resultMsg, bundleName); in OnRemoteRequest()
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/bms_permission_grant_system_test/
H A Dbms_permission_grant_system_test.cpp54 void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
81 void StatusReceiverImpl::OnFinished(const int32_t resultCode, const std::string &resultMsg) in OnFinished() argument
83 APP_LOGD("on finished result is %{public}d, %{public}s", resultCode, resultMsg.c_str()); in OnFinished()
84 resultMsgSignal_.set_value(resultMsg); in OnFinished()
94 std::string resultMsg = future.get(); in GetResultMsg() local
95 if (resultMsg == MSG_SUCCESS) { in GetResultMsg()
125 std::string resultMsg = future.get(); in GetSubscriberResultMsg() local
126 return resultMsg; in GetSubscriberResultMsg()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/free_install/
H A Dinstall_result.cpp29 const char* JSON_KEY_RESULT_RESULTMSG = "resultMsg";
42 {JSON_KEY_RESULT_RESULTMSG, result.resultMsg}, in to_json()
60 result.resultMsg, in from_json()
152 resultMsg = Str16ToStr8(parcel.ReadString16()); in ReadFromParcel()
160 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(resultMsg)); in Marshalling()
/foundation/ability/ability_runtime/test/moduletest/mock/src/appmgr/
H A Dmock_status_receiver.cpp20 void MockStatusReceiver::OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string& resultMsg) in OnFinished() argument
/foundation/bundlemanager/bundle_framework/services/test/mock/src/
H A Dmock_status_receiver.cpp20 void MockStatusReceiver::OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) in OnFinished() argument
/foundation/bundlemanager/bundle_framework/test/benchmarktest/installer_proxy_test/
H A Dinstaller_proxy_test.cpp36 virtual void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
48 void InstallerProxyTest::OnFinished(const int32_t resultCode, const std::string &resultMsg) in OnFinished() argument
/foundation/bundlemanager/bundle_framework/test/benchmarktest/launcher_service_test/
H A Dlauncher_service_test.cpp29 const std::string &resultMsg, const std::string &bundleName) override;
38 const std::string &resultMsg, const std::string &bundleName) in OnBundleStateChanged()
37 OnBundleStateChanged(const uint8_t installType, const int32_t resultCode, const std::string &resultMsg, const std::string &bundleName) OnBundleStateChanged() argument
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/distributed_manager/
H A Drpc_id_result.cpp31 const char* JSON_KEY_RESULT_RESULT_MSG = "resultMsg";
113 {JSON_KEY_RESULT_RESULT_MSG, rpcIdResult.resultMsg}, in to_json()
145 rpcIdResult.resultMsg, in from_json()
218 resultMsg = Str16ToStr8(parcel.ReadString16()); in ReadFromParcel()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_installer.cpp56 std::string resultMsg = GetCheckResultMsg(); in Install() local
59 statusReceiver_->OnFinished(resultCode, resultMsg); in Install()
103 std::string resultMsg = GetCheckResultMsg(); in Install() local
106 statusReceiver_->OnFinished(resultCode, resultMsg); in Install()
/foundation/ability/ability_runtime/test/moduletest/mock/include/appmgr/
H A Dmock_status_receiver.h33 virtual void OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string& resultMsg) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dstatus_receiver_proxy.h38 * @param resultMsg Indicates the result message returned with the status code.
40 virtual void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/include/
H A Dmock_status_receiver.h33 virtual void OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) override;
H A Dmock_bundle_status.h32 virtual void OnBundleStateChanged(const uint8_t installType, const int32_t resultCode, const std::string &resultMsg,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dmock_bundle_status.cpp21 const uint8_t installType, const int32_t resultCode, const std::string &resultMsg, const std::string &bundleName) in OnBundleStateChanged()
20 OnBundleStateChanged( const uint8_t installType, const int32_t resultCode, const std::string &resultMsg, const std::string &bundleName) OnBundleStateChanged() argument
H A Dmock_status_receiver.cpp26 void MockStatusReceiver::OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) in OnFinished() argument
/foundation/bundlemanager/bundle_framework/services/test/mock/include/
H A Dmock_status_receiver.h33 virtual void OnFinished(const int32_t resultCode, [[maybe_unused]] const std::string &resultMsg) override;
/foundation/bundlemanager/bundle_tool/frameworks/include/
H A Dstatus_receiver_impl.h31 virtual void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/bms_install_system_test/
H A Dbms_install_external_hsp_so_test.cpp76 void OnFinished(const int32_t resultCode, const std::string &resultMsg) override;
103 void StatusReceiverImpl::OnFinished(const int32_t resultCode, const std::string &resultMsg) in OnFinished() argument
105 APP_LOGD("on finished result is %{public}d, %{public}s", resultCode, resultMsg.c_str()); in OnFinished()
106 resultMsgSignal_.set_value(resultMsg); in OnFinished()
116 std::string resultMsg = future.get(); in GetResultMsg() local
117 if (resultMsg == MSG_SUCCESS) { in GetResultMsg()
120 return OPERATION_FAILURE + resultMsg; in GetResultMsg()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/free_install/
H A Dinstall_result.h27 std::string resultMsg; member

Completed in 10 milliseconds

123