| /developtools/profiler/host/smartperf/ide/src/trace/component/schedulingAnalysis/ |
| D | Top20FrequencyThread.ts | 33 static threads: { id: number; tid: number; name: string }[] | undefined; property in Top20FrequencyThread 126 if (Top20FrequencyThread.threads === undefined) { 127 Top20FrequencyThread.threads = (await queryThreads()) || []; 128 …this.nodata!.noData = Top20FrequencyThread.threads === undefined || Top20FrequencyThread.threads.l… 130 let threads = Top20FrequencyThread.threads.map((it) => { 136 this.threadSelect!.append(...threads); 138 this.threadSelect!.value = Top20FrequencyThread.threads[0].tid + ''; 139 this.currentThread!.textContent = Top20FrequencyThread.threads[0].name; 140 this.currentTid = Top20FrequencyThread.threads[0].tid; 148 Top20FrequencyThread.threads === undefined || [all …]
|
| D | SpSchedulingAnalysis.ts | 46 Top20FrequencyThread.threads = undefined;
|
| /developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/ |
| D | Top20FrequencyThread.ts | 33 static threads: { id: number; tid: number; name: string }[] | undefined; property in Top20FrequencyThread 127 if (Top20FrequencyThread.threads === undefined) { 128 Top20FrequencyThread.threads = (await queryThreads()) || []; 129 …this.nodata!.noData = Top20FrequencyThread.threads === undefined || Top20FrequencyThread.threads.l… 131 let threads = Top20FrequencyThread.threads.map((it) => { 137 this.threadSelect!.append(...threads); 139 this.threadSelect!.value = Top20FrequencyThread.threads[0].tid + ''; 140 this.currentThread!.textContent = Top20FrequencyThread.threads[0].name; 141 this.currentTid = Top20FrequencyThread.threads[0].tid; 149 Top20FrequencyThread.threads === undefined || [all …]
|
| D | SpSchedulingAnalysis.ts | 46 Top20FrequencyThread.threads = undefined;
|
| /developtools/smartperf_host/ide/test/trace/bean/ |
| D | AbilityMonitor.test.ts | 47 threads: -1, 64 threads: expect.any(Number), 176 threads: -1, 186 threads: expect.any(Number) }, `
|
| /developtools/smartperf_host/ide/src/trace/component/metrics/ |
| D | SysCallsTopStrategy.ts | 40 threads: { 63 threads: ThreadsItem; property
|
| D | CpuStrategy.ts | 56 threads: { 72 threads: ThreadsItem; property
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/metrics/ |
| D | SysCallsTopStrategy.ts | 40 threads: { 63 threads: ThreadsItem; property
|
| D | CpuStrategy.ts | 55 threads: { 71 threads: ThreadsItem; property
|
| /developtools/profiler/host/smartperf/ide/src/trace/bean/ |
| D | AbilityMonitor.ts | 27 threads: number = -1; property in SystemCpuSummary 75 threads: number = -1; property in LiveProcess
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/ability/ |
| D | TabPaneLiveProcesses.test.ts | 44 threads:2, 67 threads: -1,
|
| D | TabPaneCpuAbility.test.ts | 45 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/profiler/host/smartperf/ide/src/trace/database/ |
| D | SqlLite.ts | 2651 threads: Array<number> 2665 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 2668 let arg3 = threads.length > 0 ? `or tid in (${threads.join(',')})` : ''; 2683 threads: Array<number> 2691 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 2694 let arg3 = threads.length > 0 ? `or A.thread_id in (${threads.join(',')})` : ''; 4186 threads: Array<number>, 4193 if (threads.length > 0) { 4194 str = ` and A.thread_id in (${threads.join(',')}) `; 4196 if (processes.length > 0 && threads.length > 0) { [all …]
|
| /developtools/smartperf_host/ide/src/trace/database/ |
| D | SqlLite.ts | 2644 threads: Array<number> 2658 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 2661 let arg3 = threads.length > 0 ? `or tid in (${threads.join(',')})` : ''; 2676 threads: Array<number> 2684 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 2687 let arg3 = threads.length > 0 ? `or A.thread_id in (${threads.join(',')})` : ''; 4335 threads: Array<number>, 4342 if (threads.length > 0) { 4343 str = ` and A.thread_id in (${threads.join(',')}) `; 4345 if (processes.length > 0 && threads.length > 0) { [all …]
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_events_test.cpp | 42 static void RunTestThreads(std::vector<std::thread> &threads); 111 void PerfEventsTest::RunTestThreads(std::vector<std::thread> &threads) in RunTestThreads() argument 114 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/profiler/host/smartperf/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.ts | 55 let threads = convertJSON(data.params.list) || []; variable 56 threads.forEach((thread: any) => { 169 let threads = selectionParam.perfAll ? [] : selectionParam.perfThread; variable 171 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 174 let arg3 = threads.length > 0 ? `or s.thread_id in (${threads.join(',')})` : '';
|
| /developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.ts | 59 let threads = convertJSON(data.params.list) || []; variable 60 threads.forEach((thread: any) => { 186 let threads = selectionParam.perfAll ? [] : selectionParam.perfThread; variable 188 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) { 191 let arg3 = threads.length > 0 ? `or s.thread_id in (${threads.join(',')})` : '';
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/ |
| D | TabPaneCpuAbility.ts | 94 systemCpuSummary.threadsStr = ColorUtils.formatNumberComma(systemCpuSummary.threads);
|
| D | TabPaneLiveProcesses.ts | 74 array.push(liveProcess.threads.toString());
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/ability/ |
| D | TabPaneCpuAbility.ts | 94 systemCpuSummary.threadsStr = ColorUtils.formatNumberComma(systemCpuSummary.threads);
|
| D | TabPaneLiveProcesses.ts | 74 array.push(liveProcess.threads.toString());
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/chart/ |
| D | SpProcessChart.ts | 603 … let threads = this.processThreads.filter((thread) => thread.pid === it.pid && thread.tid != 0); 604 for (let j = 0; j < threads.length; j++) { 605 let thread = threads[j];
|