Home
last modified time | relevance | path

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

/optee_os/core/lib/qcbor/src/
H A Dqcbor_err_to_str.c23 qcbor_err_to_str(const QCBORError uErr) { in qcbor_err_to_str() argument
24 switch (uErr) { in qcbor_err_to_str()
78 if(uErr >= QCBOR_ERR_FIRST_USER_DEFINED && uErr <= QCBOR_ERR_LAST_USER_DEFINED) { in qcbor_err_to_str()
83 buf[uEndOffset] = (char)(uErr/100 + '0'); in qcbor_err_to_str()
84 buf[uEndOffset+1] = (char)(((uErr/10) % 10) + '0'); in qcbor_err_to_str()
85 buf[uEndOffset+2] = (char)((uErr % 10 )+ '0'); in qcbor_err_to_str()
H A Dqcbor_decode.c1678 QCBORError uErr = QCBORDecode_Private_GetNextFullString(pMe, pDecodedItem); in QCBORDecode_Private_GetNextTagNumber() local
1679 if(uErr != QCBOR_SUCCESS) { in QCBORDecode_Private_GetNextTagNumber()
1680 uReturn = uErr; in QCBORDecode_Private_GetNextTagNumber()
1774 QCBORError uErr; in QCBORDecode_Private_GetNextMapEntry() local
1776 uErr = QCBORDecode_Private_GetNextTagNumber(pMe, pDecodedItem); in QCBORDecode_Private_GetNextMapEntry()
1777 if(QCBORDecode_IsUnrecoverableError(uErr)) { in QCBORDecode_Private_GetNextMapEntry()
1794 uErr = QCBORDecode_Private_GetNextTagNumber(pMe, pDecodedItem); in QCBORDecode_Private_GetNextMapEntry()
1795 if(QCBORDecode_IsUnrecoverableError(uErr)) { in QCBORDecode_Private_GetNextMapEntry()
1809 uErr = QCBOR_ERR_MAP_LABEL_TYPE; in QCBORDecode_Private_GetNextMapEntry()
1831 uErr = QCBOR_ERR_MAP_LABEL_TYPE; in QCBORDecode_Private_GetNextMapEntry()
[all …]
/optee_os/core/lib/qcbor/inc/qcbor/
H A Dqcbor_decode.h1293 QCBORDecode_IsNotWellFormedError(QCBORError uErr);
1316 QCBORDecode_IsUnrecoverableError(QCBORError uErr);
1627 QCBORDecode_IsNotWellFormedError(const QCBORError uErr) in QCBORDecode_IsNotWellFormedError() argument
1629 if(uErr >= QCBOR_START_OF_NOT_WELL_FORMED_ERRORS && in QCBORDecode_IsNotWellFormedError()
1630 uErr <= QCBOR_END_OF_NOT_WELL_FORMED_ERRORS) { in QCBORDecode_IsNotWellFormedError()
1638 QCBORDecode_IsUnrecoverableError(const QCBORError uErr) in QCBORDecode_IsUnrecoverableError() argument
1640 if(uErr >= QCBOR_START_OF_UNRECOVERABLE_DECODE_ERRORS && in QCBORDecode_IsUnrecoverableError()
1641 uErr <= QCBOR_END_OF_UNRECOVERABLE_DECODE_ERRORS) { in QCBORDecode_IsUnrecoverableError()
H A Dqcbor_common.h557 qcbor_err_to_str(QCBORError uErr);
/optee_os/core/lib/qcbor/
H A DREADME.md95 uErr = QCBOREncode_Finish(&EncodeCtx, &EncodedEngine);
104 uErr = QCBORDecode_Finish(&DecodeCtx);