Lines Matching refs:stackIndex
37 pxCoreData->stackIndex = -1; in xTraceISRInitialize()
109 if (pxCoreData->stackIndex == -1) in xTraceISRBegin()
114 if (pxCoreData->stackIndex < ((TRC_CFG_MAX_ISR_NESTING) - 1)) in xTraceISRBegin()
116 pxCoreData->stackIndex++; in xTraceISRBegin()
117 pxCoreData->handleStack[pxCoreData->stackIndex] = xISRHandle; in xTraceISRBegin()
151 pxCoreData->stackIndex--; in xTraceISREnd()
157 if (pxCoreData->stackIndex >= 0) in xTraceISREnd()
160 …R_RESUME, (TraceUnsignedBaseType_t)pxCoreData->handleStack[pxCoreData->stackIndex]); /*cstat !MISR… in xTraceISREnd()
188 *puiValue = pxCoreData->stackIndex; in xTraceISRGetCurrentNesting()
198 return pxTraceISRData->cores[TRC_CFG_GET_CURRENT_CORE()].stackIndex; in xTraceISRGetCurrentNestingReturned()
211 if (pxCoreData->stackIndex < 0) in xTraceISRGetCurrent()
216 *pxISRHandle = pxCoreData->handleStack[pxCoreData->stackIndex]; in xTraceISRGetCurrent()