Lines Matching refs:hwiIndex
116 UINT32 hwiIndex;
126 hwiIndex = HwiNumGet();
128 OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
130 OsCpupIrqStart(hwiIndex);
133 HalPreInterruptHandler(hwiIndex);
136 if (g_hwiHandlerForm[hwiIndex].pfnHandler != 0) {
137 g_hwiHandlerForm[hwiIndex].pfnHandler((VOID *)g_hwiHandlerForm[hwiIndex].pParm);
140 if (g_hwiHandlerForm[hwiIndex] != 0) {
141 g_hwiHandlerForm[hwiIndex]();
146 ++g_hwiFormCnt[hwiIndex];
149 HalAftInterruptHandler(hwiIndex);
152 OsCpupIrqEnd(hwiIndex);
155 OsHookCall(LOS_HOOK_TYPE_ISR_EXIT, hwiIndex);