Home
last modified time | relevance | path

Searched refs:AcquireFormState (Results 1 - 25 of 30) sorted by relevance

12

/foundation/ability/form_fwk/test/fuzztest/formmgrannex_fuzzer/
H A Dformmgrannex_fuzzer.cpp55 formMgr.AcquireFormState(want, callerToken, stateInfo); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formmgradapterthree_fuzzer/
H A Dformmgradapterthree_fuzzer.cpp64 formMgrAdapter.AcquireFormState(want, callerToken, stateInfo); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_form_mgr_proxy.h51 MOCK_METHOD3(AcquireFormState, int(const Want &want, const sptr<IRemoteObject> &callerToken,
/foundation/ability/form_fwk/test/fuzztest/formmgrservice_fuzzer/
H A Dformmgrservice_fuzzer.cpp72 formMgrService.AcquireFormState(want, callerToken, stateInfo); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formmgrproxy_fuzzer/
H A Dformmgrproxy_fuzzer.cpp78 formMgrProxy.AcquireFormState(want, callerToken, stateInfo); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_mgr.h343 int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken, FormStateInfo &stateInfo);
/foundation/ability/form_fwk/test/mock/include/
H A Dmock_form_mgr_proxy.h55 MOCK_METHOD3(AcquireFormState, int(const Want &want, const sptr<IRemoteObject> &callerToken,
H A Dmock_form_mgr_service.h53 MOCK_METHOD3(AcquireFormState, int(const Want &want, const sptr<IRemoteObject> &callerToken,
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dmock_form_mgr_adapter.cpp227 int FormMgrAdapter::AcquireFormState( in AcquireFormState() function in OHOS::AppExecFwk::FormMgrAdapter
230 GTEST_LOG_(INFO) << "AcquireFormState called " << g_acquireFormState; in AcquireFormState()
H A Dfms_form_mgr_service_test.cpp363 * @tc.name: test AcquireFormState function.
364 * @tc.desc: Verify that the AcquireFormState interface is called normally and the return value is ERR_OK.
374 EXPECT_EQ(formMgrService.AcquireFormState(want, callerToken, stateInfo), ERR_OK); in HWTEST_F()
378 EXPECT_EQ(formMgrService.AcquireFormState(want, callerToken, stateInfo), ERR_APPEXECFWK_FORM_PERMISSION_DENY_SYS); in HWTEST_F()
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/
H A Dmock_form_mgr_service.h121 int32_t AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken,
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Dform_extension_context_mock_test.h141 int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken, FormStateInfo &stateInfo) override
/foundation/ability/form_fwk/services/include/
H A Dform_mgr_service.h267 virtual int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken,
H A Dform_mgr_adapter.h338 int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken, FormStateInfo &stateInfo);
997 * @brief AcquireFormState want check.
/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_mgr_interface.h270 virtual int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken,
H A Dform_mgr_proxy.h235 virtual int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken,
/foundation/ability/form_fwk/test/fuzztest/formmgrstub_fuzzer/
H A Dformmgrstub_fuzzer.cpp124 int AcquireFormState(const Want &want,
/foundation/ability/form_fwk/test/unittest/form_mgr_test/
H A Dform_mgr_test.cpp651 * @tc.desc: Verify AcquireFormState
656 EXPECT_CALL(*mockProxy, AcquireFormState(_, _, _)) in HWTEST_F()
663 auto result = FormMgr::GetInstance().AcquireFormState(want, token, stateInfo); in HWTEST_F()
924 * @tc.desc: Verify AcquireFormState
935 int result = FormMgr::GetInstance().AcquireFormState(want, token, stateInfo); in HWTEST_F()
1528 * @tc.desc: Verify AcquireFormState (The return value of mock function is not 0)
1539 auto result = FormMgr::GetInstance().AcquireFormState(want, token, stateInfo); in HWTEST_F()
3690 * @tc.desc: Verify AcquireFormState
3696 EXPECT_CALL(*mockProxy, AcquireFormState(_, _, _)) in HWTEST_F()
3703 auto result = FormMgr::GetInstance().AcquireFormState(wan in HWTEST_F()
[all...]
/foundation/ability/form_fwk/frameworks/js/napi/form_host/
H A Djs_form_host.cpp330 static napi_value AcquireFormState(napi_env env, napi_callback_info info) in AcquireFormState() function in OHOS::AbilityRuntime::JsFormHost
999 auto result = FormMgr::GetInstance().AcquireFormState(want, FormHostClient::GetInstance(), stateInfo); in InnerAcquireFormState()
1002 HILOG_DEBUG("AcquireFormState failed"); in InnerAcquireFormState()
1832 BindNativeFunction(env, exportObj, "acquireFormState", moduleName, JsFormHost::AcquireFormState); in JsFormHostInit()
/foundation/ability/form_fwk/test/unittest/fms_form_host_record_test/
H A Dfms_form_host_record_test.cpp575 * @tc.desc: test AcquireFormState function.
586 formMgrService.AcquireFormState(want, callerToken, stateInfo)); in HWTEST_F()
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/
H A Dfms_form_mgr_adapter_test.cpp1117 * @tc.desc: test AcquireFormState function.
1127 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.AcquireFormState(want, callerToken, stateInfo)); in HWTEST_F()
1133 * @tc.desc: test AcquireFormState function.
1143 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrAdapter.AcquireFormState(want, callerToken, stateInfo)); in HWTEST_F()
/foundation/ability/form_fwk/interfaces/kits/native/src/
H A Dform_mgr.cpp968 int FormMgr::AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken, FormStateInfo &stateInfo) in AcquireFormState() function in OHOS::AppExecFwk::FormMgr
985 int resultCode = remoteProxy_->AcquireFormState(want, callerToken, stateInfo); in AcquireFormState()
987 HILOG_ERROR("fail AcquireFormState,errCode %{public}d", resultCode); in AcquireFormState()
/foundation/ability/form_fwk/services/src/
H A Dform_mgr_service.cpp888 int FormMgrService::AcquireFormState(const Want &want, in AcquireFormState() function in OHOS::AppExecFwk::FormMgrService
902 return FormMgrAdapter::GetInstance().AcquireFormState(want, callerToken, stateInfo); in AcquireFormState()
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_proxy_test/
H A Dfms_form_mgr_proxy_test.cpp787 * @tc.desc: test AcquireFormState function
801 int32_t result = proxy->AcquireFormState(want, nullptr, stateInfo); in HWTEST_F()
807 * @tc.desc: test AcquireFormState function
823 int32_t result = proxy->AcquireFormState(want, nullptr, stateInfo); in HWTEST_F()
829 * @tc.desc: test AcquireFormState function
844 int32_t result = proxy->AcquireFormState(want, nullptr, stateInfo); in HWTEST_F()
/foundation/ability/form_fwk/test/unittest/fms_form_render_stub_test/
H A Dfms_form_render_stub_test.cpp274 int AcquireFormState(const Want &want, const sptr<IRemoteObject> &callerToken,

Completed in 37 milliseconds

12