Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 127) sorted by relevance

123456

/developtools/integration_verification/tools/startup_guard/rules/NO-Config-Cmds-In-Init/
DREADME.md47 2. 服务是条件启动, 即"start-mode" : "condition", 并且通过start命令拉起服务。
55 "start-mode":"condition",
64 1. start-mode:"condition", 服务启动方式。
65 2. service:通过"start-mode" : "condition" 启动的服务。
81 1. 服务是boot启动, 即"start-mode" : "boot"的服务。
89 "start-mode":"boot",
98 1. start-mode:"boot",服务启动方式。
99 2. service:通过"start-mode" : "boot" 启动的服务。
150 [WARNING]: 'storage_daemon' cannot be started in boot mode
151 [WARNING]: 'hilogd' cannot be started in conditional mode
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dproject_config.ts141 let mode = this.isPreview ? 'preview' : 'build'; variable
143 …this.aceProfilePath = `${proPath}/${this.entryModuleName}/${mode}/res/default/resources/base/profi…
148 this.aceModuleJsonPath = `${proPath}/${this.entryModuleName}/${mode}/module.json`;
149 this.appResource = `${proPath}/${this.entryModuleName}/${mode}/res/default/ResourceTable.txt`;
152 this.aceBuildJson = `${proPath}/${this.entryModuleName}/${mode}/loader.json`;
153 this.cachePath = `${proPath}/${this.entryModuleName}/${mode}`;
154 this.aceModuleBuild = `${proPath}/${this.entryModuleName}/${mode}`;
157 this.buildPath = `${proPath}/${this.entryModuleName}/${mode}`;
158 this.patchAbcPath = `${proPath}/${this.entryModuleName}/${mode}/hotReload`;
/developtools/packing_tool/adapter/ohos/
DREADME22 For example: --mode hap --mode app
23 the mode value is app.
25 For example: --mode hap app
26 the mode value is hap.
28 5.Command must be lowercase(such as:--mode), and file's suffix is case insensitive,
38 9.In app package mode, signature and certificate may be resource files later,
42 java -jar app_packing_tool.jar --mode <option> --json-path <option> --maple-so-path [option]
47 --mode not null must be hap.
71 java -jar app_packing_tool.jar --mode <options> --json-path <option>
75 --mode not null must be har.
[all …]
/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/testcases/
DNote.py31 self.common_oh.click(self.Phone1, 530, 1100, mode='NORMAL')
34 self.common_oh.touchByText(self.Phone1, '数学公式', mode='NORMAL')
37 self.common_oh.click(self.Phone1, 360, 280, mode='NORMAL')
38 self.common_oh.click(self.Phone1, 360, 280, mode='NORMAL')
54 self.common_oh.click(self.Phone1, 515, 1240, mode='NORMAL')
57 self.common_oh.click(self.Phone1, 360, 1170, mode='NORMAL')
DCamera.py26 self.common_oh.click(self.Phone1, 360, 1095, mode='NORMAL')
29 self.common_oh.click(self.Phone1, 430, 980, mode='NORMAL')
32 self.common_oh.click(self.Phone1, 360, 1095, mode='NORMAL')
35 self.common_oh.click(self.Phone1, 320, 1095, mode='NORMAL')
38 self.common_oh.click(self.Phone1, 200, 1095, mode='NORMAL')
/developtools/smartperf_host/trace_streamer/src/base/
Dfile.cpp55 int32_t OpenFile(const std::string& path, int32_t flags, uint32_t mode) in OpenFile() argument
57 TS_ASSERT((flags & O_CREAT) == 0 || mode != K_FILE_MODE_INVALID); in OpenFile()
59 int32_t fd(_open(path.c_str(), flags | O_BINARY, mode)); in OpenFile()
61 int32_t fd(open(path.c_str(), flags | O_CLOEXEC, mode)); in OpenFile()
/developtools/hdc/hdc_rust/src/daemon/
Ddaemon_app.rs127 mode: u8, in put_app_finish()
132 msg.push(mode); in put_app_finish()
168 mode: u8, in handle_execute_result()
173 put_app_finish(session_id, channel_id, mode, 1, &mut m[..]).await; in handle_execute_result()
179 mode, in handle_execute_result()
189 let mode = config::AppModeType::UnInstall as u8; in do_app_uninstall() localVariable
192 handle_execute_result(session_id, channel_id, result, mode).await; in do_app_uninstall()
195 handle_execute_result(session_id, channel_id, result, mode).await; in do_app_uninstall()
205 let mode = config::AppModeType::Install as u8; in do_app_install() localVariable
208 handle_execute_result(session_id, channel_id, result, mode).await; in do_app_install()
[all …]
/developtools/hdc/src/common/
Dtransfer.cpp336 FileMode &mode = context->fileMode; in OnFileOpen() local
338 uv_fs_chmod(nullptr, &fs, context->localPath.c_str(), mode.perm, nullptr); in OnFileOpen()
339 uv_fs_chown(nullptr, &fs, context->localPath.c_str(), mode.uId, mode.gId, nullptr); in OnFileOpen()
343 if (!mode.context.empty()) { in OnFileOpen()
344 WRITE_LOG(LOG_DEBUG, "setfilecon from master = %s", mode.context.c_str()); in OnFileOpen()
345 setfilecon(context->localPath.c_str(), mode.context.c_str()); in OnFileOpen()
426 FileMode mode; in GetSubFilesRecursively() local
427 mode.fullName = currentDirname; in GetSubFilesRecursively()
428 mode.perm = fs.statbuf.st_mode; in GetSubFilesRecursively()
429 mode.uId = fs.statbuf.st_uid; in GetSubFilesRecursively()
[all …]
Dfile.cpp126 mode_t mode = mode_t(~S_IFMT); in SetMasterParameters() local
127 …if (!Base::CheckDirectoryOrPath(context->localPath.c_str(), true, true, errStr, mode) && (mode & S… in SetMasterParameters()
195 auto mode = ctxNow.dirMode.back(); in FileModeSync() local
197 mode.fullName.c_str(), mode.perm, mode.uId, mode.gId, mode.context.c_str()); in FileModeSync()
198 string s = SerialStruct::SerializeToString(mode); in FileModeSync()
/developtools/packing_tool/
DREADME_zh.md21 java -jar app_packing_tool.jar --mode hap --json-path <option> --resources-path <option> --ets-path…
28 java -jar app_packing_tool.jar --mode hap --json-path <option> --maple-so-path [option] --profile-p…
35 | --mode | 是 | hap | 打包类型。 …
59 java -jar app_packing_tool.jar --mode har --json-path [option] --jar-path [option] --lib-path [opti…
66 | --mode | 是 | har | 打包类型。 …
79 java -jar app_packing_tool.jar --mode app --hap-path <option> --hsp-path <option> --out-path [optio…
86 | --mode | 是 | app | 多个hap需满足hap的合法性校验。 …
104 java -jar app_packing_tool.jar --mode multiApp --hap-list 1.hap,2.hap --app-list 1.app,2.app --out-…
111 | --mode | 是 | multiApp | 打包类型,在将多个hap打入同一个app时,需保证每个hap满足合法性校验规则。 …
127 java -jar app_packing_tool.jar --mode hqf --json-path <option> --lib-path <option> --ets-path <opti…
[all …]
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/pkgs/
Dsimple_yaml_tool.py25 def read_yaml(cls, file_name: str, mode: str = "r", encoding: str = "utf-8") -> Dict:
26 with open(file_name, mode, encoding=encoding) as f:
/developtools/hdc/src/daemon/
Ddaemon_app.cpp103 if (mode == APPMOD_INSTALL) { in AsyncInstallFinish()
110 vecBuf.push_back(mode); in AsyncInstallFinish()
154 mode = APPMOD_INSTALL; in PackageShell()
156 mode = APPMOD_UNINSTALL; in PackageShell()
164 mode = APPMOD_SIDELOAD; in Sideload()
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/resources/
Dhelp.txt143 -mode : signature mode, required fields, including localSign/remoteSign;
149 … -keystoreFile : keystore file, if signature mode is localSign, required fields, JKS or P12 format;
155 …sign-profile -mode localSign -keyAlias "oh-profile-key-v1" -keyPwd ****** -profileCertFile "D:\OH\…
166 -mode : signature mode, required fields, including localSign/remoteSign/remoteResign;
168 -keyPwd : key password, optional fields on localSign mode;
169 … signature certificate file, required fields on localSign mode, optional fields on remoteSign mode;
174 …-keystoreFile : keystore file, if signature mode is localSign, required fields on localSign mode, …
175 -keystorePwd : keystore password, optional fields on localSign mode;
180 -signServer : remote signer plugin, required fields on remoteSign mode;
181 -signerPlugin : remote sign service url, required fields on remoteSign mode;
[all …]
/developtools/profiler/device/etc/
Dhiprofiler_daemon.cfg20 "start-mode" : "condition"
39 "start-mode" : "condition"
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/java/com/ohos/hapsigntool/
DHapSignTool.java276 String mode = params.getString(Options.MODE); in runSignApp() local
277 if (!LOCAL_SIGN.equalsIgnoreCase(mode) in runSignApp()
278 && !REMOTE_SIGN.equalsIgnoreCase(mode) in runSignApp()
279 && !"remoteResign".equalsIgnoreCase(mode)) { in runSignApp()
283 if (LOCAL_SIGN.equalsIgnoreCase(mode)) { in runSignApp()
318 String mode = params.getString(Options.MODE); in runSignProfile() local
319 if (!LOCAL_SIGN.equalsIgnoreCase(mode) && !REMOTE_SIGN.equalsIgnoreCase(mode)) { in runSignProfile()
322 if (LOCAL_SIGN.equalsIgnoreCase(mode)) { in runSignProfile()
/developtools/hdc/src/host/
Dhost_app.cpp119 bool HdcHostApp::CheckInstallContinue(AppModType mode, bool lastResult, const char *msg) in CheckInstallContinue() argument
122 switch (mode) { in CheckInstallContinue()
163 AppModType mode = static_cast<AppModType>(payload[0]); in CommandDispatch() local
166 ret = CheckInstallContinue(mode, result, s.c_str()); in CommandDispatch()
/developtools/hapsigner/
DREADME_ZH.md80 … sign-profile -keyAlias "oh-profile1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -profil…
85 ├── -mode #签名模式,必填项,包括localSign,remoteSign
101 java -jar hap-sign-tool.jar sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "l…
106 ├── -mode #签名模式,必填项,包括localSign,remoteSign
262 ├── -mode # 签名模式,必填项,包括localSign,remoteSign
281 ├── -mode # 签名模式,必填项,包括localSign,remoteSign,remoteResign
/developtools/hapsigner/tools/
Dcommands.config82 …'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -in…
83 …'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -in…
84 …'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -in…
89 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
90 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
91 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
92 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
93 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
94 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
95 …'sign-app -keyAlias "oh-app1-key-v1" -signAlg "SHA256withECDSA" -mode "localSign" -appCertFile "ap…
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/
DLightAdjust.ets44 .onChange((value: number, mode: SliderChangeMode) => {
47 console.info('value:' + value + 'mode:' + mode.toString())
/developtools/profiler/protos/types/plugins/arkts_plugin/
Darkts_plugin_config.proto26 …// When the 'snapshot' mode is enabled in memory, it denotes the data fetching interval, measured …
32 …// When the CPU profiler mode is active, it signifies the data capturing interval, measured in mic…
/developtools/smartperf_host/ide/src/base-ui/table/
Dlit-table-group.ts22 const shadowRoot = this.attachShadow({ mode: 'open' });
/developtools/ace_js2bundle/ace-loader/test/card/testcase/common/
Dmedia.css1 @media (dark-mode:true) {
/developtools/smartperf_host/trace_streamer/src/protos/services/
Dprofiler_service_types.proto54 string result_file = 3; // for OFFLINE mode, result file path
55 uint32 result_max_size = 4; // for OFFLINE mode, result file max size in KB
56 uint32 sample_duration = 5; // for OFFLINE mode, sample duration in ms
/developtools/smartperf_host/ide/test/trace/component/chart/
DFrameChart.test.ts150 expect(frameChart.mode).toBeUndefined();
154 frameChart.mode = false;
155 expect(frameChart.mode).toBeFalsy();
/developtools/profiler/protos/services/
Dprofiler_service_types.proto54 string result_file = 3; // for OFFLINE mode, result file path
55 uint32 result_max_size = 4; // for OFFLINE mode, result file max size in KB
56 uint32 sample_duration = 5; // for OFFLINE mode, sample duration in ms

123456