/TraceRecorderSource-3.4.0/kernelports/ThreadX/include/ |
D | trcKernelPortHooks.h | 119 #define TX_TRACE_IN_LINE_INSERT(i, a, b, c, d, e) \ argument 121 TRC_TG_##e(_##i)(i, a, b, c, d, e); \ 125 #define TRC_TG_TX_TRACE_BLOCK_POOL_EVENTS(i) TRC_TP##i argument 126 #define TRC_TG_TX_TRACE_BYTE_POOL_EVENTS(i) TRC_TP##i argument 127 #define TRC_TG_TX_TRACE_EVENT_FLAGS_EVENTS(i) TRC_TP##i argument 128 #define TRC_TG_TX_TRACE_MUTEX_EVENTS(i) TRC_TP##i argument 129 #define TRC_TG_TX_TRACE_QUEUE_EVENTS(i) TRC_TP##i argument 130 #define TRC_TG_TX_TRACE_SEMAPHORE_EVENTS(i) TRC_TP##i argument 131 #define TRC_TG_TX_TRACE_THREAD_EVENTS(i) TRC_TP##i argument 132 #define TRC_TG_TX_TRACE_TIME_EVENTS(i) TRC_TP##i argument [all …]
|
/TraceRecorderSource-3.4.0/ |
D | trcEntryTable.c | 55 uint32_t i, j; in xTraceEntryTableInitialize() local 71 for (i = 0; i < TRC_ENTRY_TABLE_SLOTS; i++) in xTraceEntryTableInitialize() 73 pxEntryTable->axEntries[i].pvAddress = 0; in xTraceEntryTableInitialize() 76 pxEntryTable->axEntries[i].xStates[j] = 0; in xTraceEntryTableInitialize() 78 pxEntryTable->axEntries[i].szSymbol[0] = 0; in xTraceEntryTableInitialize() 90 uint32_t i; in xTraceEntryCreate() local 120 for (i = 0; i < TRC_ENTRY_TABLE_STATE_COUNT; i++) in xTraceEntryCreate() 122 pxEntry->xStates[i] = 0; in xTraceEntryCreate() 178 uint32_t i; in xTraceEntryFind() local 190 for (i = 0; i < TRC_ENTRY_TABLE_SLOTS; i++) in xTraceEntryFind() [all …]
|
D | trcPrint.c | 75 uint32_t i = 0; in xTracePrint() local 88 while ((szString[i] != 0) && (i < 128)) in xTracePrint() 90 i++; in xTracePrint() 93 uiLength = i + 1; /* Null termination */ in xTracePrint() 212 uint32_t i = 0; in xTraceVPrintF() local 228 for (i = 0; (szFormat[i] != 0) && (i < 128); i++) in xTraceVPrintF() 230 if (szFormat[i] == '%') in xTraceVPrintF() 232 if (szFormat[i + 1] == 0) in xTraceVPrintF() 238 if (szFormat[i + 1] != '%') in xTraceVPrintF() 243 i++; /* Move past format specifier or non-argument '%' */ in xTraceVPrintF() [all …]
|
D | trcStackMonitor.c | 36 uint32_t i; in xTraceStackMonitorInitialize() local 47 for (i = 0; i < (TRC_CFG_STACK_MONITOR_MAX_TASKS); i++) in xTraceStackMonitorInitialize() 49 pxStackMonitor->xEntries[i].pvTask = 0; in xTraceStackMonitorInitialize() 98 uint32_t i; in xTraceStackMonitorRemove() local 113 for (i = 0; i < pxStackMonitor->uiEntryCount; i++) in xTraceStackMonitorRemove() 115 if (pxStackMonitor->xEntries[i].pvTask == pvTask) in xTraceStackMonitorRemove() 117 if (pxStackMonitor->uiEntryCount > 1 && i != (pxStackMonitor->uiEntryCount - 1)) in xTraceStackMonitorRemove() 120 …pxStackMonitor->xEntries[i].pvTask = pxStackMonitor->xEntries[pxStackMonitor->uiEntryCount - 1].pv… in xTraceStackMonitorRemove() 121 …pxStackMonitor->xEntries[i].uxPreviousLowWaterMark = pxStackMonitor->xEntries[pxStackMonitor->uiEn… in xTraceStackMonitorRemove() 130 pxStackMonitor->xEntries[i].pvTask = 0; in xTraceStackMonitorRemove() [all …]
|
D | trcAssert.c | 50 TraceBaseType_t i, xLength; in prvTraceAssertCreate() local 78 for (i = 0; (szFilePath[i] != 0) && (i < 128); i++) {} in prvTraceAssertCreate() 80 xLength = i; in prvTraceAssertCreate() 83 for (i = xLength - 1; (i >= 0) && ((szFilePath[i] != '\\') && (szFilePath[i] != '/')); i--) {} in prvTraceAssertCreate() 86 xTraceObjectSetName((TraceObjectHandle_t)pxAssertInfo->xEntry, &szFilePath[i + 1]); in prvTraceAssertCreate()
|
D | trcSnapshotRecorder.c | 819 static uint8_t writeInt8(void * buffer, uint8_t i, uint8_t value) in writeInt8() argument 823 if (i >= MAX_ARG_SIZE) in writeInt8() 828 ((uint8_t*)buffer)[i] = value; in writeInt8() 830 if (i + 1 > MAX_ARG_SIZE) in writeInt8() 835 return ((uint8_t) (i + 1)); in writeInt8() 840 static uint8_t writeInt16(void * buffer, uint8_t i, uint16_t value) in writeInt16() argument 845 while ((i % 2) != 0) in writeInt16() 847 if (i >= MAX_ARG_SIZE) in writeInt16() 852 ((uint8_t*)buffer)[i] = 0; in writeInt16() 853 i++; in writeInt16() [all …]
|
D | trcObject.c | 29 TraceUnsignedBaseType_t i; in xTraceObjectRegisterInternal() local 64 for (i = 0; i < uxStateCount; i++) in xTraceObjectRegisterInternal() 67 TRC_ASSERT_ALWAYS_EVALUATE(xTraceEntrySetState(xEntryHandle, i, uxStates[i]) == TRC_SUCCESS); in xTraceObjectRegisterInternal() 90 for (i = 0; i < uxStateCount; i++) in xTraceObjectRegisterInternal() 92 xTraceEventAddUnsignedBaseType(xEventHandle, uxStates[i]); in xTraceObjectRegisterInternal() 270 uint32_t i = 0, uiLength = 0, uiValue = 0; in prvTraceObjectSendNameEvent() local 273 for (i = 0; (szName[i] != 0) && (i < (TRC_ENTRY_TABLE_SLOT_SYMBOL_SIZE)); i++) {} in prvTraceObjectSendNameEvent() 275 uiLength = i; in prvTraceObjectSendNameEvent()
|
D | trcMultiCoreEventBuffer.c | 20 uint32_t i; in xTraceMultiCoreEventBufferInitialize() local 34 for (i = 0; i < TRC_CFG_CORE_COUNT; i++) in xTraceMultiCoreEventBufferInitialize() 38 …pxTraceMultiCoreEventBuffer->xEventBuffer[i] = (TraceEventBuffer_t*)(&puiBuffer[i * uiBufferSizePe… in xTraceMultiCoreEventBufferInitialize() 42 if (xTraceEventBufferInitialize(pxTraceMultiCoreEventBuffer->xEventBuffer[i], uiOptions, in xTraceMultiCoreEventBufferInitialize() 43 &puiBuffer[(i * uiBufferSizePerCore) + sizeof(TraceEventBuffer_t)], in xTraceMultiCoreEventBufferInitialize()
|
D | trcString.c | 21 uint32_t i = 0, uiLength = 0, uiValue = 0; in xTraceStringRegister() local 41 for (i = 0; (szString[i] != 0) && (i < (TRC_ENTRY_TABLE_SLOT_SYMBOL_SIZE)); i++) {} in xTraceStringRegister() 43 uiLength = i; in xTraceStringRegister()
|
D | trcEvent.c | 17 #define VERIFY_EVENT_SIZE(i) \ argument 18 if ((i) > (TRC_MAX_BLOB_SIZE)) \ 20 …Higher(TRC_DIAGNOSTICS_BLOB_MAX_BYTES_TRUNCATED, (TraceUnsignedBaseType_t)((i) - (TRC_MAX_BLOB_SIZ… 21 (i) = TRC_MAX_BLOB_SIZE; \ 31 uint32_t i, j; in xTraceEventInitialize() local 40 for (i = 0; i < TRC_CFG_CORE_COUNT; i++) in xTraceEventInitialize() 42 pxCoreEventData = &pxTraceEventDataTable->coreEventData[i]; in xTraceEventInitialize() 232 uint32_t i; in xTraceEventAddData() local 246 for (i = 0; i < uiSize; i++) in xTraceEventAddData() 248 TRC_EVENT_ADD_8(xEventHandle, ((uint8_t*)pvData)[i]); in xTraceEventAddData()
|
D | trcStreamingRecorder.c | 230 uint32_t i; in xTraceHeaderInitialize() local 246 for (i = 0; i < TRC_PLATFORM_CFG_LENGTH; i++) in xTraceHeaderInitialize() 248 pxHeader->platformCfg[i] = platform_cfg[i]; in xTraceHeaderInitialize() 249 if (platform_cfg[i] == 0) in xTraceHeaderInitialize() 516 uint32_t i = 0; in prvTraceStoreEntryTable() local 532 for (i = 0; i < (TRC_ENTRY_TABLE_SLOTS); i++) in prvTraceStoreEntryTable() 534 xTraceEntryGetAtIndex(i, &xEntryHandle); in prvTraceStoreEntryTable()
|
D | trcDiagnostics.c | 26 uint32_t i; in xTraceDiagnosticsInitialize() local 35 for (i = 0; i < TRC_DIAGNOSTICS_COUNT; i++) in xTraceDiagnosticsInitialize() 37 pxDiagnostics->metrics[i] = 0; in xTraceDiagnosticsInitialize()
|
D | trcTask.c | 28 uint32_t i; in xTraceTaskInitialize() local 37 for (i = 0; i < TRC_CFG_CORE_COUNT; i++) in xTraceTaskInitialize() 39 pxTraceTaskInfo->coreTasks[i] = TRACE_HANDLE_NO_TASK; in xTraceTaskInitialize()
|
D | trcISR.c | 54 uint32_t i = 0, uiLength = 0, uiValue = 0; in xTraceISRRegister() local 85 for (i = 0; (szName[i] != 0) && (i < 128); i++) {} in xTraceISRRegister() 87 uiLength = i; in xTraceISRRegister()
|
/TraceRecorderSource-3.4.0/streamports/STM32_USB_CDC/ |
D | trcStreamPort.c | 39 for(uint32_t i = 0; i < *puiLength; i++) in CDC_Receive_FS_modified() local 41 pxUSBBuffers->bufferUSB[pxUSBBuffers->idx] = pBuffer[i]; in CDC_Receive_FS_modified() 66 uint32_t i, uiDiff; in prvTraceCDCReceive() local 81 for(i = 0; i < uiDiff; i++) in prvTraceCDCReceive() 83 pxUSBBuffers->bufferUSB[i] = pxUSBBuffers->bufferUSB[i + uiSize]; in prvTraceCDCReceive()
|
/TraceRecorderSource-3.4.0/streamports/ARM_ITM/ |
D | trcStreamPort.c | 119 int32_t i; in prvTraceItmRead() local 136 for (i = 0; i < tz_host_command_bytes_to_read; i++) in prvTraceItmRead() 138 bytesBuffer[i] = tz_host_command_data[i]; in prvTraceItmRead()
|
/TraceRecorderSource-3.4.0/kernelports/ThreadX/ |
D | trcKernelPort.c | 93 for (uint32_t i = 0; i < _tx_thread_created_count; i++) { in xTraceKernelPortEnable() local
|
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/ |
D | trcKernelPort.c | 580 uint32_t i = 0; in xTraceKernelPortInitObjectHandleStack() local 602 for (i = 0; i < TRACE_NCLASSES; i++) in xTraceKernelPortInitObjectHandleStack() 604 objectHandleStacks.handleCountWaterMarksOfClass[i] = 0; in xTraceKernelPortInitObjectHandleStack() 607 for (i = 0; i < TRACE_KERNEL_OBJECT_COUNT; i++) in xTraceKernelPortInitObjectHandleStack() 609 objectHandleStacks.objectHandles[i] = 0; in xTraceKernelPortInitObjectHandleStack()
|
/TraceRecorderSource-3.4.0/streamports/RingBuffer/ |
D | Readme-Streamport.txt | 5 i.e., the specific code needed to use a particular interface for streaming a 12 by the compiler (i.e., add this folder to your project's include paths) and
|
D | Kconfig | 17 events are stored in a ring buffer, i.e., where the oldest events are
|
/TraceRecorderSource-3.4.0/streamports/File/ |
D | Readme-Streamport.txt | 7 i.e., the specific code needed to use a particular interface for streaming a 14 by the compiler (i.e., add this folder to your project's include paths) and
|
/TraceRecorderSource-3.4.0/streamports/Jlink_RTT/ |
D | Readme-Streamport.txt | 7 i.e., the specific code needed to use a particular interface for streaming a 15 by the compiler (i.e., add this folder to your project's include paths) and
|
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/streamports/AFR_WIFI_LOCAL/ |
D | Readme-Streamport.txt | 7 i.e., the specific code needed to use a particular interface for streaming a 16 by the compiler (i.e., add this folder to your project's include paths) and
|
/TraceRecorderSource-3.4.0/streamports/TCPIP_Win32/ |
D | Readme-Streamport.txt | 7 i.e., the I/O code needed for streaming a Tracealyzer RTOS trace over specific 31 Specify target connection: TCP, host: 127.0.0.1 (i.e. localhost) and port 8888.
|
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/config/ |
D | Kconfig | 179 These define the capacity of the Object Property Table, i.e., the maximum 201 These define the capacity of the Object Property Table, i.e., the maximum 223 These define the capacity of the Object Property Table, i.e., the maximum 245 These define the capacity of the Object Property Table, i.e., the maximum 267 These define the capacity of the Object Property Table, i.e., the maximum 289 These define the capacity of the Object Property Table, i.e., the maximum 311 These define the capacity of the Object Property Table, i.e., the maximum 333 These define the capacity of the Object Property Table, i.e., the maximum 355 These define the capacity of the Object Property Table, i.e., the maximum
|