Searched refs:threadRow (Results 1 – 4 of 4) sorted by relevance
740 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 …]
220 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);
1276 collectionHasThread(threadRow: any): boolean {1279 if (item.rowId === threadRow.rowId && item.rowType === threadRow.rowType) {
379 let threadRow = TraceRow.skeleton<ThreadStruct>(); variable380 expect(traceRow.addChildTraceRowSpecifyLocation(threadRow,0)).toBeUndefined();