Home
last modified time | relevance | path

Searched refs:debugOption (Results 1 - 25 of 28) sorted by relevance

12

/foundation/ability/ability_runtime/test/unittest/cj_runtime_test/
H A Dcj_runtime_test.cpp151 CJRuntime::DebugOption debugOption; in HWTEST_F() local
152 debugOption.isStartWithDebug = needBreakPoint; in HWTEST_F()
153 debugOption.isDebugApp = debugApp; in HWTEST_F()
154 debugOption.processName = processName; in HWTEST_F()
156 instance->StartDebugMode(debugOption); in HWTEST_F()
157 EXPECT_TRUE(debugOption.isStartWithDebug); in HWTEST_F()
158 instance->StartDebugMode(debugOption); in HWTEST_F()
159 EXPECT_TRUE(debugOption.isDebugApp); in HWTEST_F()
H A Dcj_mock_runtime.h35 void StartDebugMode(const DebugOption debugOption) override {}
105 void StartProfiler(const DebugOption debugOption) override {}
/foundation/ability/ability_runtime/test/unittest/child_process_manager_test/
H A Dchild_process_manager_test.cpp289 AbilityRuntime::Runtime::DebugOption debugOption; in HWTEST_F() local
354 Runtime::DebugOption debugOption; in HWTEST_F() local
355 ChildProcessManager::GetInstance().SetAppSpawnForkDebugOption(debugOption, nullptr); in HWTEST_F()
356 EXPECT_EQ(debugOption.processName, ""); in HWTEST_F()
367 Runtime::DebugOption debugOption; in HWTEST_F() local
371 ChildProcessManager::GetInstance().SetAppSpawnForkDebugOption(debugOption, processInfo); in HWTEST_F()
372 EXPECT_EQ(debugOption.processName, processName); in HWTEST_F()
/foundation/filemanagement/app_file_service/tests/mock/backup_ext/include/
H A Djs_runtime_mock.h27 MOCK_METHOD(void, StartDebugMode, (const DebugOption debugOption));
45 MOCK_METHOD(void, StartProfiler, (const DebugOption debugOption));
/foundation/ability/ability_runtime/test/mock/frameworks_kits_runtime_test/
H A Dmock_runtime.h36 void StartDebugMode(const DebugOption debugOption) override {}
118 void StartProfiler(const DebugOption debugOption) override {}
/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H A Dchild_main_thread.cpp210 AbilityRuntime::Runtime::DebugOption debugOption; in HandleLoadJs() local
211 childProcessManager.SetAppSpawnForkDebugOption(debugOption, processInfo_); in HandleLoadJs()
215 runtime_->StartDebugMode(debugOption); in HandleLoadJs()
251 AbilityRuntime::Runtime::DebugOption debugOption; in HandleLoadArkTs() local
252 childProcessManager.SetAppSpawnForkDebugOption(debugOption, processInfo_); in HandleLoadArkTs()
256 runtime_->StartDebugMode(debugOption); in HandleLoadArkTs()
H A Dmain_thread.cpp1522 AbilityRuntime::Runtime::DebugOption debugOption; in HandleLaunchApplication() local
1523 debugOption.isStartWithDebug = appLaunchData.GetDebugApp(); in HandleLaunchApplication()
1524 debugOption.processName = processName; in HandleLaunchApplication()
1525 debugOption.isDebugApp = appInfo.debug; in HandleLaunchApplication()
1526 debugOption.isStartWithNative = appLaunchData.isNativeStart(); in HandleLaunchApplication()
1530 debugOption.perfCmd = perfCmd; in HandleLaunchApplication()
1531 runtime->StartProfiler(debugOption); in HandleLaunchApplication()
1534 runtime->StartDebugMode(debugOption); in HandleLaunchApplication()
/foundation/ability/ability_runtime/interfaces/inner_api/runtime/include/
H A Druntime.h88 virtual void StartDebugMode(const DebugOption debugOption) = 0;
106 virtual void StartProfiler(const DebugOption debugOption) = 0;
H A Dcj_runtime.h47 void StartDebugMode(const DebugOption debugOption) override;
58 void StartProfiler(const DebugOption debugOption) override {};
H A Djs_runtime.h100 void StartDebugMode(const DebugOption debugOption) override;
126 void StartProfiler(const DebugOption debugOption) override;
/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Dconnect_server_manager.cpp148 void ConnectServerManager::StoreDebuggerInfo(int32_t tid, void* vm, const panda::JSNApi::DebugOption& debugOption, in StoreDebuggerInfo() argument
161 panda::JSNApi::StoreDebugInfo(tid, reinterpret_cast<panda::EcmaVM*>(vm), debugOption, debuggerPostTask, isDebugApp); in StoreDebuggerInfo()
180 panda::JSNApi::DebugOption debugOption = {ARK_DEBUGGER_LIB_PATH, isDebugApp ? needBreakPoint : false}; in SendDebuggerInfo() local
181 panda::JSNApi::StoreDebugInfo(tid, vm, debugOption, debuggerPostTask, isDebugApp); in SendDebuggerInfo()
H A Dconnect_server_manager.h49 void StoreDebuggerInfo(int32_t tid, void* vm, const panda::JSNApi::DebugOption& debugOption,
H A Djs_worker.cpp112 panda::JSNApi::DebugOption debugOption = {ARK_DEBUGGER_LIB_PATH, needBreakPoint}; in InitWorkerFunc() local
115 instanceId, reinterpret_cast<void*>(vm), debugOption, workerPostTask, g_debugApp); in InitWorkerFunc()
117 panda::JSNApi::NotifyDebugMode(instanceId, vm, debugOption, instanceId, workerPostTask, g_debugApp); in InitWorkerFunc()
/foundation/ability/ability_runtime/frameworks/native/ability/native/child_process_manager/
H A Dchild_process_manager.cpp473 void ChildProcessManager::SetAppSpawnForkDebugOption(Runtime::DebugOption &debugOption, in SetAppSpawnForkDebugOption() argument
480 debugOption.processName = processInfo->processName; in SetAppSpawnForkDebugOption()
481 debugOption.isStartWithDebug = processInfo->isStartWithDebug; in SetAppSpawnForkDebugOption()
482 debugOption.isDebugApp = processInfo->isDebugApp; in SetAppSpawnForkDebugOption()
483 debugOption.isStartWithNative = processInfo->isStartWithNative; in SetAppSpawnForkDebugOption()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Dark_js_runtime.cpp182 JSNApi::DebugOption debugOption = { libPath_.c_str(), isDebugApp ? isDebugMode_ : false }; in StartDebugger() local
185 ret = JSNApi::NotifyDebugMode(gettid(), vm_, debugOption, gettid(), debuggerPostTask_, isDebugApp); in StartDebugger()
187 ret = JSNApi::StartDebugger(vm_, debugOption, instanceId_, debuggerPostTask_); in StartDebugger()
191 JSNApi::DebugOption debugOption = { nullptr, isDebugMode_ }; in StartDebugger() local
192 ret = JSNApi::StartDebugger(vm_, debugOption, instanceId_, debuggerPostTask_); in StartDebugger()
/foundation/ability/ability_runtime/test/unittest/runtime_test/
H A Dmock_js_runtime.h30 void StartDebugMode(const DebugOption debugOption) in StartDebugMode() argument
H A Djs_runtime_test.cpp552 AbilityRuntime::Runtime::DebugOption debugOption; in HWTEST_F() local
553 debugOption.isStartWithDebug = true; in HWTEST_F()
554 debugOption.processName = "test"; in HWTEST_F()
555 debugOption.isDebugApp = true; in HWTEST_F()
556 debugOption.isStartWithNative = false; in HWTEST_F()
557 jsRuntime->StartDebugMode(debugOption); in HWTEST_F()
1051 AbilityRuntime::Runtime::DebugOption debugOption; in HWTEST_F() local
1052 debugOption.perfCmd = "profile jsperf 100"; in HWTEST_F()
1053 debugOption.isStartWithDebug = false; in HWTEST_F()
1054 debugOption in HWTEST_F()
[all...]
/foundation/ability/ability_runtime/interfaces/inner_api/child_process_manager/include/
H A Dchild_process_manager.h66 void SetAppSpawnForkDebugOption(Runtime::DebugOption &debugOption,
/foundation/ability/ability_runtime/js_environment/frameworks/js_environment/src/
H A Djs_environment.cpp357 panda::JSNApi::DebugOption debugOption = {libraryPath, debug ? debugMode : false}; in NotifyDebugMode() local
366 panda::JSNApi::NotifyDebugMode(tid, vm_, debugOption, instanceId, debuggerPostTask, debug); in NotifyDebugMode()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/fuzztest/medialibraryextension_fuzzer/
H A Dmedialibraryextension_fuzzer.cpp264 void StartDebugMode(const DebugOption debugOption) {}; in StartDebugMode() argument
/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/src/
H A Dsimulator.cpp692 panda::JSNApi::DebugOption debugOption = {ARK_DEBUGGER_LIB_PATH, (options_.debugPort != 0), options_.debugPort}; in OnInit() local
693 panda::JSNApi::StartDebugger(vm_, debugOption, 0, [this](std::function<void()> &&arg) { in OnInit()
/foundation/filemanagement/app_file_service/tests/unittests/backup_ext/
H A Dext_backup_js_test.cpp53 MOCK_METHOD(void, StartDebugMode, (const DebugOption debugOption));
71 MOCK_METHOD(void, StartProfiler, (const DebugOption debugOption));
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_declarative_engine.cpp1313 panda::JSNApi::DebugOption debugOption = { libraryPath.c_str(), debugMode }; in RegisterInitWorkerFunc()
1314 JSNApi::NotifyDebugMode(tid, vm, debugOption, tid, workerPostTask, debugVersion); in RegisterInitWorkerFunc()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_fileext_test/src/
H A Dmedialibrary_fileext_test.cpp109 void StartDebugMode(const DebugOption debugOption) {}; in StartDebugMode() argument
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_datamanager_test/src/
H A Dmedialibrary_datamanager_test.cpp54 void StartDebugMode(const DebugOption debugOption) {}; in StartDebugMode() argument

Completed in 32 milliseconds

12