Lines Matching full:uint32
49 UINT32 g_excQueueMaxNum;
50 UINT32 g_excMemMaxNum;
52 UINT32 g_excArraySize = MAX_EXC_MEM_SIZE;
56 STATIC UINT32 OsExcSaveIntStatus(UINT32 type, VOID *arg) in OsExcSaveIntStatus()
63 *((UINT32 *)g_excContent) = type; in OsExcSaveIntStatus()
64 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcSaveIntStatus()
66 *((UINT32 *)g_excContent) = EXC_INT_STATUS_LEN; in OsExcSaveIntStatus()
67 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcSaveIntStatus()
127 STATIC UINT32 OsExcMemMsgGet(UINT32 type, VOID *arg) in OsExcMemMsgGet()
129 UINT32 count; in OsExcMemMsgGet()
130 UINT32 memNum = *(UINT32 *)arg; in OsExcMemMsgGet()
133 *((UINT32 *)g_excContent) = type; in OsExcMemMsgGet()
134 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcMemMsgGet()
136 *((UINT32 *)g_excContent) = sizeof(MemInfoCB) * memNum; in OsExcMemMsgGet()
137 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcMemMsgGet()
149 STATIC UINT32 OsExcContentGet(UINT32 type, VOID *arg) in OsExcContentGet()
157 *((UINT32 *)g_excContent) = type; in OsExcContentGet()
158 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcContentGet()
159 *((UINT32 *)g_excContent) = sizeof(ExcInfo) + sizeof(EXC_CONTEXT_S); in OsExcContentGet()
161 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcContentGet()
179 STATIC UINT32 OsExcHookFunc(UINT32 type, UINT32 index, UINT32 loop, UINT32 len, EXC_INFO_SAVE_CALLB… in OsExcHookFunc()
181 UINT32 i; in OsExcHookFunc()
183 *((UINT32 *)g_excContent) = (UINT32)type; in OsExcHookFunc()
184 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcHookFunc()
186 *((UINT32 *)g_excContent) = len * loop; in OsExcHookFunc()
187 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcHookFunc()
198 STATIC UINT32 OsExcQueueMsgGet(UINT32 type, VOID *arg) in OsExcQueueMsgGet()
200 UINT32 len = sizeof(QUEUE_INFO_S); in OsExcQueueMsgGet()
201 UINT32 loop = *(UINT32 *)arg; in OsExcQueueMsgGet()
207 STATIC UINT32 OsExcTaskMsgGet(UINT32 type, VOID *arg) in OsExcTaskMsgGet()
209 UINT32 len = sizeof(TSK_INFO_S); in OsExcTaskMsgGet()
210 UINT32 loop = *(UINT32 *)arg; in OsExcTaskMsgGet()
216 STATIC UINT32 OsExcTskSwitchMsgGet(UINT32 type, VOID *arg) in OsExcTskSwitchMsgGet()
218 UINT32 len; in OsExcTskSwitchMsgGet()
219 UINT32 loop; in OsExcTskSwitchMsgGet()
220 UINT32 taskSwitchCount; in OsExcTskSwitchMsgGet()
222 UINT32 i; in OsExcTskSwitchMsgGet()
227 len = sizeof(UINT32) + (sizeof(CHAR) * LOS_TASK_NAMELEN); in OsExcTskSwitchMsgGet()
260 UINT32 index; in OsExcMsgDump()
265 *((UINT32 *)g_excContent) = MAX_EXC_MEM_SIZE; /* The total length of exception information. */ in OsExcMsgDump()
266 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcMsgDump()
275 *((UINT32 *)g_excContent) = OS_EXC_TYPE_MAX; in OsExcMsgDump()
276 g_excContent = (UINT8 *)g_excContent + sizeof(UINT32); in OsExcMsgDump()