Home
last modified time | relevance | path

Searched refs:uLabelType (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/lib/qcbor/src/
H A Dqcbor_decode.c152 if(Item1.uLabelType == QCBOR_TYPE_INT64) { in QCBORItem_MatchLabel()
153 if(Item2.uLabelType == QCBOR_TYPE_INT64 && Item1.label.int64 == Item2.label.int64) { in QCBORItem_MatchLabel()
157 } else if(Item1.uLabelType == QCBOR_TYPE_TEXT_STRING) { in QCBORItem_MatchLabel()
158 …if(Item2.uLabelType == QCBOR_TYPE_TEXT_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
161 } else if(Item1.uLabelType == QCBOR_TYPE_BYTE_STRING) { in QCBORItem_MatchLabel()
162 …if(Item2.uLabelType == QCBOR_TYPE_BYTE_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
165 } else if(Item1.uLabelType == QCBOR_TYPE_UINT64) { in QCBORItem_MatchLabel()
166 if(Item2.uLabelType == QCBOR_TYPE_UINT64 && Item1.label.uint64 == Item2.label.uint64) { in QCBORItem_MatchLabel()
1801 pDecodedItem->uLabelType = LabelItem.uDataType; in QCBORDecode_Private_GetNextMapEntry()
2716 pDecodedItem->uLabelType = QCBOR_TYPE_NONE; in QCBORDecode_GetNext()
[all …]
/optee_os/core/lib/qcbor/inc/qcbor/
H A Dqcbor_spiffy_decode.h2280 OneItemSeach[0].uLabelType = QCBOR_TYPE_INT64; in QCBORDecode_GetArrayFromMapN()
2283 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE; in QCBORDecode_GetArrayFromMapN()
2297 OneItemSeach[0].uLabelType = QCBOR_TYPE_TEXT_STRING; in QCBORDecode_GetArrayFromMapSZ()
2300 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE; in QCBORDecode_GetArrayFromMapSZ()
2327 OneItemSeach[0].uLabelType = QCBOR_TYPE_INT64; in QCBORDecode_GetMapFromMapN()
2330 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE; in QCBORDecode_GetMapFromMapN()
2344 OneItemSeach[0].uLabelType = QCBOR_TYPE_TEXT_STRING; in QCBORDecode_GetMapFromMapSZ()
2347 OneItemSeach[1].uLabelType = QCBOR_TYPE_NONE; in QCBORDecode_GetMapFromMapSZ()
H A Dqcbor_decode.h399 uint8_t uLabelType; member