Lines Matching refs:xEntryHandle
28 TraceEntryHandle_t xEntryHandle; in xTraceObjectRegisterInternal() local
46 if (xTraceEntryCreateWithAddress(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectRegisterInternal()
58 if (xTraceEntryCreate(&xEntryHandle) == TRC_FAIL) in xTraceObjectRegisterInternal()
65 TRC_ASSERT_ALWAYS_EVALUATE(xTraceEntryGetAddress(xEntryHandle, &pvAddress) == TRC_SUCCESS); in xTraceObjectRegisterInternal()
71 …TRC_ASSERT_ALWAYS_EVALUATE(xTraceEntrySetState(xEntryHandle, (uint32_t)i, uxStates[i]) == TRC_SUCC… in xTraceObjectRegisterInternal()
75 …TRC_ASSERT_ALWAYS_EVALUATE(xTraceEntrySetOptions(xEntryHandle, (uint32_t)uxOptions) == TRC_SUCCESS… in xTraceObjectRegisterInternal()
77 *pxObjectHandle = (TraceObjectHandle_t)xEntryHandle; in xTraceObjectRegisterInternal()
86 …TRC_ASSERT_ALWAYS_EVALUATE(xTraceObjectSetName((TraceObjectHandle_t)xEntryHandle, szName) == TRC_S… in xTraceObjectRegisterInternal()
185 TraceEntryHandle_t xEntryHandle; in xTraceObjectUnregisterWithoutHandle() local
192 if (xTraceEntryFind(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectUnregisterWithoutHandle()
199 xResult = xTraceObjectUnregister((TraceObjectHandle_t)xEntryHandle, uiEventCode, uxState); in xTraceObjectUnregisterWithoutHandle()
209 TraceEntryHandle_t xEntryHandle; in xTraceObjectSetNameWithoutHandle() local
216 if (xTraceEntryFind(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectSetNameWithoutHandle()
219 if (xTraceEntryCreateWithAddress(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectSetNameWithoutHandle()
227 xResult = xTraceObjectSetName((TraceObjectHandle_t)xEntryHandle, szName); in xTraceObjectSetNameWithoutHandle()
236 TraceEntryHandle_t xEntryHandle; in xTraceObjectSetSpecificStateWithoutHandle() local
243 if (xTraceEntryFind(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectSetSpecificStateWithoutHandle()
250 xResult = xTraceObjectSetSpecificState((TraceObjectHandle_t)xEntryHandle, uiIndex, uxState); in xTraceObjectSetSpecificStateWithoutHandle()
259 TraceEntryHandle_t xEntryHandle; in xTraceObjectSetOptionsWithoutHandle() local
266 if (xTraceEntryFind(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectSetOptionsWithoutHandle()
269 if (xTraceEntryCreateWithAddress(pvObject, &xEntryHandle) == TRC_FAIL) in xTraceObjectSetOptionsWithoutHandle()
277 xResult = xTraceObjectSetOptions((TraceObjectHandle_t)xEntryHandle, uiMask); in xTraceObjectSetOptionsWithoutHandle()