Home
last modified time | relevance | path

Searched refs:liveProcess (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneLiveProcesses.ts69 toLiveProcessArray(liveProcess: LiveProcess): any[] {
71 array.push(liveProcess.processId.toString());
72 array.push(liveProcess.processName);
73 array.push(liveProcess.responsibleProcess);
74 array.push(liveProcess.userName);
75 array.push(liveProcess.threads.toString());
76 array.push(liveProcess.cpu);
77 array.push(liveProcess.memory);
78 array.push(liveProcess.diskReads.toString());
79 array.push(liveProcess.diskWrite.toString());
[all …]
/developtools/smartperf_host/ide/test/trace/bean/
DAbilityMonitor.test.ts34 let liveProcess = new LiveProcess(); variable
174 liveProcess = {
182 expect(liveProcess).not.toBeUndefined();
183 expect(liveProcess).toMatchInlineSnapshot(
/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_process_parser.cpp49 auto liveProcess = std::make_unique<TsLiveProcessData>(); in Parse() local
59liveProcess->SetLiveProcess(ts, std::move(processInfo), std::move(cpuInfo), std::move(pssInfo), in Parse()
61 liveProcessData_.push_back(std::move(liveProcess)); in Parse()