Lines Matching refs:TraceCommand_t
56 } TraceCommand_t; typedef
118 static int32_t prvIsValidCommand(const TraceCommand_t* const cmd);
121 static void prvProcessCommand(const TraceCommand_t* const cmd);
353 TraceCommand_t xCommand = { 0 }; in xTraceEnable()
380 if (xTraceStreamPortReadData(&xCommand, sizeof(TraceCommand_t), (int32_t*)&iBytes) == TRC_FAIL) in xTraceEnable()
385 if ((uint32_t)iBytes == sizeof(TraceCommand_t)) in xTraceEnable()
452 TraceCommand_t xCommand = { 0 }; in xTraceTzCtrl()
459 if (xTraceStreamPortReadData(&xCommand, sizeof(TraceCommand_t), &iRxBytes) == TRC_FAIL) in xTraceTzCtrl()
467 if ((uint32_t)iRxBytes == sizeof(TraceCommand_t)) in xTraceTzCtrl()
658 static int32_t prvIsValidCommand(const TraceCommand_t* const cmd) in prvIsValidCommand()
686 static void prvProcessCommand(const TraceCommand_t* const cmd) in prvProcessCommand()