/percepio-3.5.0/TraceRecorder/streamports/Jlink_RTT/ |
D | Kconfig | 6 int "RTT buffer size up" 10 Defines the size of the "up" RTT buffer (target -> host) to use for writing 11 the trace data, for RTT buffer 1 or higher. 13 This setting is ignored for RTT buffer 0, which can't be reconfigured 16 Default buffer size for Tracealyzer is 5000 bytes. 22 int "RTT buffer size down" 26 Defines the size of the "down" RTT buffer (host -> target) to use for reading 27 commands from Tracealyzer, for RTT buffer 1 or higher. 29 Default buffer size for Tracealyzer is 32 bytes. 31 This setting is ignored for RTT buffer 0, which can't be reconfigured [all …]
|
/percepio-3.5.0/TraceRecorder/streamports/RingBuffer/ |
D | Kconfig | 10 Defines the size of the ring buffer use for storing trace events. 17 events are stored in a ring buffer, i.e., where the oldest events are 18 overwritten when the buffer becomes full. This allows you to get the last 23 recording is stopped when the buffer becomes full. This is useful for
|
D | Readme-Streamport.txt | 9 This particular stream port is for streaming to a ring buffer.
|
/percepio-3.5.0/DFM/ |
D | dfmEntry.c | 77 if (ulEntrySize > sizeof(pxDfmEntryData->buffer)) in prvDfmEntryVerify() 130 …DfmEntryHeader_t* pxEntryHeader = (DfmEntryHeader_t*)pxDfmEntryData->buffer; /*cstat !MISRAC2012-R… in prvDfmEntrySetup() 207 …(void)memcpy((char*)((uint32_t)pxDfmEntryData->buffer + ulOffset), szSessionId, DFM_SESSION_ID_MAX… in prvDfmEntrySetup() 213 …(void)memcpy((char*)((uint32_t)pxDfmEntryData->buffer + ulOffset), szDeviceName, DFM_DEVICE_NAME_M… in prvDfmEntrySetup() 219 …(void)memcpy((char*)((uint32_t)pxDfmEntryData->buffer + ulOffset), szDescription, ulDescriptionSiz… in prvDfmEntrySetup() 225 …(void)memcpy((void*)((uint32_t)pxDfmEntryData->buffer + ulOffset), pvData, ulDataSize); /*cstat !M… in prvDfmEntrySetup() 231 DfmEntryFooter_t* pxEntryFooter = (DfmEntryFooter_t*)((uint32_t)pxDfmEntryData->buffer + ulOffset); in prvDfmEntrySetup() 257 …CE_NAME_MAX_LEN) + sizeof(DfmAlert_t) + sizeof(DfmEntryFooter_t)) > sizeof(pxDfmEntryData->buffer)) in xDfmEntryInitialize() 263 …32_t)(DFM_CFG_MAX_PAYLOAD_CHUNK_SIZE) + sizeof(DfmEntryFooter_t)) > sizeof(pxDfmEntryData->buffer)) in xDfmEntryInitialize() 295 *ppvBuffer = pxDfmEntryData->buffer; in xDfmEntryGetBuffer() [all …]
|
/percepio-3.5.0/TraceRecorder/streamports/TCPIP/ |
D | trcStreamPort.c | 33 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 35 TraceUnsignedBaseType_t buffer[1]; 204 … xTraceInternalEventBufferInitialize(pxStreamPortTCPIP->buffer, sizeof(pxStreamPortTCPIP->buffer)); in xTraceStreamPortInitialize()
|
/percepio-3.5.0/TraceRecorder/streamports/TCPIP_Win32/ |
D | trcStreamPort.c | 28 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 30 TraceUnsignedBaseType_t buffer[1]; 223 … xTraceInternalEventBufferInitialize(pxStreamPortTCPIP->buffer, sizeof(pxStreamPortTCPIP->buffer)); in xTraceStreamPortInitialize()
|
/percepio-3.5.0/TraceRecorder/streamports/File/ |
D | trcStreamPort.c | 32 …rn xTraceInternalEventBufferInitialize(pxStreamPortFile->buffer, sizeof(pxStreamPortFile->buffer)); in xTraceStreamPortInitialize()
|
/percepio-3.5.0/TraceRecorder/kernelports/Zephyr/streamports/Semihost/ |
D | Kconfig | 12 bool "Use internal buffer" 17 int "Internal buffer size" 22 prompt "Internal buffer transfer mode"
|
D | trcStreamPort.c | 32 …rn xTraceInternalEventBufferInitialize(pxStreamPortFile->buffer, sizeof(pxStreamPortFile->buffer)); in xTraceStreamPortInitialize()
|
/percepio-3.5.0/TraceRecorder/streamports/ARM_ITM/ |
D | Kconfig | 16 bool "Use internal buffer" 21 int "Internal buffer size" 26 prompt "Internal buffer transfer mode"
|
/percepio-3.5.0/TraceRecorder/streamports/UDP/ |
D | trcStreamPort.c | 34 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 36 TraceUnsignedBaseType_t buffer[1]; 252 …return xTraceInternalEventBufferInitialize(pxStreamPortUDP->buffer, sizeof(pxStreamPortUDP->buffer… in xTraceStreamPortInitialize()
|
/percepio-3.5.0/TraceRecorder/ |
D | trcSnapshotRecorder.c | 820 static uint8_t writeInt8(void * buffer, uint8_t i, uint8_t value) in writeInt8() argument 822 TRACE_ASSERT(buffer != (void*)0, "writeInt8: buffer == NULL", 0); in writeInt8() 829 ((uint8_t*)buffer)[i] = value; in writeInt8() 841 static uint8_t writeInt16(void * buffer, uint8_t i, uint16_t value) in writeInt16() argument 843 TRACE_ASSERT(buffer != (void*)0, "writeInt16: buffer == NULL", 0); in writeInt16() 853 ((uint8_t*)buffer)[i] = 0; in writeInt16() 862 ((uint16_t*)buffer)[i/2] = value; in writeInt16() 869 static uint8_t writeInt32(void * buffer, uint8_t i, uint32_t value) in writeInt32() argument 871 TRACE_ASSERT(buffer != (void*)0, "writeInt32: buffer == NULL", 0); in writeInt32() 881 ((uint8_t*)buffer)[i] = 0; in writeInt32() [all …]
|
/percepio-3.5.0/TraceRecorder/kernelports/Zephyr/streamports/Semihost/include/ |
D | trcStreamPort.h | 48 uint8_t buffer[TRC_STREAM_PORT_INTERNAL_BUFFER_SIZE]; member 58 uint8_t buffer[TRC_STREAM_PORT_BUFFER_SIZE]; member
|
/percepio-3.5.0/TraceRecorder/streamports/File/include/ |
D | trcStreamPort.h | 51 uint8_t buffer[TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE]; member 61 uint8_t buffer[TRC_STREAM_PORT_BUFFER_SIZE]; member
|
/percepio-3.5.0/TraceRecorder/streamports/TCPIP_Win32/include/ |
D | trcStreamPort.h | 45 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 47 TraceUnsignedBaseType_t buffer[1];
|
/percepio-3.5.0/TraceRecorder/streamports/TCPIP/include/ |
D | trcStreamPort.h | 41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 43 TraceUnsignedBaseType_t buffer[1];
|
/percepio-3.5.0/TraceRecorder/streamports/UDP/include/ |
D | trcStreamPort.h | 41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 43 TraceUnsignedBaseType_t buffer[1];
|
/percepio-3.5.0/TraceRecorder/config/ |
D | Kconfig | 108 Specifies how the recorder buffer is allocated (also in case of streaming, in 109 port using the recorders internal temporary buffer) 212 ports that uses the internal buffer, like TCP/IP). For such stream ports, 230 a stream port leveraging the internal buffer (like TCP/IP). A shorter delay 232 of the trace streaming, especially if the trace buffer is small. 357 events are stored in a ring buffer, i.e., where the oldest events are 358 overwritten when the buffer becomes full. This allows you to get the last 363 recording is stopped when the buffer becomes full. This is useful for 367 bool "Ring buffer mode" 378 This defines the capacity of the event buffer, i.e., the number of records [all …]
|
/percepio-3.5.0/TraceRecorder/streamports/STM32_USB_CDC/ |
D | Readme-Streamport.txt | 30 - Under Configuration -> Parameter Settings, set the TX and RX buffer sizes to a small value (e.g. … 78 buffer overflows. 88 each time a buffer page is transmitted, showing the number of bytes sent and the 89 remaining capacity in the trace buffer (if this goes down to zero, data is lost).
|
/percepio-3.5.0/TraceRecorder/streamports/STM32_USB_CDC/include/ |
D | trcStreamPort.h | 40 …uint8_t buffer[(TRC_STREAM_PORT_USB_BUFFER_SIZE) + (TRC_STREAM_PORT_INTERNAL_BUFFER_SIZE) + sizeof… member
|
/percepio-3.5.0/TraceRecorder/include/ |
D | trcStackMonitor.h | 109 uint32_t buffer[1];
|
D | trcAssert.h | 123 TraceUnsignedBaseType_t buffer[1];
|
/percepio-3.5.0/TraceRecorder/kernelports/Zephyr/include/ |
D | tracing_tracerecorder.h | 572 sys_trace_k_stack_init(stack, buffer, num_entries) 670 sys_trace_k_mbox_get_enter(mbox, rx_msg, buffer, timeout) 673 sys_trace_k_mbox_get_blocking(mbox, rx_msg, buffer, timeout) 676 sys_trace_k_mbox_get_exit(mbox, rx_msg, buffer, timeout, ret) 678 #define sys_port_trace_k_mbox_data_get(rx_msg, buffer, ...) \ argument 679 sys_trace_k_mbox_data_get(rx_msg, buffer) 685 sys_trace_k_pipe_init(pipe, buffer, size) 775 sys_trace_k_mem_slab_init(slab, buffer, block_size, num_blocks, rc) 1105 void sys_trace_k_stack_init(struct k_stack *stack, stack_data_t *buffer, 1137 struct k_mbox_msg *rx_msg, void *buffer, k_timeout_t timeout); [all …]
|
/percepio-3.5.0/TraceRecorder/streamports/RingBuffer/include/ |
D | trcStreamPort.h | 97 uint8_t buffer[(TRC_STREAM_PORT_DATA_BUFFER_SIZE)]; member
|
/percepio-3.5.0/TraceRecorder/streamports/ARM_ITM/include/ |
D | trcStreamPort.h | 97 uint8_t buffer[sizeof(TraceUnsignedBaseType_t)]; member
|