| /developtools/smartperf_host/ide/test/base-ui/select/ |
| D | LitSelect.test.ts | 27 let select = document.querySelector('#litSelect') as LitSelect; variable 28 expect(select).not.toBeUndefined(); 33 let select = document.querySelector('#litSelect') as LitSelect; variable 34 select.value = 'value'; 35 expect(select.value).toBe('value'); 40 let select = document.querySelector('#litSelect') as LitSelect; variable 41 select.border = 'value'; 42 expect(select.border).toBe('true'); 50 let select = document.querySelector('#litSelect') as LitSelect; variable 51 select.listHeight = true; [all …]
|
| D | LitAllocationSelect.test.ts | 67 const select = document.getElementById('select'); constant 69 select!.onclick = onclick; 70 select!.click();
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/ |
| D | TabPaneNMStatisticAnalysis.test.ts | 70 let select = { variable 100 tabStatisticAnalysis.data = select; 101 expect(tabStatisticAnalysis.currentSelection).toEqual(select); 113 tabStatisticAnalysis.getNMLibSize(dataArray, select); 118 expect(tabStatisticAnalysis.getNMFunctionSize(dataArray, select)).toBeUndefined(); 122 tabStatisticAnalysis.getNMTypeSize(select, processData); 145 tabStatisticAnalysis.getNMTypeSize(select, processData); 168 tabStatisticAnalysis.getNMTypeSize(select, processData); 191 tabStatisticAnalysis.getNMTypeSize(select, processData); 406 expect(tabStatisticAnalysis.getNMThreadSize(dataArray, select)).toBeUndefined();
|
| /developtools/smartperf_host/ide/test/base-ui/popover/ |
| D | LitPopover.test.ts | 62 expect(litPopover.select).toEqual(['# Samples']); 74 expect(litPopover.select).toEqual(['# Samples']); 86 expect(litPopover.select).toEqual(['# Samples']); 99 expect(litPopover.select).toEqual(['# Samples']);
|
| /developtools/smartperf_host/ide/src/trace/component/setting/ |
| D | SpSdkConfig.ts | 313 let select = this.shadowRoot!.querySelector<LitSelectV>(`#${key}`); 314 select!.setAttribute('type', 'enum'); 315 select!.setAttribute('value', this.sdkConfigList.configuration[key]['default']); 316 select!.dataSource(this.sdkConfigList.configuration[key]['enum'], ''); 317 this.list.push(select!); 318 select!.addEventListener('click', () => { 319 select!.setAttribute('value', select!.value);
|
| D | SpTraceCommand.ts | 48 this.codeHl?.select();
|
| /developtools/integration_verification/DeployDevice/src/aw/poweronoff/ |
| D | serial_power_on_off.py | 2 import select 96 ready = select.select([self], [], [], 2)
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/APL_compare_03/ |
| D | readme.md | 60 sql语句:`QUERY_HAP_APL="select bundle_name,apl from hap_token_info_table"` 65 sql语句:`QUERY_NATIVE_APL="select process_name,apl from native_token_info_table"`
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/ |
| D | readme.md | 60 sql语句:`QUERY_HAP_APL="select bundle_name,apl from hap_token_info_table"` 65 sql语句:`QUERY_NATIVE_APL="select process_name,apl from native_token_info_table"`
|
| /developtools/smartperf_host/ide/src/doc/md/ |
| D | quickstart_sql_metrics.md | 7 点击 Query(SQL),输入需要查询的 sql 语句,如 select \* from process,可以看到进程表数据。
|
| D | des_tables.md | 193 `select thread.* from thread, process where process.pid = 123 and thread.ipid = process.id` 203 …`select thread_state.* from thread, thread_state where thread.tid = 123 and thread.id = thread_sta… 223 …`select native_hook.* from thread, native_hook where thread.tid = 123 and thread.id = native_hook.… 225 `select * from native_hook_frame where callchain_id = 1` 227 `select * from native_hook_statistic where callchain_id = 1` 237 `select * from log where tid = 123 and level = "error"` 252 `select * from perf_sample where timestamp_trace = 28463134340470` 255 …`select A.* from perf_callchain as A, perf_sample as B where B.timestamp_trace = 28463134340470 an… 258 …`select A.*, B.name, C.path from perf_sample as A, perf_callchain as B, perf_files as C where A.ti… 261 `select * from perf_sample where thread_id = 6700` [all …]
|
| /developtools/ace_js2bundle/ace-loader/plugin/templater/ |
| D | lite_component_map.js | 311 function select(deviceType) { function 318 let liteNativeTag = select(process.env.DEVICE_TYPE);
|
| /developtools/smartperf_host/trace_streamer/doc/ |
| D | des_tables.md | 182 ```select thread.* from thread, process where process.pid = 123 and thread.ipid = process.id``` 189 ```select thread_state.* from thread, thread_state where thread.tid = 123 and thread.id = thread_st… 206 ```select native_hook.* from thread, native_hook where thread.tid = 123 and thread.id = native_hook… 208 ```select * from native_hook_frame where callchain_id = 1``` 210 ```select * from native_hook_statistic where callchain_id = 1``` 217 ```select * from log where tid = 123 and level = "error"``` 229 ```select * from perf_sample where timestamp_trace = 28463134340470``` 232 ```select A.* from perf_callchain as A, perf_sample as B where B.timestamp_trace = 28463134340470 a… 235 ```select A.*, B.name, C.path from perf_sample as A, perf_callchain as B, perf_files as C where A.t… 238 ```select * from perf_sample where thread_id = 6700``` [all …]
|
| /developtools/hdc/hdc_rust/src/daemon/ |
| D | shell.rs | 240 let mut set = nix::sys::select::FdSet::new(); in subprocess_task() 243 match nix::sys::select::select(None, Some(&mut set), None, None, Some(&mut tv)) { in subprocess_task()
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/listener/ |
| D | OnChartValueSelectedListener.ets | 36 * Called when nothing has been selected or an "un-select" has been made.
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/privateAttr/ |
| D | privateAttr.hml | 71 <select> 73 </select>
|
| /developtools/smartperf_host/ide/src/base-ui/popover/ |
| D | LitPopover.ts | 394 get select(): Array<string> | undefined { method in LitPopover
|
| /developtools/hdc/hdc_rust/src/cffi/ |
| D | uart.cpp | 472 ret = select(handle + 1, &readFds, nullptr, nullptr, &tv); 474 ret = select(handle + 1, &readFds, nullptr, nullptr, nullptr); 481 ret = select(handle + 1, &readFds, nullptr, nullptr, &tv);
|
| /developtools/smartperf_host/ide/test/trace/database/ui-worker/ |
| D | ProcedureWorkerCommon.test.ts | 259 let select = { variable 272 expect(drawFlagLine(ctx, flag, select, 1, 2, 1, frame, slicesTime)).toBeUndefined();
|
| /developtools/profiler/device/plugins/api/src/ |
| D | plugin_watcher.cpp | 156 int ret = select(inotifyFd_ + 1, &rFds, nullptr, nullptr, &time); in Monitor()
|
| /developtools/hdc/src/common/ |
| D | uart.cpp | 299 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, &tv); in ReadUartDev() 301 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, nullptr); in ReadUartDev() 308 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, &tv); in ReadUartDev() 407 childRet = select(fd + 1, NULL, &fdSet, NULL, &timeout); in UartToHdcProtocol()
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ |
| D | TabPaneFilter.ts | 651 select: '1', 660 select: '1',
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/ |
| D | TabPaneFileSystemCalltree.ts | 513 funcArgs: [data.item.name, data.item.select == '0', data.item.type == 'symbol'], 521 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'],
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/ |
| D | TabPerfProfile.ts | 362 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'], 391 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'],
|
| /developtools/hdc/src/register/ |
| D | hdc_jdwp.cpp | 197 int rc = select(cfd_ + 1, &rset, nullptr, nullptr, &timeout); in Read()
|