| /percepio-latest/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-latest/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
|
| /percepio-latest/TraceRecorder/streamports/UDP/ |
| D | trcStreamPort.c | 31 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 33 TraceUnsignedBaseType_t buffer[1]; 165 …return xTraceInternalEventBufferInitialize(pxStreamPortUDP->buffer, sizeof(pxStreamPortUDP->buffer… in xTraceStreamPortInitialize()
|
| /percepio-latest/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() 206 …(void)memcpy((char*)((uintptr_t)pxDfmEntryData->buffer + ulOffset), szSessionId, DFM_SESSION_ID_MA… in prvDfmEntrySetup() 211 …(void)memcpy((char*)((uintptr_t)pxDfmEntryData->buffer + ulOffset), szDeviceName, DFM_DEVICE_NAME_… in prvDfmEntrySetup() 216 …(void)memcpy((char*)((uintptr_t)pxDfmEntryData->buffer + ulOffset), szDescription, ulDescriptionSi… in prvDfmEntrySetup() 221 …(void)memcpy((void*)((uintptr_t)pxDfmEntryData->buffer + ulOffset), pvData, ulDataSize); /*cstat !… in prvDfmEntrySetup() 226 …DfmEntryFooter_t* pxEntryFooter = (DfmEntryFooter_t*)((uintptr_t)pxDfmEntryData->buffer + ulOffset… in prvDfmEntrySetup() 252 …CE_NAME_MAX_LEN) + sizeof(DfmAlert_t) + sizeof(DfmEntryFooter_t)) > sizeof(pxDfmEntryData->buffer)) in xDfmEntryInitialize() 258 …32_t)(DFM_CFG_MAX_PAYLOAD_CHUNK_SIZE) + sizeof(DfmEntryFooter_t)) > sizeof(pxDfmEntryData->buffer)) in xDfmEntryInitialize() 290 *ppvBuffer = pxDfmEntryData->buffer; in xDfmEntryGetBuffer() [all …]
|
| /percepio-latest/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-latest/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-latest/TraceRecorder/streamports/File/ |
| D | trcStreamPort.c | 33 …rn xTraceInternalEventBufferInitialize(pxStreamPortFile->buffer, sizeof(pxStreamPortFile->buffer)); in xTraceStreamPortInitialize()
|
| D | Kconfig | 12 bool "Use internal buffer" 17 int "Internal buffer size" 22 prompt "Internal buffer transfer mode"
|
| /percepio-latest/TraceRecorder/streamports/ARM_ITM/ |
| D | Kconfig | 16 bool "Use internal buffer" 21 int "Internal buffer size" 26 prompt "Internal buffer transfer mode"
|
| /percepio-latest/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-latest/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-latest/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-latest/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-latest/TraceRecorder/streamports/UDP/include/ |
| D | trcStreamPort.h | 41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 43 TraceUnsignedBaseType_t buffer[1];
|
| /percepio-latest/TraceRecorder/streamports/TCPIP/include/ |
| D | trcStreamPort.h | 41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member 43 TraceUnsignedBaseType_t buffer[1];
|
| /percepio-latest/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-latest/TraceRecorder/config/ |
| D | Kconfig | 111 Specifies how the recorder buffer is allocated (also in case of streaming, in 112 port using the recorders internal temporary buffer) 215 ports that uses the internal buffer, like TCP/IP). For such stream ports, 233 a stream port leveraging the internal buffer (like TCP/IP). A shorter delay 235 of the trace streaming, especially if the trace buffer is small. 360 events are stored in a ring buffer, i.e., where the oldest events are 361 overwritten when the buffer becomes full. This allows you to get the last 366 recording is stopped when the buffer becomes full. This is useful for 370 bool "Ring buffer mode" 381 This defines the capacity of the event buffer, i.e., the number of records [all …]
|
| /percepio-latest/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-latest/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-latest/TraceRecorder/include/ |
| D | trcStackMonitor.h | 111 uint32_t buffer[1]; member
|
| D | trcAssert.h | 121 TraceUnsignedBaseType_t buffer[1];
|
| /percepio-latest/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) 684 #define sys_port_trace_k_pipe_init(pipe, buffer, size) \ argument 685 sys_trace_k_pipe_init(pipe, buffer, size) 805 sys_trace_k_mem_slab_init(slab, buffer, block_size, num_blocks, rc) 1135 void sys_trace_k_stack_init(struct k_stack *stack, stack_data_t *buffer, [all …]
|
| /percepio-latest/TraceRecorder/streamports/RingBuffer/include/ |
| D | trcStreamPort.h | 97 uint8_t buffer[(TRC_STREAM_PORT_DATA_BUFFER_SIZE)]; member
|
| /percepio-latest/TraceRecorder/streamports/ARM_ITM/include/ |
| D | trcStreamPort.h | 97 uint8_t buffer[sizeof(TraceUnsignedBaseType_t)]; member
|