Home
last modified time | relevance | path

Searched refs:data (Results 1 – 21 of 21) sorted by relevance

/percepio-3.7.0/TraceRecorder/kernelports/Zephyr/include/
Dtracing_tracerecorder.h405 sys_trace_k_queue_queue_insert_enter(queue, alloc, data)
408 sys_trace_k_queue_queue_insert_blocking(queue, alloc, data)
411 sys_trace_k_queue_queue_insert_exit(queue, alloc, data, ret);
414 sys_trace_k_queue_append_enter(queue, data)
417 sys_trace_k_queue_append_exit(queue, data)
420 sys_trace_k_queue_alloc_append_enter(queue, data)
423 sys_trace_k_queue_alloc_append_exit(queue, data, ret)
426 sys_trace_k_queue_prepend_enter(queue, data)
429 sys_trace_k_queue_prepend_exit(queue, data)
432 sys_trace_k_queue_alloc_prepend_enter(queue, data)
[all …]
/percepio-3.7.0/DFM/storageports/FLASH/
DdfmStoragePort.c27 uint8_t data[DFM_CFG_FLASHSTORAGE_SIZE]; member
70 if (*((uint32_t*)&dfmFlashData.data[ulRdOffset]) == 0xffffffff) in xDfmStoragePortGetAlert()
76 if (xDfmEntryGetSize((DfmEntryHandle_t)&dfmFlashData.data[ulRdOffset], &ulSize) == DFM_FAIL) in xDfmStoragePortGetAlert()
85 memcpy(pvBuffer, &dfmFlashData.data[ulRdOffset], ulSize); in xDfmStoragePortGetAlert()
122 uint32_t ulDst = (uint32_t)&dfmFlashData.data[ulWrOffset]; in prvDfmStoragePortWrite()
138 if ( ulWrOffset >= sizeof(dfmFlashData.data)) in prvDfmStoragePortWrite()
/percepio-3.7.0/TraceRecorder/kernelports/Zephyr/
DtrcKernelPort.c801 void sys_trace_k_queue_queue_insert_enter(struct k_queue *queue, bool alloc, void *data) { in sys_trace_k_queue_queue_insert_enter() argument
808 void sys_trace_k_queue_queue_insert_blocking(struct k_queue *queue, bool alloc, void *data) { in sys_trace_k_queue_queue_insert_blocking() argument
814 …_EVENT_QUEUE_QUEUE_INSERT_BLOCKING, (TraceUnsignedBaseType_t)queue, (TraceUnsignedBaseType_t)data); in sys_trace_k_queue_queue_insert_blocking()
817 void sys_trace_k_queue_queue_insert_exit(struct k_queue *queue, bool alloc, void *data, int ret) { in sys_trace_k_queue_queue_insert_exit() argument
826 void sys_trace_k_queue_append_enter(struct k_queue *queue, void *data) { in sys_trace_k_queue_append_enter() argument
827 …ventCreate2(PSF_EVENT_QUEUE_APPEND, (TraceUnsignedBaseType_t)queue, (TraceUnsignedBaseType_t)data); in sys_trace_k_queue_append_enter()
830 void sys_trace_k_queue_append_exit(struct k_queue *queue, void *data) { in sys_trace_k_queue_append_exit() argument
833 void sys_trace_k_queue_alloc_append_enter(struct k_queue *queue, void *data) { in sys_trace_k_queue_alloc_append_enter() argument
834 …_EVENT_QUEUE_ALLOC_APPEND_BLOCKING, (TraceUnsignedBaseType_t)queue, (TraceUnsignedBaseType_t)data); in sys_trace_k_queue_alloc_append_enter()
837 void sys_trace_k_queue_alloc_append_exit(struct k_queue *queue, void *data, int ret) { in sys_trace_k_queue_alloc_append_exit() argument
[all …]
DKconfig30 …less data will need to be transferred for each syscall that is made, however, this will also requi…
/percepio-3.7.0/DFM/kernelports/Zephyr/cloudports/Serial/
DdfmCloudPort.c19 static uint16_t prvPrintDataAsHex(uint16_t seed, uint8_t* data, uint32_t size) in prvPrintDataAsHex() argument
21 uint16_t crc = crc16_ccitt(seed, data, size); in prvPrintDataAsHex()
27 uint8_t byte = data[i]; in prvPrintDataAsHex()
/percepio-3.7.0/TraceRecorder/streamports/TCPIP_Win32/
DtrcStreamPort.c122 int32_t prvTraceWriteToSocket(void* data, uint32_t size, int32_t *ptrBytesWritten) in prvTraceWriteToSocket() argument
144 ret = send(trace_socket, data, size, 0); in prvTraceWriteToSocket()
165 int32_t prvTraceReadFromSocket(void* data, uint32_t bufsize, int32_t *ptrBytesRead) in prvTraceReadFromSocket() argument
184 *ptrBytesRead = recv(trace_socket, data, bufsize, 0); in prvTraceReadFromSocket()
/percepio-3.7.0/DFM/cloudports/Serial/
DdfmCloudPort.c28 static uint32_t prvPrintDataAsHex(uint8_t* data, int size);
31 static uint32_t prvPrintDataAsHex(uint8_t* data, int size) in prvPrintDataAsHex() argument
39 uint8_t byte = data[i]; in prvPrintDataAsHex()
/percepio-3.7.0/TraceRecorder/streamports/ARM_ITM/
DKeil-uVision-Tracealyzer-ITM-Exporter.ini16 // Forward the ITM data to file
27 // Send stop command to Tracealyzer, to stop writing ITM data.
31 _sleep_(2000); // Wait a while to let all data be written the host file.
33 // Stop forwarding the ITM data to file and close the file.
DReadme-ARM_ITM.txt14 writes the data directly to the ITM registers. This is very fast.
/percepio-3.7.0/TraceRecorder/streamports/STM32_USB_CDC/
DtrcStreamPort.c64 traceResult prvTraceCDCReceive(void *data, uint32_t uiSize, int32_t* piBytesReceived) in prvTraceCDCReceive() argument
72 TRC_MEMCPY(data, pxUSBBuffers->bufferUSB, pxUSBBuffers->idx); in prvTraceCDCReceive()
79 TRC_MEMCPY(data, pxUSBBuffers->bufferUSB, uiSize); in prvTraceCDCReceive()
DReadme-Streamport.txt7 allowing for streaming the trace data over a USB connection. The stream port is defined by a set of…
53 10. Enter the number of the COM port in the "Device" field. The settings (data
54 bits, data rate etc.) are irrelevant for USB serial connections and not used.
77 your application produces more trace data than can be transferred, so the trace
89 remaining capacity in the trace buffer (if this goes down to zero, data is lost).
/percepio-3.7.0/TraceRecorder/extras/TraceRecorderInit/
Dreadme.txt20 recorder data isn't initialized cleared after the recorder has been
23 It is possible that you also need to make sure certain recorder data isn't
26 This attribute will then be set for all necessary recorder data that should
/percepio-3.7.0/TraceRecorder/streamports/TCPIP_Win32/include/
DtrcStreamPort.h51 int32_t prvTraceWriteToSocket(void* data, uint32_t size, int32_t* ptrBytesWritten);
52 int32_t prvTraceReadFromSocket(void* data, uint32_t bufsize, int32_t* ptrBytesRead);
/percepio-3.7.0/TraceRecorder/streamports/Jlink_RTT/
DKconfig11 the trace data, for RTT buffer 1 or higher.
19 depending on the amount of data produced.
39 Defines the RTT buffer to use for writing the trace data. Make sure that
52 Defines the RTT buffer to use for reading the trace data. Make sure that
139 RTT data. This should normally be disabled with an exception being
/percepio-3.7.0/DFM/
DREADME.txt5 …ched to it. Each Symptom has a type and a value. Additional payloads with data can be attached to …
/percepio-3.7.0/TraceRecorder/streamports/STM32_USB_CDC/include/
DtrcStreamPort.h43 traceResult prvTraceCDCReceive(void* data, uint32_t uiSize, int32_t* piBytesReceived);
/percepio-3.7.0/TraceRecorder/
DtrcSnapshotRecorder.c285 static void prvTraceUBHelper2(traceUBChannel channel, uint32_t* data, uint32_t noOfSlots);
1161 static void prvTraceCopyToDataBuffer(uint32_t* data, uint32_t count) in prvTraceCopyToDataBuffer() argument
1165 TRACE_ASSERT(data != (void*)0, in prvTraceCopyToDataBuffer()
1173 …userEventBuffer.dataBuffer[RecorderDataPtr->userEventBuffer.nextSlotToWrite * 4], data, slots * 4); in prvTraceCopyToDataBuffer()
1174 (void)memcpy(&RecorderDataPtr->userEventBuffer.dataBuffer[0], data + slots, (count - slots) * 4); in prvTraceCopyToDataBuffer()
1178 …userEventBuffer.dataBuffer[RecorderDataPtr->userEventBuffer.nextSlotToWrite * 4], data, count * 4); in prvTraceCopyToDataBuffer()
1192 uint32_t data[(3 + MAX_ARG_SIZE) / 4]; in prvTraceUBHelper1() local
1200 ((uint16_t*)data)[2] = eventLabel; in prvTraceUBHelper1()
1201 ((uint16_t*)data)[3] = formatLabel; in prvTraceUBHelper1()
1204 …at((char*)&(RecorderDataPtr->SymbolTable.symbytes[formatLabel+4]), vl, (uint8_t*)data, byteOffset); in prvTraceUBHelper1()
[all …]
DDoxyfile444 # with only public data fields or simple typedef fields will be shown inline in
1091 # Note that doxygen will use the data processed and written to standard output
1905 # search data is written to a file for indexing by an external tool. With the
/percepio-3.7.0/TraceRecorder/config/
DKconfig214 Tracealyzer and in some cases also to transmit the trace data (for stream
217 execution and transfer of the data, but low enough to avoid disturbing any
232 In streaming mode, this also affects the trace data transfer if you are using
327 Macro that states wether the recorder data should have an initial value.
331 the recorder data would be initialized by xTraceInitialize() but could
484 "Unknown Actor" instead of task scheduling for periods with UB data only.
490 Events and data arguments are written using vTraceUBEvent and
/percepio-3.7.0/TraceRecorder/streamports/TCPIP/
DReadme-Streamport.txt44 such events from the trace, at least those caused by the transmission of trace data in the
/percepio-3.7.0/DFM/kernelports/Zephyr/
DKconfig31 scripts, which post-processes the data and makes it available in DevAlert.