Home
last modified time | relevance | path

Searched refs:threads (Results 1 – 23 of 23) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/sql/
DPerf.sql.ts51 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 …]
DCpu.sql.ts24 export const queryCpuKeyPathData = (threads: Array<KeyPathStruct>): Promise<Array<CpuStruct>> => {
27 for (const thread of threads) {
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/
DTop20FrequencyThread.ts34 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 …]
DSpSchedulingAnalysis.ts46 Top20FrequencyThread.threads = undefined;
/developtools/smartperf_host/ide/src/trace/component/
DUtils.ts79 const threads = JSON.parse(content); constant
81 for (let threadKey in threads) {
82 const tsArray = threads[threadKey];
/developtools/smartperf_host/ide/test/trace/bean/
DAbilityMonitor.test.ts51 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/
DTabPaneLiveProcesses.test.ts46 threads:2,
69 threads: -1,
DTabPaneCpuAbility.test.ts48 threads:1,
/developtools/smartperf_host/ide/src/trace/bean/
DAbilityMonitor.ts29 threads: number = -1; property in SystemCpuSummary
77 threads: number = -1; property in LiveProcess
/developtools/hiperf/test/unittest/common/native/
Dperf_events_test.cpp42 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/
Dhiperf_example_cmd.cpp337 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/
Dhdc.para.dac18 persist.hdc.uv.threads = root:shell:0660
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts86 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(',')})` : '';
DProcedureLogicWorkerSchedulingAnalysis.ts707 … 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) {
DProcedureLogicWorkerNativeNemory.ts765 let threads = Object.values(this.currentTreeMapData); variable
766 threads.forEach((merageData: any): void => {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneCpuAbility.ts97 systemCpuSummary.threadsStr = ColorUtils.formatNumberComma(systemCpuSummary.threads);
DTabPaneLiveProcesses.ts75 array.push(liveProcess.threads.toString());
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/htrace/
Dactivity_monitor_stdtype.cpp118 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()
Dactivity_monitor_stdtype.h81 int32_t threads,
120 int64_t threads);
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.test.ts284 threads: [4, 5, 6],
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpProcessChart.ts737 … 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/
DBUILD.gn21 # suggestion: uv threads number from 16 - 256
/developtools/smartperf_host/trace_streamer/test/unittest/table/
Dtable_test.cpp633 int32_t threads = 1; variable
639 … cpuTime, threads, diskWrites, diskReads);