Searched refs:EventId (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/trace/SEGGER/ |
A D | SEGGER_SYSVIEW.h | 262 void SEGGER_SYSVIEW_RecordVoid (unsigned int EventId); 263 void SEGGER_SYSVIEW_RecordU32 (unsigned int EventId, U32 Para0); 264 void SEGGER_SYSVIEW_RecordU32x2 (unsigned int EventId, U32 Para0, U32 Para1); 265 void SEGGER_SYSVIEW_RecordU32x3 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 266 void SEGGER_SYSVIEW_RecordU32x4 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 267 void SEGGER_SYSVIEW_RecordU32x5 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 268 void SEGGER_SYSVIEW_RecordU32x6 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 269 void SEGGER_SYSVIEW_RecordU32x7 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 270 void SEGGER_SYSVIEW_RecordU32x8 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 273 void SEGGER_SYSVIEW_RecordString (unsigned int EventId, const char* pString); [all …]
|
A D | SEGGER_SYSVIEW.c | 250 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId); 738 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId) { in _SendPacket() argument 777 if (EventId < 32) { in _SendPacket() 778 if (_SYSVIEW_Globals.DisabledEvents & ((U32)1u << EventId)) { in _SendPacket() 787 if (EventId < 24) { in _SendPacket() 788 *--pStartPacket = EventId; in _SendPacket() 797 if (EventId > 127) { in _SendPacket() 798 *--pStartPacket = (EventId >> 7); in _SendPacket() 799 *--pStartPacket = EventId | 0x80; in _SendPacket() 801 *--pStartPacket = EventId; in _SendPacket() [all …]
|
Completed in 8 milliseconds