Home
last modified time | relevance | path

Searched refs:isDebug (Results 1 – 21 of 21) sorted by relevance

/developtools/hdc/src/register/
Dhdc_connect.cpp44 void ConnectManagement::SetDebug(bool isDebug) in SetDebug() argument
46 isDebug_ = isDebug; in SetDebug()
94 bool isDebug = static_cast<ConnectManagement*>(pkgContent)->GetDebug(); in HdcConnectRun() local
96 g_clsHdcJdwpSimulator = new (std::nothrow) HdcJdwpSimulator(processName, pkgName, isDebug, cb); in HdcConnectRun()
104 void StartConnect(const std::string& processName, const std::string& pkgName, bool isDebug, Callbac… in StartConnect() argument
113 g_connectManagement->SetDebug(isDebug); in StartConnect()
Dhdc_connect.h27 void StartConnect(const std::string& processName, const std::string& pkgName, bool isDebug, Callbac…
43 void SetDebug(bool isDebug);
Dhdc_jdwp.h27 …explicit HdcJdwpSimulator(std::string processName, std::string pkgName, bool isDebug, Callback cb);
43 uint8_t isDebug; // 1:debug 0:release member
Dhdc_jdwp.cpp22 …cJdwpSimulator(const std::string processName, const std::string pkgName, bool isDebug, Callback cb) in HdcJdwpSimulator() argument
26 isDebug_ = isDebug; in HdcJdwpSimulator()
81 bool isDebug = thisClass->isDebug_; in ConnectJpid() local
100 jsMsg->isDebug = isDebug; in ConnectJpid()
103 jsMsg->pid, pp.c_str(), isDebug, jsMsg->msgLen); in ConnectJpid()
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dprocess_ark_config.ts30 import { isAotMode, isDebug } from '../utils';
54 isDebug: boolean;
70 isDebug: false
76 arkConfig.isDebug = isDebug(projectConfig);
145 if (projectConfig.compileHar || !isDebug(projectConfig)) {
Dcommon_mode.ts79 if (this.arkConfig.isDebug) {
90 if (this.arkConfig.isDebug) {
/developtools/hdc/src/daemon/
Djdwp.h47 uint8_t isDebug; // 1:debugApp 0:releaseApp member
81 uint8_t isDebug; member
Djdwp.cpp67 ctx->isDebug = 0; in MallocContext()
144 ctxJdwp->isDebug = jsMsg->isDebug; in ReadStream()
155 pid, ctxJdwp->pkgName.c_str(), ctxJdwp->isDebug); in ReadStream()
193 if (hj->isDebug) { in GetProcessListExtendPkgName()
198 if (!hj->isDebug) { in GetProcessListExtendPkgName()
/developtools/ace_ets2bundle/compiler/src/
Dprocess_module_files.ts41 import { isAotMode, isDebug } from './fast_build/ark_compiler/utils';
70 if (projectConfig.compileHar || (!isDebug(projectConfig) && isAotMode(projectConfig))) {
Dgen_abc_plugin.ts98 let isDebug: boolean = false; variable
168 isDebug = isDebug_;
649 if (!isDebug && projectConfig.projectRootPath) {
730 if (isDebug) {
747 if (isDebug) {
762 if (isDebug) {
/developtools/hdc/test/unittest/register/
Dregister_test.cpp116 bool isDebug = static_cast<ConnectManagement*>(pkgContent)->GetDebug(); in HdcConnectRunTest() local
117 … g_hdcJdwpSimulator = new (std::nothrow) HdcJdwpSimulator(processName, pkgName, isDebug, nullptr); in HdcConnectRunTest()
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts29 isDebug
186 const sourceFile: string = isDebug(this.projectConfig) ? info.sourceFile :
249 if (!this.arkConfig.isDebug && this.projectConfig.projectRootPath) {
/developtools/ace_js2bundle/ace-loader/src/
DgenAbc-plugin.js44 let isDebug = false; variable
75 isDebug = isDebug_;
198 if (!isDebug && (process.env.aceBuildJson && fs.existsSync(process.env.aceBuildJson))) {
477 if (isDebug) {
494 if (isDebug) {
509 if (isDebug) {
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dtransform.ts25 isDebug,
Dutils.ts65 export function isDebug(projectConfig: Object): boolean { function
153 if (projectConfig.compileHar || !isDebug(projectConfig)) {
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts57 isDebug
149 …this.sourceMapPath = this.arkConfig.isDebug ? path.join(this.projectConfig.aceModuleBuild, SOURCEM…
322 sourceFile = isDebug(this.projectConfig) ? toUnixPath(sourceFile) :
342 if (!isDebug(this.projectConfig)) {
755 if (isDebug(projectConfig)) {
Dmodule_source_file.ts32 isDebug,
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dprocess_ark_config.test.ts75 expect(arkConfig.isDebug === true).to.be.true;
90 expect(arkConfig.isDebug === false).to.be.true;
105 expect(arkConfig.isDebug === true).to.be.true;
120 expect(arkConfig.isDebug === true).to.be.true;
Dutils.test.ts27 isDebug,
489 const returnInfo = isDebug(this.rollup.share.projectConfig);
495 const returnInfo = isDebug(this.rollup.share.projectConfig);
501 const returnInfo = isDebug(this.rollup.share.projectConfig);
507 const returnInfo = isDebug(this.rollup.share.projectConfig);
513 const returnInfo = isDebug(projectConfig);
519 const returnInfo = isDebug(projectConfig);
/developtools/packing_tool/adapter/ohos/
DHapVerifyInfo.java467 public boolean isDebug() { in isDebug() method in HapVerifyInfo
DHapVerify.java171 verifyCollection.debug = hapVerifyInfos.get(0).isDebug(); in checkAppFieldsIsSame()
218 if (verifyCollection.debug != hapVerifyInfo.isDebug()) { in checkAppFieldsIsSame()