Home
last modified time | relevance | path

Searched refs:uLastError (Results 1 – 4 of 4) sorted by relevance

/optee_os/core/lib/qcbor/src/
H A Dqcbor_decode.c2746 if(pMe->uLastError != QCBOR_SUCCESS) { in QCBORDecode_VPeekNext()
2752 pMe->uLastError = (uint8_t)QCBORDecode_PeekNext(pMe, pDecodedItem); in QCBORDecode_VPeekNext()
2773 if(pMe->uLastError != QCBOR_SUCCESS) { in QCBORDecode_VGetNext()
2779 pMe->uLastError = (uint8_t)QCBORDecode_GetNext(pMe, pDecodedItem); in QCBORDecode_VGetNext()
2864 QCBORError uReturn = pMe->uLastError; in QCBORDecode_PartialFinish()
2939 if(pMe->uLastError != QCBOR_SUCCESS) { in QCBORDecode_GetNthTagOfLast()
3214 if(pMe->uLastError == QCBOR_SUCCESS) { in QCBORDecode_VGetNextConsume()
3215 pMe->uLastError = (uint8_t)QCBORDecode_Private_ConsumeItem(pMe, pDecodedItem, NULL, in QCBORDecode_VGetNextConsume()
3298 pMe->uLastError = QCBOR_SUCCESS; in QCBORDecode_Rewind()
3356 if(pMe->uLastError != QCBOR_SUCCESS) { in QCBORDecode_Private_MapSearch()
[all …]
/optee_os/core/lib/qcbor/inc/qcbor/
H A Dqcbor_decode.h1604 if(pMe->uLastError) { in QCBORDecode_Tell()
1615 return (QCBORError)pMe->uLastError; in QCBORDecode_GetError()
1621 const QCBORError uReturn = (QCBORError)pMe->uLastError; in QCBORDecode_GetAndResetError()
1622 pMe->uLastError = QCBOR_SUCCESS; in QCBORDecode_GetAndResetError()
1652 pMe->uLastError = (uint8_t)uError; in QCBORDecode_SetError()
H A Dqcbor_spiffy_decode.h2307 pMe->uLastError = QCBOR_ERR_MAP_LABEL_TYPE; in QCBORDecode_GetArrayFromMapSZ()
2354 pMe->uLastError = QCBOR_ERR_MAP_LABEL_TYPE; in QCBORDecode_GetMapFromMapSZ()
2596 if(pMe->uLastError == QCBOR_SUCCESS && item.uDataType != QCBOR_TYPE_NULL) { in QCBORDecode_GetNull()
2597 pMe->uLastError = QCBOR_ERR_UNEXPECTED_TYPE; in QCBORDecode_GetNull()
2623 if(pMe->uLastError == QCBOR_SUCCESS && item.uDataType != QCBOR_TYPE_UNDEF) { in QCBORDecode_GetUndefined()
2624 pMe->uLastError = QCBOR_ERR_UNEXPECTED_TYPE; in QCBORDecode_GetUndefined()
2939 if(pMe->uLastError != QCBOR_SUCCESS) { in QCBORDecode_GetMIMEMessage()
2947 pMe->uLastError = (uint8_t)uError; in QCBORDecode_GetMIMEMessage()
2951 pMe->uLastError = (uint8_t)QCBORDecode_Private_GetMIME(uTagRequirement, in QCBORDecode_GetMIMEMessage()
2967 if(pMe->uLastError == QCBOR_SUCCESS) { in QCBORDecode_GetMIMEMessageInMapN()
[all …]
H A Dqcbor_private.h369 uint8_t uLastError; /* QCBORError stuffed into a uint8_t */ member