/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_host_caller.h | 62 ErrCode MessageEvent(int64_t formId, const AAFwk::Want &want, const sptr<IRemoteObject> &callerToken);
|
H A D | form_mgr.h | 216 int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken);
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_provider_mgr.h | 126 int MessageEvent(const int64_t formId, const FormRecord &record, const Want &want);
|
H A D | form_mgr_service.h | 230 int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) override;
|
/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_host_caller.cpp | 56 ErrCode FormHostCaller::MessageEvent(int64_t formId, const AAFwk::Want &want, const sptr<IRemoteObject> &callerToken) in MessageEvent() function in OHOS::AppExecFwk::FormHostCaller
|
H A D | form_mgr.cpp | 517 int FormMgr::MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) in MessageEvent() function in OHOS::AppExecFwk::FormMgr 528 return hostCaller->MessageEvent(formId, want, callerToken); in MessageEvent() 535 return remoteProxy_->MessageEvent(formId, want, callerToken); in MessageEvent()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_message_event_test/ |
H A D | fms_form_mgr_message_event_test.cpp | 110 * SubFunction: MessageEvent Function 111 * FunctionPoints: FormMgr MessageEvent interface 113 * CaseDescription: Verify if FormMgr invoke MessageEvent works. 149 EXPECT_EQ(ERR_APPEXECFWK_FORM_COMMON_CODE, FormMgr::GetInstance().MessageEvent(formId, want, token_)); in HWTEST_F() 151 EXPECT_EQ(ERR_OK, FormMgr::GetInstance().MessageEvent(formId, want, token_)); in HWTEST_F() 160 * SubFunction: MessageEvent Function 161 * FunctionPoints: FormMgr MessageEvent interface 176 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, FormMgr::GetInstance().MessageEvent(formId, want, token_)); in HWTEST_F() 182 * SubFunction: MessageEvent Function 183 * FunctionPoints: FormMgr MessageEvent interfac [all...] |
/foundation/ability/form_fwk/test/fuzztest/formmgr_fuzzer/ |
H A D | formmgr_fuzzer.cpp | 67 formMgr.MessageEvent(formId, want, callerToken); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formmgradaptertwo_fuzzer/ |
H A D | formmgradaptertwo_fuzzer.cpp | 63 formMgrAdapter.MessageEvent(formId, want, callerToken); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/ |
H A D | mock_form_mgr_service.h | 260 int MessageEvent(const int64_t formId, const Want& want, const sptr<IRemoteObject>& callerToken) in MessageEvent() function in OHOS::AppExecFwk::MockFormMgrService
|
H A D | mock_form_mgr_proxy.h | 33 MOCK_METHOD3(MessageEvent, int32_t(int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken));
|
/foundation/ability/form_fwk/test/fuzztest/formprovidermgr_fuzzer/ |
H A D | formprovidermgr_fuzzer.cpp | 86 formProviderMgr.MessageEvent(formId, record, want); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formmgrproxy_fuzzer/ |
H A D | formmgrproxy_fuzzer.cpp | 64 formMgrProxy.MessageEvent(formId, want, callerToken); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/ |
H A D | fms_form_mgr_adapter_test2.cpp | 912 * @tc.desc: test MessageEvent function and the return value is ERR_APPEXECFWK_FORM_INVALID_PARAM.
922 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.MessageEvent(formId, want, callerToken));
in HWTEST_F() 1056 * @tc.desc: test MessageEvent function and the return value is ERR_APPEXECFWK_FORM_INVALID_PARAM.
1066 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.MessageEvent(formId, want, callerToken));
in HWTEST_F() 1286 * @tc.desc: test MessageEvent function and the return value is ERR_APPEXECFWK_FORM_INVALID_PARAM.
1296 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.MessageEvent(formId, want, callerToken));
in HWTEST_F() 1302 * @tc.desc: test MessageEvent function and the return value is ERR_APPEXECFWK_FORM_INVALID_PARAM.
1312 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.MessageEvent(formId, want, callerToken));
in HWTEST_F() 1318 * @tc.desc: test MessageEvent function and the return value is ERR_APPEXECFWK_FORM_NOT_EXIST_ID.
1331 EXPECT_EQ(ERR_APPEXECFWK_FORM_NOT_EXIST_ID, formMgrAdapter.MessageEvent(formI in HWTEST_F() [all...] |
/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 33 MOCK_METHOD3(MessageEvent, int32_t(int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken));
|
H A D | mock_form_mgr_service.h | 48 MOCK_METHOD3(MessageEvent, int(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken));
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | mock_form_mgr_adapter.cpp | 208 int FormMgrAdapter::MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) in MessageEvent() function in OHOS::AppExecFwk::FormMgrAdapter 210 GTEST_LOG_(INFO) << "MessageEvent called " << g_messageEvent; in MessageEvent()
|
H A D | fms_form_mgr_service_test.cpp | 265 * @tc.name: test MessageEvent function. 266 * @tc.desc: Verify that the MessageEvent interface is called normally and the return value is ERR_OK. 278 EXPECT_EQ(formMgrService.MessageEvent(formId, want, callerToken), ERR_OK); in HWTEST_F() 282 EXPECT_EQ(formMgrService.MessageEvent(formId, want, callerToken), ERR_APPEXECFWK_FORM_PERMISSION_DENY_SYS); in HWTEST_F() 286 EXPECT_EQ(formMgrService.MessageEvent(formId, want, callerToken), ERR_APPEXECFWK_FORM_COMMON_CODE); in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/form_provider_caller_test/ |
H A D | form_provider_caller_test.cpp | 226 * @tc.desc: text MessageEvent function and callerToken_ is nullptr . 235 formHostCaller.MessageEvent(formId, want, nullptr); in HWTEST_F()
|
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/ |
H A D | mock_form_mgr_service.h | 104 int32_t MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) override
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/ |
H A D | form_extension_context_mock_test.h | 120 int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) override
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_provider_mgr.cpp | 446 int FormProviderMgr::MessageEvent(const int64_t formId, const FormRecord &record, const Want &want) in MessageEvent() function in OHOS::AppExecFwk::FormProviderMgr
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_interface.h | 233 virtual int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) = 0;
|
H A D | form_mgr_proxy.h | 198 virtual int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) override;
|
/foundation/ability/form_fwk/test/fuzztest/formmgrstub_fuzzer/ |
H A D | formmgrstub_fuzzer.cpp | 107 int MessageEvent(const int64_t formId, const Want &want, const sptr<IRemoteObject> &callerToken) override
|