Home
last modified time | relevance | path

Searched refs:uxStates (Results 1 – 5 of 5) sorted by relevance

/TraceRecorderSource-3.4.0/
DtrcExtension.c33 TraceUnsignedBaseType_t uxStates[3]; in xTraceExtensionCreate() local
41uxStates[TRC_EXTENSION_STATE_INDEX_VERSION] = TRC_EXTENSION_COMBINE_VERSION(uiMajor, uiMinor, uiPa… in xTraceExtensionCreate()
42 uxStates[TRC_EXTENSION_STATE_INDEX_BASE_EVENT_ID] = uiTraceNextFreeExtensionEventId; in xTraceExtensionCreate()
43 uxStates[TRC_EXTENSION_STATE_INDEX_EVENT_COUNT] = uiEventCount; in xTraceExtensionCreate()
46 …if (xTraceObjectRegisterInternal(PSF_EVENT_EXTENSION_CREATE, 0, szName, 3, uxStates, TRC_ENTRY_OPT… in xTraceExtensionCreate()
DtrcCounter.c34 TraceUnsignedBaseType_t uxStates[3]; in xTraceCounterCreate() local
43 uxStates[TRC_COUNTER_VALUE_INDEX] = (TraceUnsignedBaseType_t)xInitialValue; in xTraceCounterCreate()
44 uxStates[TRC_COUNTER_LOWER_LIMIT_INDEX] = (TraceUnsignedBaseType_t)xLowerLimit; in xTraceCounterCreate()
45 uxStates[TRC_COUNTER_UPPER_LIMIT_INDEX] = (TraceUnsignedBaseType_t)xUpperLimit; in xTraceCounterCreate()
48 …if (xTraceObjectRegisterInternal(PSF_EVENT_COUNTER_CREATE, 0, szName, 3, uxStates, TRC_ENTRY_OPTIO… in xTraceCounterCreate()
DtrcHeap.c21 TraceUnsignedBaseType_t uxStates[3]; in xTraceHeapCreate() local
23 uxStates[TRC_HEAP_STATE_INDEX_CURRENT] = uxCurrent; in xTraceHeapCreate()
24 uxStates[TRC_HEAP_STATE_INDEX_HIGHWATERMARK] = uxHighWaterMark; in xTraceHeapCreate()
25 uxStates[TRC_HEAP_STATE_INDEX_MAX] = uxMax; in xTraceHeapCreate()
27 …return xTraceObjectRegisterInternal(PSF_EVENT_HEAP_CREATE, 0, szName, 3, uxStates, TRC_ENTRY_OPTIO… in xTraceHeapCreate()
DtrcObject.c25 …* szName, TraceUnsignedBaseType_t uxStateCount, TraceUnsignedBaseType_t uxStates[], TraceUnsignedB… in xTraceObjectRegisterInternal() argument
67 TRC_ASSERT_ALWAYS_EVALUATE(xTraceEntrySetState(xEntryHandle, i, uxStates[i]) == TRC_SUCCESS); in xTraceObjectRegisterInternal()
92 xTraceEventAddUnsignedBaseType(xEventHandle, uxStates[i]); in xTraceObjectRegisterInternal()
/TraceRecorderSource-3.4.0/include/
DtrcObject.h48 …* szName, TraceUnsignedBaseType_t uxStateCount, TraceUnsignedBaseType_t uxStates[], TraceUnsignedB…