Searched refs:threadInfo (Results 1 – 11 of 11) sorted by relevance
/external/perfetto/ui/src/frontend/ |
D | slice_panel.ts | 30 const threadInfo = globals.threads.get(sliceInfo.utid); constant 39 this.getDetails(sliceInfo, threadInfo)); 42 getDetails(sliceInfo: SliceDetails, threadInfo: ThreadDesc|undefined) { 43 if (!threadInfo || sliceInfo.ts === undefined || 53 m('td', `${threadInfo.procName} [${threadInfo.pid}]`)), 57 `${threadInfo.threadName} [${threadInfo.tid}]`, 79 const threadInfo = globals.threads.get(sliceInfo.utid); constant 83 threadInfo === undefined) { 90 (track.config as {utid: number}).utid === threadInfo.utid) { 97 utid: threadInfo.utid, [all …]
|
D | thread_state_panel.ts | 35 const threadInfo = globals.threads.get(attrs.utid); constant 36 if (threadInfo) { 58 m('td', `${threadInfo.procName} [${threadInfo.pid}]`)),
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | threads.cpp | 313 if (pContext->threadInfo.SINGLE_THREADED || in bindThread() 314 (pContext->threadInfo.MAX_WORKER_THREADS && bindProcGroup == false)) in bindThread() 341 if (!bindProcGroup && !pContext->threadInfo.MAX_WORKER_THREADS) in bindThread() 887 uint32_t numaNode = pThreadData->numaId - pContext->threadInfo.BASE_NUMA_NODE; in workerThreadMain() 1028 if (!pContext->threadInfo.MAX_WORKER_THREADS) in CreateThreadPool() 1054 if (numHyperThreads > pContext->threadInfo.BASE_THREAD) in CreateThreadPool() 1056 numHyperThreads -= pContext->threadInfo.BASE_THREAD; in CreateThreadPool() 1062 pContext->threadInfo.BASE_THREAD, in CreateThreadPool() 1064 pContext->threadInfo.BASE_THREAD = 0; in CreateThreadPool() 1067 if (pContext->threadInfo.MAX_THREADS_PER_CORE) in CreateThreadPool() [all …]
|
D | api.cpp | 115 pContext->threadInfo = *pCreateInfo->pThreadInfo; in SwrCreateContext() 119 pContext->threadInfo.MAX_WORKER_THREADS = KNOB_MAX_WORKER_THREADS; in SwrCreateContext() 120 pContext->threadInfo.BASE_NUMA_NODE = KNOB_BASE_NUMA_NODE; in SwrCreateContext() 121 pContext->threadInfo.BASE_CORE = KNOB_BASE_CORE; in SwrCreateContext() 122 pContext->threadInfo.BASE_THREAD = KNOB_BASE_THREAD; in SwrCreateContext() 123 pContext->threadInfo.MAX_NUMA_NODES = KNOB_MAX_NUMA_NODES; in SwrCreateContext() 124 pContext->threadInfo.MAX_CORES_PER_NUMA_NODE = KNOB_MAX_CORES_PER_NUMA_NODE; in SwrCreateContext() 125 pContext->threadInfo.MAX_THREADS_PER_CORE = KNOB_MAX_THREADS_PER_CORE; in SwrCreateContext() 126 pContext->threadInfo.SINGLE_THREADED = KNOB_SINGLE_THREADED; in SwrCreateContext() 157 if (pContext->threadInfo.SINGLE_THREADED) in SwrCreateContext() [all …]
|
D | tilemgr.cpp | 115 (uint8_t*)AllocHotTileMem(size, 64, numaNode + pContext->threadInfo.BASE_NUMA_NODE); in GetHotTile() 139 (uint8_t*)AllocHotTileMem(size, 64, numaNode + pContext->threadInfo.BASE_NUMA_NODE); in GetHotTile()
|
D | context.h | 521 SWR_THREADING_INFO threadInfo; member
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | ResumeTest.java | 312 for (ThreadInfo threadInfo : threadInfos) { in createThreadInfos() 313 if (threadInfo.threadName.equals(threadName) ) { in createThreadInfos() 314 threadInfo.threadId = threadID; in createThreadInfos() 322 for (ThreadInfo threadInfo : threadInfos) { in createThreadInfos() 323 if (threadInfo.threadId == 0) { in createThreadInfos() 327 + threadInfo.threadName); in createThreadInfos() 354 for (ThreadInfo threadInfo : threadInfos) { in checkThreadStatus() 356 + threadInfo.threadId in checkThreadStatus() 357 + " (" + threadInfo.threadName + ")"); in checkThreadStatus() 363 packet.setNextValueAsThreadID(threadInfo.threadId); in checkThreadStatus() [all …]
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | frontend.ts | 128 const threadInfo = globals.threads.get(utid); constant 135 if (threadInfo) { 136 if (threadInfo.pid) { 137 pid = threadInfo.pid; 138 const procName = threadInfo.procName || ''; 139 title = `${procName} [${threadInfo.pid}]`; 140 subTitle = `${threadInfo.threadName} [${threadInfo.tid}]`; 142 title = `${threadInfo.threadName} [${threadInfo.tid}]`; 149 const color = colorForThread(threadInfo); 277 const threadInfo = globals.threads.get(hoveredUtid); constant [all …]
|
/external/gemmlowp/profiling/ |
D | instrumentation.h | 181 ThreadInfo* threadInfo = static_cast<ThreadInfo*>(threadInfoPtr); in ThreadLocalThreadInfo() local 182 if (threadInfo) { in ThreadLocalThreadInfo() 183 delete threadInfo; in ThreadLocalThreadInfo() local 193 ThreadInfo* threadInfo = static_cast<ThreadInfo*>(pthread_getspecific(key)); in ThreadLocalThreadInfo() local 194 if (!threadInfo) { in ThreadLocalThreadInfo() 195 threadInfo = new ThreadInfo(); in ThreadLocalThreadInfo() 196 pthread_setspecific(key, threadInfo); in ThreadLocalThreadInfo() 198 return *threadInfo; in ThreadLocalThreadInfo()
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | frontend.ts | 125 const threadInfo = globals.threads.get(utid); constant 126 const pid = (threadInfo ? threadInfo.pid : -1) || -1; 131 const color = colorForThread(threadInfo); 185 const threadInfo = globals.threads.get(utid); constant 186 const pid = threadInfo ? (threadInfo.pid ? threadInfo.pid : -1) : -1;
|
/external/angle/third_party/VulkanMemoryAllocator/src/VmaReplay/ |
D | VmaReplay.cpp | 1752 Thread threadInfo{}; in ExecuteLine() local 1753 threadInfo.callCount = 1; in ExecuteLine() 1754 m_Threads[threadId] = threadInfo; in ExecuteLine()
|