/arkcompiler/toolchain/tooling/test/entry/ |
H A D | test_debugger_entry.cpp | 19 extern "C" bool StartDebug(const std::string &name, EcmaVM *vm, bool isDebugMode) in StartDebug() argument 21 return StartDebuggerImpl(name, vm, isDebugMode); in StartDebug()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | js_debugger_manager.h | 63 void SetDebugMode(bool isDebugMode) in SetDebugMode() argument 65 if (isDebugMode_ == isDebugMode) { in SetDebugMode() 69 isDebugMode_ = isDebugMode; in SetDebugMode() 71 if (isDebugMode) { in SetDebugMode()
|
/arkcompiler/toolchain/tooling/test/utils/ |
H A D | test_entry.h | 24 bool StartDebuggerImpl(const std::string &name, EcmaVM *vm, bool isDebugMode);
|
H A D | test_entry.cpp | 27 bool StartDebuggerImpl([[maybe_unused]] const std::string &name, EcmaVM *vm, [[maybe_unused]] bool isDebugMode) in StartDebuggerImpl() argument
|
/arkcompiler/toolchain/inspector/ |
H A D | inspector.h | 35 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode,
|
H A D | inspector.cpp | 374 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode, in StartDebug() argument 377 LOGI("StartDebug, componentName = %{private}s, isDebugMode = %{private}d, instanceId = %{private}d", in StartDebug() 378 componentName.c_str(), isDebugMode, instanceId); in StartDebug() 399 if (isDebugMode && port > 0) { in StartDebug()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | runtime.h | 210 void SetDebugMode(bool isDebugMode) in SetDebugMode() argument 212 isDebugMode_ = isDebugMode; in SetDebugMode()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | dfx_jsnapi.cpp | 913 debugOption.isDebugMode = false; in StartProfiler() 921 debugOption.isDebugMode = true; in StartProfiler()
|
H A D | jsnapi.cpp | 48 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode, int32_t instanceId,
|
H A D | jsnapi_expo.cpp | 4525 vm->GetJsDebuggerManager()->SetDebugMode(option.isDebugMode); in StartDebuggerCheckParameters() 4529 "PandaDebugger", vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebuggerCheckParameters() 4547 LOG_ECMA(INFO) << "JSNApi::StartDebugger, isDebugMode = " << option.isDebugMode in StartDebugger() 4555 vm->GetJsDebuggerManager()->SetDebugMode(option.isDebugMode); in StartDebugger() 4557 DEBUGGER_NAME, vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebugger() 4578 LOG_ECMA(INFO) << "JSNApi::StartDebuggerForOldProcess, isDebugMode = " << option.isDebugMode in StartDebuggerForOldProcess() 4601 "PandaDebugger", vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebuggerForOldProcess() 4615 vm->GetJsDebuggerManager()->SetDebugMode(option.isDebugMode); in StartDebuggerForOldProcess() [all...] |
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 1494 bool isDebugMode = false; member
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.cpp | 40 GateRef isDebugMode = Load(VariableType::BOOL(), glue, isDebugModeOffset); \ 43 BRANCH(isDebugMode, &isDebugModeTrue, &isDebugModeFalse); \
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | interpreter_stub.cpp | 200 GateRef isDebugMode = Load(VariableType::BOOL(), glue, isDebugModeOffset); \
203 BRANCH(isDebugMode, &isDebugModeTrue, &isDebugModeFalse); \
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | ffi_workload.cpp | 5542 res.isDebugMode = true; in HWTEST_F_L0()
|