Home
last modified time | relevance | path

Searched refs:threadCallStackList (Results 1 – 2 of 2) sorted by relevance

/developtools/smartperf_host/smartperf_host/ide/src/trace/database/data-trafic/process/
DFuncDataReceiver.ts15 import { threadCallStackList } from '../utils/AllMemoryCache';
68 if (!threadCallStackList.has(key)) {
80 threadCallStackList.set(key, list);
83 let array = data.params.expand ? (threadCallStackList.get(key) || []) : arrayFoldHandler(key);
107 return (threadCallStackList.get(key) || []).filter((it) => it.depth === 0 );
/developtools/smartperf_host/smartperf_host/ide/src/trace/database/data-trafic/utils/
DAllMemoryCache.ts37 export const threadCallStackList: Map<string, Array<unknown>> = new Map(); constant
78 threadCallStackList.clear();