Home
last modified time | relevance | path

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

/TraceRecorderSource-2.7.6/
DtrcStreamingRecorder.c592 int i = 0; in vTraceVPrintF() local
597 for (i = 0; (fmt[i] != 0) && (i < 52); i++) in vTraceVPrintF()
599 if (fmt[i] == '%') in vTraceVPrintF()
601 if (fmt[i + 1] == 0) in vTraceVPrintF()
607 if (fmt[i + 1] != '%') in vTraceVPrintF()
612 i++; /* Move past format specifier or non-argument '%' */ in vTraceVPrintF()
625 prvTraceStoreStringEventHelper(nArgs, (uint16_t)eventID, chn, i, fmt, vl); in vTraceVPrintF()
856 uint32_t i = 0; in vTraceInitialize() local
884 for (i = 0; i < (SYMBOL_TABLE_BUFFER_SIZE / sizeof(uint32_t)); i++) in vTraceInitialize()
886 symbolTable.SymbolTableBuffer.pSymbolTableBufferUINT32[i] = 0; in vTraceInitialize()
[all …]
DtrcSnapshotRecorder.c836 static uint8_t writeInt8(void * buffer, uint8_t i, uint8_t value) in writeInt8() argument
840 if (i >= MAX_ARG_SIZE) in writeInt8()
845 ((uint8_t*)buffer)[i] = value; in writeInt8()
847 if (i + 1 > MAX_ARG_SIZE) in writeInt8()
852 return ((uint8_t) (i + 1)); in writeInt8()
857 static uint8_t writeInt16(void * buffer, uint8_t i, uint16_t value) in writeInt16() argument
862 while ((i % 2) != 0) in writeInt16()
864 if (i >= MAX_ARG_SIZE) in writeInt16()
869 ((uint8_t*)buffer)[i] = 0; in writeInt16()
870 i++; in writeInt16()
[all …]
DtrcInternalBuffer.c121 int i; in prvPagedEventBufferInit() local
127 for (i = 0; i < (TRC_CFG_PAGED_EVENT_BUFFER_PAGE_COUNT); i++) in prvPagedEventBufferInit()
129 PageInfo[i].BytesRemaining = (TRC_CFG_PAGED_EVENT_BUFFER_PAGE_SIZE); in prvPagedEventBufferInit()
130 PageInfo[i].WritePointer = &EventBuffer[i * (TRC_CFG_PAGED_EVENT_BUFFER_PAGE_SIZE)]; in prvPagedEventBufferInit()
131 PageInfo[i].Status = PAGE_STATUS_FREE; in prvPagedEventBufferInit()
DLICENSE.md18 "control" means (i) the power, direct or indirect, to cause the
/TraceRecorderSource-2.7.6/streamports/STM32_USB_CDC/
DtrcStreamingPort.c35 for( uint32_t i=0;i<* Len;i++) in CDC_Receive_FS_modified() local
37 commandBuffer.data[commandBuffer.idx]=Buf[i]; in CDC_Receive_FS_modified()
62 uint32_t i,diff; in trcCDCReceive() local
76 for(i=0;i<diff;i++) in trcCDCReceive()
78 commandBuffer.data[i]=commandBuffer.data[i+size]; in trcCDCReceive()
DReadme-Streamport.txt44 6. Plug in a USB cable to the connector labeled "USB OTG" or similar (i.e. for application use).
/TraceRecorderSource-2.7.6/kernelports/Zephyr/streamports/ARM_ITM/
DtrcStreamingPort.c81 int i; in read_from_host() local
92 for (i=0; i < tz_host_command_bytes_to_read; i++) in read_from_host()
94 bytesBuffer[i] = tz_host_command_data[i]; in read_from_host()
/TraceRecorderSource-2.7.6/streamports/ARM_ITM/
DtrcStreamingPort.c81 int i; in read_from_host() local
92 for (i=0; i < tz_host_command_bytes_to_read; i++) in read_from_host()
94 bytesBuffer[i] = tz_host_command_data[i]; in read_from_host()
DReadme-ARM_ITM.txt7 i.e., the specific code needed to use a particular interface for streaming a
/TraceRecorderSource-2.7.6/kernelports/Micrium/
DtrcKernelPort.c56 uint32_t i = 0, j = 0; in prvTraceAppend() local
59 while ((i < ((TRC_MAX_STRING_APPEND_SIZE) - 2)) && (name[i] != 0)) in prvTraceAppend()
61 buf[i] = name[i]; in prvTraceAppend()
62 i++; in prvTraceAppend()
65 buf[i] = ' '; in prvTraceAppend()
66 i++; in prvTraceAppend()
69 while ((i < ((TRC_MAX_STRING_APPEND_SIZE) - 1)) && (suffix[j] != 0)) in prvTraceAppend()
71 buf[i] = suffix[j]; in prvTraceAppend()
72 i++; in prvTraceAppend()
77 buf[i] = 0; in prvTraceAppend()
[all …]
/TraceRecorderSource-2.7.6/kernelports/SAFERTOS/
DtrcKernelPort.c461 uint32_t i = 0; in vTraceInitObjectHandleStack() local
475 for (i = 0; i < TRACE_NCLASSES; i++) in vTraceInitObjectHandleStack()
477 objectHandleStacks.handleCountWaterMarksOfClass[i] = 0; in vTraceInitObjectHandleStack()
480 for (i = 0; i < TRACE_KERNEL_OBJECT_COUNT; i++) in vTraceInitObjectHandleStack()
482 objectHandleStacks.objectHandles[i] = 0; in vTraceInitObjectHandleStack()
/TraceRecorderSource-2.7.6/kernelports/FreeRTOS/
DtrcKernelPort.c893 uint32_t i = 0; in vTraceInitObjectHandleStack() local
915 for (i = 0; i < TRACE_NCLASSES; i++) in vTraceInitObjectHandleStack()
917 objectHandleStacks.handleCountWaterMarksOfClass[i] = 0; in vTraceInitObjectHandleStack()
920 for (i = 0; i < TRACE_KERNEL_OBJECT_COUNT; i++) in vTraceInitObjectHandleStack()
922 objectHandleStacks.objectHandles[i] = 0; in vTraceInitObjectHandleStack()
/TraceRecorderSource-2.7.6/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-2.7.6/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-2.7.6/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-2.7.6/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-2.7.6/kernelports/Zephyr/
DKconfig285 context, i.e., a task or a preempted ISR. But if another traced ISR
305 events are stored in a ring buffer, i.e., where the oldest events are
327 This defines the capacity of the event buffer, i.e., the number of records
341 These define the capacity of the Object Property Table, i.e., the maximum
364 These define the capacity of the Object Property Table, i.e., the maximum
387 These define the capacity of the Object Property Table, i.e., the maximum
410 These define the capacity of the Object Property Table, i.e., the maximum
433 These define the capacity of the Object Property Table, i.e., the maximum
456 These define the capacity of the Object Property Table, i.e., the maximum
479 These define the capacity of the Object Property Table, i.e., the maximum
[all …]
/TraceRecorderSource-2.7.6/kernelports/ESP-IDF_FreeRTOS/
DKconfig.projbuild394 context, i.e., a task or a preempted ISR. But if another traced ISR
414 events are stored in a ring buffer, i.e., where the oldest events are
436 This defines the capacity of the event buffer, i.e., the number of records
450 These define the capacity of the Object Property Table, i.e., the maximum
473 These define the capacity of the Object Property Table, i.e., the maximum
496 These define the capacity of the Object Property Table, i.e., the maximum
519 These define the capacity of the Object Property Table, i.e., the maximum
542 These define the capacity of the Object Property Table, i.e., the maximum
565 These define the capacity of the Object Property Table, i.e., the maximum
588 These define the capacity of the Object Property Table, i.e., the maximum
[all …]
/TraceRecorderSource-2.7.6/streamports/TCPIP/
DReadme-Streamport.txt7 i.e., the specific code needed to use a particular interface for streaming a
/TraceRecorderSource-2.7.6/kernelports/BareMetal/
Dreadme-baremetal.txt7 This module allows for using the Tracealyzer recorder library in bare metal software (i.e. without …