Home
last modified time | relevance | path

Searched refs:isThread (Results 1 – 8 of 8) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/chart/
DFrameChart.ts834 private getCurrentPercent(node: ChartStruct, isThread: boolean): string {
835 const parentNode = this.findCurrentNode(node, isThread);
842 private findCurrentNode(node: ChartStruct, isThread: boolean): ChartStruct | null {
844 if ((isThread && node.parent.isThread) || (!isThread && node.parent.isProcess)) {
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts407 threadCallChain.isThread = true;
1041 isThread: boolean = false; property in PerfCallChain
1151 if (callChain.isThread && !currentNode.isThread) {
1152 currentNode.isThread = callChain.isThread;
DProcedureLogicWorkerFileSystem.ts858 threadCallChain.isThread = true;
1070 if (callChain.isThread && !currentNode.isThread) {
1071 currentNode.isThread = callChain.isThread;
DProcedureLogicWorkerCommon.ts32 isThread: boolean = false; property in ChartStruct
616 isThread: boolean = false;
DProcedureLogicWorkerNativeNemory.ts775 threadMerageData.isThread = true;
/developtools/smartperf_host/ide/src/trace/bean/
DFrameChartStruct.ts64 isThread: boolean = false; property in ChartStruct
/developtools/hiperf/include/
Dvirtual_runtime.h145 std::string ReadThreadName(pid_t tid, bool isThread);
/developtools/hiperf/src/
Dvirtual_runtime.cpp80 std::string VirtualRuntime::ReadThreadName(pid_t tid, bool isThread) in ReadThreadName() argument
87 } else if (isThread) { in ReadThreadName()