Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 399) sorted by relevance

12345678910>>...16

/developtools/hiperf/demo/cpp/
Dhiperf_example_cmd.cpp142 USED_FUNCTION void LoopFunction(milliseconds timeOutMS, const Option &option) in LoopFunction() argument
148 if (option.sleepms > 0) { in LoopFunction()
151 std::this_thread::sleep_for(std::chrono::milliseconds(option.sleepms)); in LoopFunction()
154 if (option.mmap) { in LoopFunction()
157 if (option.iowait) { in LoopFunction()
160 if (option.branch) { in LoopFunction()
174 if (!option.nonew) { in LoopFunction()
181 if (!option.nofunc) { in LoopFunction()
188 inline void Loop(milliseconds timeOutMS, const Option &option) in Loop() argument
191 LoopFunction(timeOutMS, option); in Loop()
[all …]
/developtools/smartperf_host/ide/src/trace/component/
DSpFlags.ts157 configOption.value = optionItem.option;
158 configOption.textContent = optionItem.option;
233 switchOptions: [{ option: 'Enabled' }, { option: 'Disabled', selected: true }],
238 switchOptions: [{ option: 'Enabled' }, { option: 'Disabled', selected: true }],
244 switchOptions: [{ option: 'Enabled' }, { option: 'Disabled', selected: true }],
249 switchOptions: [{ option: 'Enabled' }, { option: 'Disabled', selected: true }],
259 let selectedOption = config.switchOptions.filter((option) => {
260 return option.selected;
262 let value = config.switchOptions[0].option;
264 value = selectedOption[0].option;
[all …]
DSpRecordTrace.ts432 let option = document.createElement('option');
433 option.className = 'select';
434 option.textContent = dev;
435 this.deviceSelect!.appendChild(option);
437 option.selected = true;
440 SpRecordTrace.serialNumber = option.value;
455 let option = document.createElement('option');
456 option.className = 'select';
458 option.value = dev.serialNumber;
460 option.textContent = dev!.serialNumber ? dev!.serialNumber!.toString() : 'hdc Device';
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpFlags.ts152 configOption.value = optionItem.option;
153 configOption.textContent = optionItem.option;
228 switchOptions: [{ option: 'Enabled' }, { option: 'Disabled', selected: true }],
238 let selectedOption = config.switchOptions.filter((option) => {
239 return option.selected;
241 let value = config.switchOptions[0].option;
243 value = selectedOption[0].option;
259 config.switchOptions.forEach((option) => {
260 if (option.option === cfg) {
261 option.selected = true;
[all …]
DSpRecordTrace.ts432 let option = document.createElement('option');
433 option.className = 'select';
434 option.textContent = dev;
435 this.deviceSelect!.appendChild(option);
437 option.selected = true;
440 SpRecordTrace.serialNumber = option.value;
455 let option = document.createElement('option');
456 option.className = 'select';
458 option.value = dev.serialNumber;
460 option.textContent = dev!.serialNumber ? dev!.serialNumber!.toString() : 'hdc Device';
[all …]
/developtools/packing_tool/adapter/ohos/
DREADME42 java -jar hmos_app_packing_tool.jar --mode <option> --json-path <option> --maple-so-path [option]
43 --profile-path [option] --maple-so-dir [option] --dex-path [option] --lib-path [option] --assets-pa…
44 --resources-path [option] --shell-apk-path [option] --index-path [option] --out-path <option> --for…
71 java -jar hmos_app_packing_tool.jar --mode <options> --json-path <option>
72 --jar-path <option> --lib-path [option] --assets-path [option]
73 --resources-path [option] --out-path <option> --force [option]
90 java -jar hmos_app_packing_tool.jar --mode <option> --hap-path <option> --out-path <option>
91 --pack-info-path <option> --signature-path [option] --certificate-path [option] --force [option]
171 java -jar hmos_app_unpacking_tool.jar --mode <options> --hap-path <option>
172 --out-path [option] --force [option] --unpackapk [option]
[all …]
/developtools/profiler/host/smartperf/ide/src/hdc/message/
DUSBHead.ts24 constructor(flag: number[], option: number, sessionId: number, dataSize: number) {
27 this._option = option;
68 let option = data.getUint8(2);
71 return new USBHead([flagZero, flagOne], option, sessionId, dataSize);
82 get option(): number { method in USBHead
86 set option(value: number) { method in USBHead
/developtools/smartperf_host/ide/src/hdc/message/
DUSBHead.ts24 constructor(flag: number[], option: number, sessionId: number, dataSize: number) {
27 this._option = option;
68 let option = data.getUint8(2);
71 return new USBHead([flagZero, flagOne], option, sessionId, dataSize);
82 get option(): number { method in USBHead
86 set option(value: number) { method in USBHead
/developtools/packing_tool/
DREADME_zh.md21 …r --mode hap --json-path <option> --resources-path <option> --ets-path <option> --index-path <opti…
28option> --maple-so-path [option] --profile-path [option] --maple-so-dir [option] --dex-path [optio…
59 …mode har --json-path [option] --jar-path [option] --lib-path [option] --resources-path [option] --…
79 …p-path <option> --hsp-path <option> --out-path [option] --signature-path [option] --certificate-pa…
127 …p_packing_tool.jar --mode hqf --json-path <option> --lib-path <option> --ets-path <option> --out-p…
146 java -jar app_packing_tool.jar --mode appqf --hqf-list <option> --out-path <option>
163 …r --mode hsp --json-path <option> --resources-path <option> --ets-path <option> --index-path <opti…
194 java -jar app_unpacking_tool.jar --mode <option> --hap-path <options> --out-path [option] --force [
212 …ar app_unpacking_tool.jar --mode <options> --har-path <option> --out-path [option] --force [option]
229 …ar app_unpacking_tool.jar --mode <options> --app-path <option> --out-path [option] --force [option]
[all …]
/developtools/hiperf/interfaces/kits/js/napi/
Dhiperf_client_napi.cpp142 const std::string option = GetJsStringFromOption(env, info); in SetOutputFilename() local
143 g_hiperfRecordOption->SetOutputFilename(option); in SetOutputFilename()
188 std::string option = GetJsStringFromOption(env, info); in SetSelectCpus() local
189 g_hiperfRecordOption->SetSelectCpus(StringSplitToInt(option)); in SetSelectCpus()
200 uint32_t option = GetUintFromOption(env, info); in SetTimeStopSec() local
201 g_hiperfRecordOption->SetTimeStopSec(option); in SetTimeStopSec()
212 uint32_t option = GetUintFromOption(env, info); in SetFrequency() local
213 g_hiperfRecordOption->SetFrequency(option); in SetFrequency()
224 uint32_t option = GetUintFromOption(env, info); in SetPeriod() local
225 g_hiperfRecordOption->SetPeriod(option); in SetPeriod()
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/vmtracker/
DTabPaneDmaVmTrackerComparison.ts76 let option = new LitSelectOption();
77 option.innerHTML = 'File Name';
78 option.setAttribute('disabled', 'disabled');
79 this.selectEl?.appendChild(option);
81 option.setAttribute('value', dmaVmTrackerComList[0].name);
83 option.setAttribute('value', dmaVmTrackerComList[0].name);
87 this.selectEl!.querySelectorAll('lit-select-option').forEach((option) => {
88 option.addEventListener('onSelected', async (e) => {
DTabPaneGpuMemoryVmTrackerComparison.ts88 let option = new LitSelectOption();
89 option.innerHTML = 'File Name';
90 option.setAttribute('disabled', 'disabled');
91 this.selectEl?.appendChild(option);
93 option.setAttribute('value', dataList[0].name);
95 option.setAttribute('value', dataList[0].name);
99 this.selectEl!.querySelectorAll('lit-select-option').forEach((option) => {
100 option.addEventListener('onSelected', async (e) => {
DTabPanePurgPinComparisonVM.ts57 let option = new LitSelectOption();
58 option.innerHTML = 'File Name';
59 option.setAttribute('disabled', 'disabled');
60 this.selectEl?.appendChild(option);
62 option.setAttribute('value', purgePinComVmList[0].name);
DTabPanePurgTotalComparisonVM.ts57 let option = new LitSelectOption();
58 option.innerHTML = 'File Name';
59 option.setAttribute('disabled', 'disabled');
60 this.selectEl?.appendChild(option);
62 option.setAttribute('value', purgeTotalComList[0].name);
DTabPaneVmTrackerShmComparison.ts103 let option = new LitSelectOption(); variable
104 option.innerHTML = 'File Name';
105 option.setAttribute('disabled', 'disabled');
106 this.selectEl?.appendChild(option);
108 option.setAttribute('value', fileArr[0].name);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneGpuMemoryComparison.ts87 let option = new LitSelectOption();
88 option.innerHTML = 'File Name';
89 option.setAttribute('disabled', 'disabled');
90 this.selectEl?.appendChild(option);
92 option.setAttribute('value', gpuMemoryComList[0].name);
94 option.setAttribute('value', gpuMemoryComList[0].name);
98 this.selectEl!.querySelectorAll('lit-select-option').forEach((option) => {
99 option.addEventListener('onSelected', async (e) => {
DTabPaneDmaAbilityComparison.ts85 let option = new LitSelectOption();
86 option.innerHTML = 'File Name';
87 option.setAttribute('disabled', 'disabled');
88 this.selectEl?.appendChild(option);
90 option.setAttribute('value', dmaAbilityComList[0].name);
95 this.selectEl!.querySelectorAll('lit-select-option').forEach((option) => {
96 option.addEventListener('onSelected', (e) => {
DTabPanePurgPinComparisonAbility.ts56 let option = new LitSelectOption();
57 option.innerHTML = 'File Name';
58 option.setAttribute('disabled', 'disabled');
59 this.selectEl?.appendChild(option);
61 option.setAttribute('value', purgePinComFileArr[0].name);
DTabPanePurgTotalComparisonAbility.ts56 let option = new LitSelectOption();
57 option.innerHTML = 'File Name';
58 option.setAttribute('disabled', 'disabled');
59 this.selectEl?.appendChild(option);
60 if (purgeTotalComFileArr[0].name) option.setAttribute('value', purgeTotalComFileArr[0].name);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuClickSelectComparison.ts94 let option = new LitSelectOption();
95 option.innerHTML = 'File Name';
96 option.setAttribute('disabled', 'disabled');
97 this.selectEl?.appendChild(option);
99 option.setAttribute('value', gpuSelectComList[0].name);
101 option.setAttribute('value', gpuSelectComList[0].name);
105 this.selectEl!.querySelectorAll('lit-select-option').forEach((option) => {
106 option.addEventListener('onSelected', async (e) => {
/developtools/smartperf_host/ide/src/base-ui/select/
DLitAllocationSelect.ts51 let option = document.createElement('div');
52 option.className = 'option';
53 option.innerHTML = item;
54 option.style.padding = '8px 10px';
55 this.selectAllocationOptions.appendChild(option);
/developtools/profiler/host/smartperf/ide/src/base-ui/select/
DLitAllocationSelect.ts51 let option = document.createElement('div');
52 option.className = 'option';
53 option.innerHTML = item;
54 option.style.padding = '8px 10px';
55 this.selectAllocationOptions.appendChild(option);
/developtools/smartperf_host/ide/test/hdc/message/
DUSBHead.test.ts35 expect(usbHead.option).toBeUndefined();
39 usbHead.option = true;
40 expect(usbHead.option).toBeTruthy();
/developtools/profiler/host/smartperf/ide/src/trace/component/schedulingAnalysis/
DTop20FrequencyThread.ts131 let option = new LitSelectOption();
132 option.setAttribute('value', it.tid + '');
133 option.textContent = it.name;
134 return option;
234 queryLogicWorker(option: string, log: string, handler: (res: any) => void) {
236 procedurePool.submitWithName('logic1', option, { tid: this.currentTid }, undefined, handler);
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/
DTop20FrequencyThread.ts132 let option = new LitSelectOption();
133 option.setAttribute('value', it.tid + '');
134 option.textContent = it.name;
135 return option;
236 queryLogicWorker(option: string, log: string, handler: (res: any) => void) {
238 procedurePool.submitWithName('logic1', option, { tid: this.currentTid }, undefined, handler);

12345678910>>...16