Home
last modified time | relevance | path

Searched refs:buffer (Results 1 – 25 of 32) sorted by relevance

12

/percepio-3.5.0/TraceRecorder/streamports/Jlink_RTT/
DKconfig6 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/
DKconfig10 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
DReadme-Streamport.txt9 This particular stream port is for streaming to a ring buffer.
/percepio-3.5.0/DFM/
DdfmEntry.c77 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/
DtrcStreamPort.c33 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/
DtrcStreamPort.c28 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/
DtrcStreamPort.c32 …rn xTraceInternalEventBufferInitialize(pxStreamPortFile->buffer, sizeof(pxStreamPortFile->buffer)); in xTraceStreamPortInitialize()
/percepio-3.5.0/TraceRecorder/kernelports/Zephyr/streamports/Semihost/
DKconfig12 bool "Use internal buffer"
17 int "Internal buffer size"
22 prompt "Internal buffer transfer mode"
DtrcStreamPort.c32 …rn xTraceInternalEventBufferInitialize(pxStreamPortFile->buffer, sizeof(pxStreamPortFile->buffer)); in xTraceStreamPortInitialize()
/percepio-3.5.0/TraceRecorder/streamports/ARM_ITM/
DKconfig16 bool "Use internal buffer"
21 int "Internal buffer size"
26 prompt "Internal buffer transfer mode"
/percepio-3.5.0/TraceRecorder/streamports/UDP/
DtrcStreamPort.c34 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/
DtrcSnapshotRecorder.c820 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/
DtrcStreamPort.h48 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/
DtrcStreamPort.h51 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/
DtrcStreamPort.h45 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member
47 TraceUnsignedBaseType_t buffer[1];
/percepio-3.5.0/TraceRecorder/streamports/TCPIP/include/
DtrcStreamPort.h41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member
43 TraceUnsignedBaseType_t buffer[1];
/percepio-3.5.0/TraceRecorder/streamports/UDP/include/
DtrcStreamPort.h41 uint8_t buffer[(TRC_ALIGNED_STREAM_PORT_BUFFER_SIZE)]; member
43 TraceUnsignedBaseType_t buffer[1];
/percepio-3.5.0/TraceRecorder/config/
DKconfig108 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/
DReadme-Streamport.txt30 - 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/
DtrcStreamPort.h40 …uint8_t buffer[(TRC_STREAM_PORT_USB_BUFFER_SIZE) + (TRC_STREAM_PORT_INTERNAL_BUFFER_SIZE) + sizeof… member
/percepio-3.5.0/TraceRecorder/include/
DtrcStackMonitor.h109 uint32_t buffer[1];
DtrcAssert.h123 TraceUnsignedBaseType_t buffer[1];
/percepio-3.5.0/TraceRecorder/kernelports/Zephyr/include/
Dtracing_tracerecorder.h572 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/
DtrcStreamPort.h97 uint8_t buffer[(TRC_STREAM_PORT_DATA_BUFFER_SIZE)]; member
/percepio-3.5.0/TraceRecorder/streamports/ARM_ITM/include/
DtrcStreamPort.h97 uint8_t buffer[sizeof(TraceUnsignedBaseType_t)]; member

12