Home
last modified time | relevance | path

Searched refs:CborInvalidType (Results 1 – 9 of 9) sorted by relevance

/tinycbor-2.7.6/src/
Dcborparser.c175 it->type = CborInvalidType; in preparse_value()
229 it->type = CborInvalidType; in preparse_value()
263 it->type = CborInvalidType; in preparse_next_value()
270 it->type = CborInvalidType; in preparse_next_value()
405 assert(it->type != CborInvalidType); in cbor_value_advance_fixed()
453 assert(it->type != CborInvalidType); in cbor_value_advance()
554 recursed->type = CborInvalidType; in cbor_value_enter_container()
574 assert(recursed->type == CborInvalidType); in cbor_value_leave_container()
1227 element->type = CborInvalidType; in cbor_value_map_find_value()
1231 element->type = CborInvalidType; in cbor_value_map_find_value()
Dcborpretty.c439 case CborInvalidType: in value_to_pretty()
Dcborvalidation.c639 case CborInvalidType: in validate_value()
Dcbor.dox90 …* \value CborInvalidType Type is not valid (this value is used to indicate error conditi…
Dcbortojson.c643 case CborInvalidType: in value_to_json()
/tinycbor-2.7.6/examples/
Dsimplereader.c142 case CborInvalidType: in dumprecursive()
/tinycbor-2.7.6/tools/json2cbor/
Djson2cbor.c209 struct MetaData result = { 0, {NULL}, CborInvalidType, false }; in parse_meta_data()
300 case CborInvalidType: in decode_json_with_metadata()
/tinycbor-2.7.6/include/tinycbor/
Dcbor.h93CborInvalidType = 0xff /* equivalent to the break byte, so it will never be used … enumerator
292 { return value && value->type != CborInvalidType; } in cbor_value_is_valid()
/tinycbor-2.7.6/tests/parser/
Dtst_parser.cpp1281 QCOMPARE(int(element.type), int(CborInvalidType)); in mapFind()