Home
last modified time | relevance | path

Searched refs:i (Results 1 – 25 of 31) sorted by relevance

12

/TraceRecorderSource-3.4.0/kernelports/ThreadX/include/
DtrcKernelPortHooks.h119 #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/
DtrcEntryTable.c55 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 …]
DtrcPrint.c75 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 …]
DtrcStackMonitor.c36 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 …]
DtrcAssert.c50 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()
DtrcSnapshotRecorder.c819 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 …]
DtrcObject.c29 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()
DtrcMultiCoreEventBuffer.c20 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()
DtrcString.c21 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()
DtrcEvent.c17 #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()
DtrcStreamingRecorder.c230 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()
DtrcDiagnostics.c26 uint32_t i; in xTraceDiagnosticsInitialize() local
35 for (i = 0; i < TRC_DIAGNOSTICS_COUNT; i++) in xTraceDiagnosticsInitialize()
37 pxDiagnostics->metrics[i] = 0; in xTraceDiagnosticsInitialize()
DtrcTask.c28 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()
DtrcISR.c54 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/
DtrcStreamPort.c39 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/
DtrcStreamPort.c119 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/
DtrcKernelPort.c93 for (uint32_t i = 0; i < _tx_thread_created_count; i++) { in xTraceKernelPortEnable() local
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/
DtrcKernelPort.c580 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/
DReadme-Streamport.txt5 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
DKconfig17 events are stored in a ring buffer, i.e., where the oldest events are
/TraceRecorderSource-3.4.0/streamports/File/
DReadme-Streamport.txt7 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/
DReadme-Streamport.txt7 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/
DReadme-Streamport.txt7 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/
DReadme-Streamport.txt7 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/
DKconfig179 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

12