Home
last modified time | relevance | path

Searched refs:e (Results 1 – 14 of 14) sorted by relevance

/TraceRecorderSource-3.4.0/kernelports/ThreadX/include/
DtrcKernelPortHooks.h119 #define TX_TRACE_IN_LINE_INSERT(i, a, b, c, d, e) \ argument
121 TRC_TG_##e(_##i)(i, a, b, c, d, e); \
140 #define TRC_TP_TX_TRACE_ISR_ENTER(i, a, b, c, d, e) xTraceISREnterHook(i, b) argument
141 #define TRC_TP_TX_TRACE_ISR_EXIT(i, a, b, c, d, e) xTraceISRExitHook(i) argument
142 #define TRC_TP_TX_TRACE_TIME_SLICE(i, a, b, c, d, e) xTraceTimeSliceHook(i, a) argument
143 #define TRC_TP_TX_TRACE_RUNNING(i, a, b, c, d, e) argument
146 #define TRC_TP_TX_TRACE_BLOCK_ALLOCATE(i, a, b, c, d, e) xTraceBlockAllocateHook(i, a, c, … argument
147 #define TRC_TP_TX_TRACE_BLOCK_POOL_CREATE(i, a, b, c, d, e) xTraceBlockPoolCreateHook(i, a… argument
148 #define TRC_TP_TX_TRACE_BLOCK_POOL_DELETE(i, a, b, c, d, e) xTraceBlockPoolDeleteHook(i, a) argument
149 #define TRC_TP_TX_TRACE_BLOCK_POOL_INFO_GET(i, a, b, c, d, e) xTraceBlockPoolInfoGetHook(i,… argument
[all …]
/TraceRecorderSource-3.4.0/streamports/RingBuffer/
DKconfig17 events are stored in a ring buffer, i.e., where the oldest events are
19 events leading up to an interesting state, e.g., an error, without having
24 recording events following a specific state, e.g., the startup sequence.
DReadme-Streamport.txt5 i.e., the specific code needed to use a particular interface for streaming a
12 by the compiler (i.e., add this folder to your project's include paths) and
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/config/
DKconfig179 These define the capacity of the Object Property Table, i.e., the maximum
180 number of objects active at any given point, within each object class (e.g.,
201 These define the capacity of the Object Property Table, i.e., the maximum
202 number of objects active at any given point, within each object class (e.g.,
223 These define the capacity of the Object Property Table, i.e., the maximum
224 number of objects active at any given point, within each object class (e.g.,
245 These define the capacity of the Object Property Table, i.e., the maximum
246 number of objects active at any given point, within each object class (e.g.,
267 These define the capacity of the Object Property Table, i.e., the maximum
268 number of objects active at any given point, within each object class (e.g.,
[all …]
/TraceRecorderSource-3.4.0/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-3.4.0/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-3.4.0/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-3.4.0/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-3.4.0/streamports/STM32_USB_CDC/
DReadme-Streamport.txt26 2. Open the Device Configuration Tool (STM32CubeMX), e.g. by double-clicking on the .ioc file in yo…
30 - Under Configuration -> Parameter Settings, set the TX and RX buffer sizes to a small value (e.g. …
44 6. Plug in a USB cable to the connector labeled "USB OTG" or similar (i.e. for application use).
/TraceRecorderSource-3.4.0/
DtrcSnapshotRecorder.c2666 unsigned int e = 0; in prvCheckDataToBeOverwrittenForMultiEntryEvents() local
2673 e = RecorderDataPtr->nextFreeIndex + i; in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2674 if ((RecorderDataPtr->eventData[e*4] > USER_EVENT) && in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2675 (RecorderDataPtr->eventData[e*4] < USER_EVENT + 16)) in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2677 uint8_t nDataEvents = (uint8_t)(RecorderDataPtr->eventData[e*4] - USER_EVENT); in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2678 if ((e + nDataEvents) < RecorderDataPtr->maxEvents) in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2680 (void)memset(& RecorderDataPtr->eventData[e*4], 0, (size_t) (4 + 4 * nDataEvents)); in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2683 else if (RecorderDataPtr->eventData[e*4] == DIV_XPS) in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2685 if ((e + 1) < RecorderDataPtr->maxEvents) in prvCheckDataToBeOverwrittenForMultiEntryEvents()
2688 (void)memset(& RecorderDataPtr->eventData[e*4], 0, 4 + 4); in prvCheckDataToBeOverwrittenForMultiEntryEvents()
[all …]
DDoxyfile219 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
349 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
352 # definitions whose arguments contain STL classes (e.g. func(std::string);
400 # type (e.g. under the Public Functions section). Set it to NO to prevent
408 # are shown inside the group in which they are included (e.g. using \ingroup)
420 # the documentation of the scope in which they are defined (i.e. file,
1005 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
1094 # tools must be available from the command line (i.e. in the search path).
1195 # that doxygen needs, which is dependent on the configuration options used (e.g.
1238 # Note: The order of the extra style sheet files is of importance (e.g. the last
[all …]
/TraceRecorderSource-3.4.0/config/
DKconfig23 Can also be used for streaming without Tracealyzer control, e.g. to a local
293 context, i.e., a task or a preempted ISR. But if another traced ISR
344 events are stored in a ring buffer, i.e., where the oldest events are
346 events leading up to an interesting state, e.g., an error, without having
351 recording events following a specific state, e.g., the startup sequence.
365 This defines the capacity of the event buffer, i.e., the number of records
396 32-bit pointer, i.e., using 4 bytes rather than 0.
430 - Blocking on "input" operations, i.e., when the task is waiting for the
461 e.g., RTOS events. Thereby you can get a much longer history of
/TraceRecorderSource-3.4.0/streamports/ARM_ITM/
DReadme-ARM_ITM.txt7 i.e., the specific code needed to use a particular interface for streaming a
/TraceRecorderSource-3.4.0/streamports/TCPIP/
DReadme-Streamport.txt7 i.e., the specific code needed to use a particular interface for streaming a