Home
last modified time | relevance | path

Searched refs:startId (Results 1 - 25 of 74) sorted by relevance

123

/foundation/ability/form_fwk/test/unittest/fms_form_render_service_extension_test/
H A Dfms_form_render_service_extension_test.cpp84 int startId = 1; in HWTEST_F() local
85 formRenderServiceExtension->OnCommand(want, restart, startId); in HWTEST_F()
/foundation/ability/form_fwk/services/form_render_service/src/
H A Dform_render_service_extension.cpp89 void FormRenderServiceExtension::OnCommand(const AAFwk::Want &want, bool restart, int startId) in OnCommand() argument
91 Extension::OnCommand(want, restart, startId); in OnCommand()
92 HILOG_INFO("begin restart=%{public}s,startId=%{public}d", in OnCommand()
94 startId); in OnCommand()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/
H A Dextension_ability_thread.h86 * @param startId Indicates the number of times the Service ability has been started. The startId is incremented by
88 * startId is 6.
90 void ScheduleCommandAbility(const Want &want, bool restart, int startId) override;
190 * @param startId Indicates the number of times the Service extension has been started. The startId is incremented
192 * value of startId is 6.
194 void HandleCommandExtension(const Want &want, bool restart, int32_t startId);
224 void ScheduleCommandAbilityInner(const Want &want, bool restart, int32_t startId);
H A Dfa_ability_thread.h100 * @param startId Indicates the number of times the Service ability has been started. The startId is incremented by
102 * startId is 6.
104 void ScheduleCommandAbility(const Want &want, bool restart, int startId) override;
468 * @param startId Indicates the number of times the Service ability has been started. The startId is incremented by
470 * startId is 6.
472 void HandleCommandAbility(const Want &want, bool restart, int32_t startId);
491 * @param startId Indicates the number of times the Service extension has been started. The startId i
[all...]
H A Dextension_impl.h131 * @param startId Indicates the number of times the Service Extension has been started. The startId is incremented
133 * of startId is 6.
135 void CommandExtension(const Want &want, bool restart, int startId);
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ui_extension_ability/
H A Dui_extension_base.h64 void OnCommand(const AAFwk::Want &want, bool restart, int startId) override
66 Extension::OnCommand(want, restart, startId);
68 impl_->OnCommand(want, restart, startId);
H A Dui_extension_base_impl.h41 virtual void OnCommand(const AAFwk::Want &want, bool restart, int startId) = 0;
/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dace_service_ability.cpp140 void AceServiceAbility::OnCommand(const AAFwk::Want &want, bool restart, int startId) in OnCommand() argument
143 Ability::OnCommand(want, restart, startId); in OnCommand()
144 Platform::PaContainer::OnCommand(want, startId, abilityId_); in OnCommand()
H A Dace_service_ability.h40 void OnCommand(const AAFwk::Want &want, bool restart, int startId) override;
/foundation/ability/form_fwk/test/fuzztest/formrenderserviceextension_fuzzer/
H A Dformrenderserviceextension_fuzzer.cpp55 int startId = static_cast<int64_t>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local
56 formRenderServiceExtension->OnCommand(want, restart, startId); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Dextension_ability_thread.cpp319 void ExtensionAbilityThread::HandleCommandExtension(const Want &want, bool restart, int32_t startId) in HandleCommandExtension() argument
327 extensionImpl_->CommandExtension(want, restart, startId); in HandleCommandExtension()
458 void ExtensionAbilityThread::ScheduleCommandAbility(const Want &want, bool restart, int32_t startId) in ScheduleCommandAbility() argument
460 TAG_LOGD(AAFwkTag::EXT, "Begin startId: %{public}d", startId); in ScheduleCommandAbility()
465 ScheduleCommandAbilityInner(want, restart, startId); in ScheduleCommandAbility()
472 void ExtensionAbilityThread::ScheduleCommandAbilityInner(const Want &want, bool restart, int32_t startId) in ScheduleCommandAbilityInner() argument
475 auto task = [weak, want, restart, startId]() { in ScheduleCommandAbilityInner()
481 abilityThread->HandleCommandExtension(want, restart, startId); in ScheduleCommandAbilityInner()
H A Dextension.cpp99 void Extension::OnCommand(const AAFwk::Want &want, bool restart, int startId) in OnCommand() argument
101 TAG_LOGD(AAFwkTag::EXT, "restart:%{public}s,startId:%{public}d", in OnCommand()
103 startId); in OnCommand()
/foundation/filemanagement/app_file_service/tests/mock/backup_ext/src/
H A Dext_backup_mock.cpp44 void ExtBackup::OnCommand(const AAFwk::Want &want, bool restart, int startId) in OnCommand() argument
46 BExtBackup::extBackup->OnCommand(want, restart, startId); in OnCommand()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dlifecycle_deal.cpp97 void LifecycleDeal::CommandAbility(const Want &want, bool reStart, int startId) in CommandAbility() argument
99 TAG_LOGD(AAFwkTag::ABILITYMGR, "startId:%{public}d", startId); in CommandAbility()
102 abilityScheduler->ScheduleCommandAbility(want, reStart, startId); in CommandAbility()
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_service_extension.h114 * @param startId Indicates the number of times the Service extension has been started. The startId is incremented
116 * value of startId is 6.
118 void OnCommand(const AAFwk::Want &want, bool restart, int startId) override;
/foundation/ability/ability_runtime/test/mock/frameworks_kits_test/DemoAbility/
H A Ddemo_ability_test.cpp133 void DemoAbility::OnCommand(const AAFwk::Want& want, bool restart, int startId) in OnCommand() argument
137 Ability::OnCommand(want, restart, startId); in OnCommand()
H A Ddemo_ability_test.h35 void OnCommand(const AAFwk::Want& want, bool restart, int startId) override;
/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dlifecycle_deal.h69 void CommandAbility(const Want &want, bool reStart, int startId);
/foundation/ability/ability_runtime/test/unittest/ability_extension_test/
H A Dability_extension_test.cpp468 int startId = 0; in HWTEST_F() local
471 extension.OnCommand(want, restart, startId); in HWTEST_F()
499 int startId = 0; in HWTEST_F() local
502 extension.OnCommand(want, restart, startId); in HWTEST_F()
/foundation/communication/netmanager_ext/frameworks/native/vpnextension/src/
H A Djs_vpn_extension.cpp389 void JsVpnExtension::OnCommand(const AAFwk::Want &want, bool restart, int startId) in OnCommand() argument
391 Extension::OnCommand(want, restart, startId); in OnCommand()
392 NETMGR_EXT_LOG_I("restart=%{public}s,startId=%{public}d.", in OnCommand()
394 startId); in OnCommand()
399 // wrap startId in OnCommand()
401 napi_create_int32(env, startId, &napiStartId); in OnCommand()
/foundation/arkui/ace_engine/adapter/ohos/entrance/pa_engine/
H A Dpa_backend.cpp76 void PaBackend::OnCommand(const OHOS::AAFwk::Want& want, int startId) in OnCommand() argument
80 [weakEngine = WeakPtr<JsBackendEngine>(jsBackendEngine_), want, startId] { in OnCommand()
83 jsBackendEngine->OnCommand(want, startId); in OnCommand()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/auto_fill_extension_ability/
H A Djs_auto_fill_extension.h73 * @param startId Indicates the number of times the ui extension has been started. The startId is incremented
75 * value of startId is 6.
77 void OnCommand(const AAFwk::Want &want, bool restart, int startId) override;
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_page_ability.h103 void OnCommand(const AAFwk::Want& want, bool restart, int startId) in OnCommand() argument
/foundation/ability/ability_runtime/test/mock/services_abilitymgr_test/libs/aakit/src/
H A Dability_scheduler.cpp63 void AbilityScheduler::ScheduleCommandAbility(const Want& want, bool restart, int startId) in ScheduleCommandAbility() argument
/foundation/filemanagement/app_file_service/frameworks/native/backup_ext/include/
H A Dext_backup.h64 * @param startId Indicates the number of times the Service extension has been started. The startId is
66 * for six times, the value of startId is 6.
68 void OnCommand(const AAFwk::Want &want, bool restart, int startId) override;

Completed in 13 milliseconds

123