| /developtools/smartperf_host/ide/src/trace/database/sql/ |
| D | Perf.sql.ts | 51 threads: Array<number>, 69 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 72 let arg3 = threads.length > 0 ? `or tid in (${threads.join(',')})` : ''; 87 threads: Array<number> 95 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 98 let arg3 = threads.length > 0 ? `or A.thread_id in (${threads.join(',')})` : ''; 276 threads: Array<number>, 283 if (threads.length > 0) { 284 str = ` and A.thread_id in (${threads.join(',')}) `; 286 if (processes.length > 0 && threads.length > 0) { [all …]
|
| D | Cpu.sql.ts | 24 export const queryCpuKeyPathData = (threads: Array<KeyPathStruct>): Promise<Array<CpuStruct>> => { 27 for (const thread of threads) {
|
| /developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/ |
| D | Top20FrequencyThread.ts | 34 static threads: { id: number; tid: number; name: string }[] | undefined; property in Top20FrequencyThread 128 if (Top20FrequencyThread.threads === undefined) { 129 Top20FrequencyThread.threads = (await queryThreads()) || []; 130 …this.nodata!.noData = Top20FrequencyThread.threads === undefined || Top20FrequencyThread.threads.l… 132 let threads = Top20FrequencyThread.threads.map((it) => { 138 this.threadSelect!.append(...threads); 140 this.threadSelect!.value = Top20FrequencyThread.threads[0].tid + ''; 141 this.currentThread!.textContent = Top20FrequencyThread.threads[0].name; 142 this.currentTid = Top20FrequencyThread.threads[0].tid; 150 Top20FrequencyThread.threads === undefined || [all …]
|
| D | SpSchedulingAnalysis.ts | 46 Top20FrequencyThread.threads = undefined;
|
| /developtools/smartperf_host/ide/src/trace/component/ |
| D | Utils.ts | 79 const threads = JSON.parse(content); constant 81 for (let threadKey in threads) { 82 const tsArray = threads[threadKey];
|
| /developtools/smartperf_host/ide/test/trace/bean/ |
| D | AbilityMonitor.test.ts | 51 threads: -1, 68 threads: expect.any(Number), 180 threads: -1, 190 threads: expect.any(Number) }, `
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/ability/ |
| D | TabPaneLiveProcesses.test.ts | 46 threads:2, 69 threads: -1,
|
| D | TabPaneCpuAbility.test.ts | 48 threads:1,
|
| /developtools/smartperf_host/ide/src/trace/bean/ |
| D | AbilityMonitor.ts | 29 threads: number = -1; property in SystemCpuSummary 77 threads: number = -1; property in LiveProcess
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_events_test.cpp | 42 static void RunTestThreads(std::vector<std::thread> &threads); 117 void PerfEventsTest::RunTestThreads(std::vector<std::thread> &threads) in RunTestThreads() argument 120 threads.emplace_back(std::thread(&TestCodeThread)); in RunTestThreads()
|
| /developtools/hiperf/demo/cpp/ |
| D | hiperf_example_cmd.cpp | 337 std::thread threads[option.numThreads]; in RunSampleThread() local 339 threads[count] = std::thread(ExampleThread, option); in RunSampleThread() 342 threads[count].join(); in RunSampleThread()
|
| /developtools/hdc/src/daemon/etc/ |
| D | hdc.para.dac | 18 persist.hdc.uv.threads = root:shell:0660
|
| /developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.ts | 86 let threads = convertJSON(list) || []; 87 threads.forEach((thread: any): void => { 332 const threads = selectionParam.perfAll ? [] : selectionParam.perfThread; constant 333 if (cpus.length !== 0 || processes.length !== 0 || threads.length !== 0) { 336 const threadFilter = threads.length > 0 ? `or s.thread_id in (${threads.join(',')})` : '';
|
| D | ProcedureLogicWorkerSchedulingAnalysis.ts | 707 … let threads = arr.filter((f) => Math.min(f.ts + f.dur, freqEndTs) - Math.max(f.ts, it.ts) > 0); 708 for (let tf of threads) {
|
| D | ProcedureLogicWorkerNativeNemory.ts | 765 let threads = Object.values(this.currentTreeMapData); variable 766 threads.forEach((merageData: any): void => {
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/ |
| D | TabPaneCpuAbility.ts | 97 systemCpuSummary.threadsStr = ColorUtils.formatNumberComma(systemCpuSummary.threads);
|
| D | TabPaneLiveProcesses.ts | 75 array.push(liveProcess.threads.toString());
|
| /developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/htrace/ |
| D | activity_monitor_stdtype.cpp | 118 int32_t threads, in AppendNewData() argument 131 threads_.emplace_back(threads); in AppendNewData() 207 int64_t threads) in AppendNewData() argument 214 threads_.emplace_back(threads); in AppendNewData()
|
| D | activity_monitor_stdtype.h | 81 int32_t threads, 120 int64_t threads);
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/hiperf/ |
| D | TabPanePerfAnalysis.test.ts | 284 threads: [4, 5, 6],
|
| /developtools/smartperf_host/ide/src/trace/component/chart/ |
| D | SpProcessChart.ts | 737 … let threads = this.processThreads.filter((thread) => thread.pid === it.pid && thread.tid != 0); 738 for (let j = 0; j < threads.length; j++) { 739 let thread = threads[j];
|
| /developtools/hdc/ |
| D | BUILD.gn | 21 # suggestion: uv threads number from 16 - 256
|
| /developtools/smartperf_host/trace_streamer/test/unittest/table/ |
| D | table_test.cpp | 633 int32_t threads = 1; variable 639 … cpuTime, threads, diskWrites, diskReads);
|