Home
last modified time | relevance | path

Searched refs:threadRow (Results 1 – 4 of 4) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/chart/
DSpProcessChart.ts740 let threadRow = TraceRow.skeleton<ThreadStruct>();
741 threadRow.rowId = `${thread.tid}`;
742 threadRow.rowType = TraceRow.ROW_TYPE_THREAD;
743 threadRow.rowParentId = `${it.pid}`;
744 threadRow.rowHidden = !processRow.expansion;
745 threadRow.index = j;
746 threadRow.style.height = '30px';
747 threadRow.style.width = '100%';
748 threadRow.name = `${thread.threadName || 'Thread'} ${thread.tid}`;
749 threadRow.setAttribute('children', '');
[all …]
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.event.ts220 function cpuClickHandlerTask(threadRow: TraceRow<any>, sp: SpSystemTrace, d: CpuStruct) {
221 if (threadRow) {
222 let findEntry = threadRow!.fixedList[0];
255 let threadRow = sp.queryAllTraceRow<TraceRow<ThreadStruct>>(
259 sp.currentRow = threadRow;
260 if (threadRow) {
261 threadRow.fixedList = [
273 if (threadRow!.isComplete) {
274 cpuClickHandlerTask(threadRow, sp, d);
278 threadRow!.onComplete = () => cpuClickHandlerTask(threadRow, sp, d);
DSpSystemTrace.ts1276 collectionHasThread(threadRow: any): boolean {
1279 if (item.rowId === threadRow.rowId && item.rowType === threadRow.rowType) {
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceRow.test.ts379 let threadRow = TraceRow.skeleton<ThreadStruct>(); variable
380 expect(traceRow.addChildTraceRowSpecifyLocation(threadRow,0)).toBeUndefined();