Lines Matching refs:pStartPacket

261 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId);
748 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId) { in _SendPacket() argument
798 *--pStartPacket = (U8)EventId; in _SendPacket()
803 NumBytes = (unsigned int)(pEndPacket - pStartPacket); in _SendPacket()
806 *--pStartPacket = EventId; in _SendPacket()
812 *--pStartPacket = (U8)(NumBytes >> 7); in _SendPacket()
813 *--pStartPacket = (U8)(NumBytes | 0x80); in _SendPacket()
815 *--pStartPacket = (U8)(NumBytes >> 14); in _SendPacket()
816 *--pStartPacket = (U8)((NumBytes >> 7) | 0x80); in _SendPacket()
817 *--pStartPacket = (U8)(NumBytes | 0x80); in _SendPacket()
819 *--pStartPacket = (U8)(NumBytes >> 21); in _SendPacket()
820 *--pStartPacket = (U8)((NumBytes >> 14) | 0x80); in _SendPacket()
821 *--pStartPacket = (U8)((NumBytes >> 7) | 0x80); in _SendPacket()
822 *--pStartPacket = (U8)(NumBytes | 0x80); in _SendPacket()
824 *--pStartPacket = (U8)(NumBytes >> 28); in _SendPacket()
825 *--pStartPacket = (U8)((NumBytes >> 21) | 0x80); in _SendPacket()
826 *--pStartPacket = (U8)((NumBytes >> 14) | 0x80); in _SendPacket()
827 *--pStartPacket = (U8)((NumBytes >> 7) | 0x80); in _SendPacket()
828 *--pStartPacket = (U8)(NumBytes | 0x80); in _SendPacket()
833 *--pStartPacket = (U8)(NumBytes >> 7); in _SendPacket()
834 *--pStartPacket = (U8)(NumBytes | 0x80); in _SendPacket()
836 *--pStartPacket = (U8)NumBytes; in _SendPacket()
844 *--pStartPacket = (U8)EventId; in _SendPacket()
850 *--pStartPacket = (U8)(EventId >> 7); in _SendPacket()
851 *--pStartPacket = (U8)(EventId | 0x80); in _SendPacket()
853 *--pStartPacket = (U8)(EventId >> 14); in _SendPacket()
854 *--pStartPacket = (U8)((EventId >> 7) | 0x80); in _SendPacket()
855 *--pStartPacket = (U8)(EventId | 0x80); in _SendPacket()
857 *--pStartPacket = (U8)(EventId >> 21); in _SendPacket()
858 *--pStartPacket = (U8)((EventId >> 14) | 0x80); in _SendPacket()
859 *--pStartPacket = (U8)((EventId >> 7) | 0x80); in _SendPacket()
860 *--pStartPacket = (U8)(EventId | 0x80); in _SendPacket()
862 *--pStartPacket = (U8)(EventId >> 28); in _SendPacket()
863 *--pStartPacket = (U8)((EventId >> 21) | 0x80); in _SendPacket()
864 *--pStartPacket = (U8)((EventId >> 14) | 0x80); in _SendPacket()
865 *--pStartPacket = (U8)((EventId >> 7) | 0x80); in _SendPacket()
866 *--pStartPacket = (U8)(EventId | 0x80); in _SendPacket()
871 *--pStartPacket = (U8)(EventId >> 7); in _SendPacket()
872 *--pStartPacket = (U8)(EventId | 0x80); in _SendPacket()
874 *--pStartPacket = (U8)EventId; in _SendPacket()
889 SEGGER_RTT_WriteWithOverwriteNoLock(CHANNEL_ID_UP, pStartPacket, pEndPacket - pStartPacket); in _SendPacket()
890 SEGGER_SYSVIEW_ON_EVENT_RECORDED(pEndPacket - pStartPacket); in _SendPacket()
896 …atus = SEGGER_RTT_WriteSkipNoLock(CHANNEL_ID_UP, pStartPacket, (unsigned int)(pEndPacket - pStartP… in _SendPacket()
897 SEGGER_SYSVIEW_ON_EVENT_RECORDED(pEndPacket - pStartPacket); in _SendPacket()