/foundation/ability/ability_runtime/test/unittest/runtime_test/ |
H A D | js_runtime_first_test.cpp | 89 bool isStartWithDebug = false;
in HWTEST_F() local 91 jsRuntime->DebuggerConnectionHandler(isDebugApp, isStartWithDebug);
in HWTEST_F() 109 bool isStartWithDebug = false;
in HWTEST_F() local 110 jsRuntime->DebuggerConnectionHandler(isDebugApp, isStartWithDebug);
in HWTEST_F() 150 bool isStartWithDebug = true;
in HWTEST_F() local 153 dOption.isStartWithDebug = false;
in HWTEST_F() 158 jsRuntime->DebuggerConnectionManager(isDebugApp, isStartWithDebug, dOption);
in HWTEST_F() 178 bool isStartWithDebug = true;
in HWTEST_F() local 181 dOption.isStartWithDebug = false;
in HWTEST_F() 186 jsRuntime->DebuggerConnectionManager(isDebugApp, isStartWithDebug, dOptio in HWTEST_F() [all...] |
H A D | js_runtime_test.cpp | 553 debugOption.isStartWithDebug = true; in HWTEST_F() 1053 debugOption.isStartWithDebug = false; in HWTEST_F()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | child_process_record.cpp | 27 hostRecord_(hostRecord), isStartWithDebug_(request.isStartWithDebug) in ChildProcessRecord() 43 int32_t childProcessCount, bool isStartWithDebug) in ChildProcessRecord() 45 srcEntry_(libName), hostRecord_(hostRecord), mainProcessCb_(mainProcessCb), isStartWithDebug_(isStartWithDebug) in ChildProcessRecord() 71 const sptr<IRemoteObject> &mainProcessCb, int32_t childProcessCount, bool isStartWithDebug) in CreateNativeChildProcessRecord() 79 childProcessCount, isStartWithDebug); in CreateNativeChildProcessRecord() 204 bool ChildProcessRecord::isStartWithDebug() in isStartWithDebug() function in OHOS::AppExecFwk::ChildProcessRecord 41 ChildProcessRecord(pid_t hostPid, const std::string &libName, const std::shared_ptr<AppRunningRecord> hostRecord, const sptr<IRemoteObject> &mainProcessCb, int32_t childProcessCount, bool isStartWithDebug) ChildProcessRecord() argument 69 CreateNativeChildProcessRecord( pid_t hostPid, const std::string &libName, const std::shared_ptr<AppRunningRecord> hostRecord, const sptr<IRemoteObject> &mainProcessCb, int32_t childProcessCount, bool isStartWithDebug) CreateNativeChildProcessRecord() argument
|
H A D | app_mgr_service_inner.cpp | 7076 info.isStartWithDebug = childProcessRecord->isStartWithDebug(); in NotifyAppFaultBySA()
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | child_process_request.cpp | 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isStartWithDebug); in ReadFromParcel() 67 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isStartWithDebug); in Marshalling()
|
H A D | child_process_info.cpp | 56 isStartWithDebug = parcel.ReadBool(); in ReadFromParcel() 88 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isStartWithDebug); in Marshalling()
|
/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | child_process_record.h | 38 const sptr<IRemoteObject> &mainProcessCb, int32_t childProcessCount, bool isStartWithDebug); 45 int32_t childProcessCount, bool isStartWithDebug); 62 bool isStartWithDebug();
|
/foundation/ability/ability_runtime/frameworks/native/runtime/ |
H A D | cj_runtime.cpp | 203 bool isStartWithDebug = dOption.isStartWithDebug; in StartDebugMode() local 211 [bundleName, isStartWithDebug, isDebugApp](int socketFd, std::string option) { in StartDebugMode() 219 ConnectServerManager::Get().SendDebuggerInfo(isStartWithDebug, isDebugApp); in StartDebugMode()
|
H A D | js_runtime.cpp | 176 bool isStartWithDebug = dOption.isStartWithDebug; in StartDebugMode() local 178 TAG_LOGD(AAFwkTag::JSRUNTIME, "Ark VM is starting debug mode [%{public}s]", isStartWithDebug ? "break" : "normal"); in StartDebugMode() 185 isStartWithDebug, instanceId, weak, isDebugApp] (int socketFd, std::string option) { in StartDebugMode() 196 ConnectServerManager::Get().SendDebuggerInfo(isStartWithDebug, isDebugApp); in StartDebugMode() 209 DebuggerConnectionHandler(isDebugApp, isStartWithDebug); in StartDebugMode() 212 void JsRuntime::DebuggerConnectionHandler(bool isDebugApp, bool isStartWithDebug) in DebuggerConnectionHandler() argument 217 panda::JSNApi::DebugOption option = {ARK_DEBUGGER_LIB_PATH, isDebugApp ? isStartWithDebug : false}; in DebuggerConnectionHandler() 219 jsEnv_->NotifyDebugMode(getproctid(), ARK_DEBUGGER_LIB_PATH, instanceId_, isDebugApp, isStartWithDebug); in DebuggerConnectionHandler() local 315 bool isStartWithDebug in StartProfiler() local 346 DebuggerConnectionManager(bool isDebugApp, bool isStartWithDebug, const DebugOption dOption) DebuggerConnectionManager() argument [all...] |
/foundation/ability/ability_runtime/frameworks/native/ability/native/child_process_manager/ |
H A D | child_process_manager.cpp | 116 " options.isolationMode:%{public}d", childProcessType, g_debugOption.isStartWithDebug, in StartChildProcessWithArgs() 131 request.isStartWithDebug = g_debugOption.isStartWithDebug; in StartChildProcessWithArgs() 253 TAG_LOGD(AAFwkTag::PROCESSMGR, "StartDebugMode, isStartWithDebug: %{public}d, processName: %{public}s, " in HandleChildProcessBySelfFork() 254 "isDebugApp: %{public}d, isStartWithNative: %{public}d", g_debugOption.isStartWithDebug, in HandleChildProcessBySelfFork() 464 void ChildProcessManager::SetForkProcessDebugOption(const std::string bundleName, const bool isStartWithDebug, in SetForkProcessDebugOption() argument 468 g_debugOption.isStartWithDebug = isStartWithDebug; in SetForkProcessDebugOption() 481 debugOption.isStartWithDebug = processInfo->isStartWithDebug; in SetAppSpawnForkDebugOption() [all...] |
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | child_process_request.h | 32 bool isStartWithDebug = false; member
|
H A D | child_process_info.h | 46 bool isStartWithDebug = false; member
|
/foundation/ability/ability_runtime/test/unittest/cj_runtime_test/ |
H A D | cj_runtime_test.cpp | 152 debugOption.isStartWithDebug = needBreakPoint; in HWTEST_F() 157 EXPECT_TRUE(debugOption.isStartWithDebug); in HWTEST_F()
|
/foundation/ability/ability_runtime/interfaces/inner_api/runtime/include/ |
H A D | runtime.h | 75 bool isStartWithDebug = false; member
|
H A D | js_runtime.h | 101 void DebuggerConnectionHandler(bool isDebugApp, bool isStartWithDebug); 127 void DebuggerConnectionManager(bool isDebugApp, bool isStartWithDebug, const DebugOption dOption);
|
/foundation/ability/ability_runtime/interfaces/inner_api/child_process_manager/include/ |
H A D | child_process_manager.h | 64 void SetForkProcessDebugOption(const std::string bundleName, const bool isStartWithDebug, const bool isDebugApp,
|
/foundation/ability/ability_runtime/test/fuzztest/abilitychildprocessrecord_fuzzer/ |
H A D | abilitychildprocessrecord_fuzzer.cpp | 74 childRecord->isStartWithDebug(); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | child_main_thread.cpp | 212 TAG_LOGD(AAFwkTag::APPKIT, "StartDebugMode, isStartWithDebug is %{public}d, processName is %{public}s, " in HandleLoadJs() 213 "isDebugApp is %{public}d, isStartWithNative is %{public}d", processInfo_->isStartWithDebug, in HandleLoadJs() 253 TAG_LOGD(AAFwkTag::APPKIT, "StartDebugMode, isStartWithDebug is %{public}d, processName is %{public}s, " in HandleLoadArkTs() 254 "isDebugApp is %{public}d, isStartWithNative is %{public}d", processInfo_->isStartWithDebug, in HandleLoadArkTs()
|
H A D | main_thread.cpp | 1482 TAG_LOGD(AAFwkTag::APPKIT, "isStartWithDebug:%{public}d, debug:%{public}d, isNativeStart:%{public}d", in HandleLaunchApplication() 1523 debugOption.isStartWithDebug = appLaunchData.GetDebugApp(); in HandleLaunchApplication()
|