Home
last modified time | relevance | path

Searched defs:it (Results 1 – 8 of 8) sorted by relevance

/tinycbor-2.7.6/src/
Dcborparser.c172 static CborError preparse_value(CborValue *it) in preparse_value()
258 static CborError preparse_next_value(CborValue *it) in preparse_next_value()
278 static CborError advance_internal(CborValue *it) in advance_internal()
333 CborParser *parser, CborValue *it) in cbor_parser_init()
403 CborError cbor_value_advance_fixed(CborValue *it) in cbor_value_advance_fixed()
412 static CborError advance_recursive(CborValue *it, int nestingLevel) in advance_recursive()
451 CborError cbor_value_advance(CborValue *it) in cbor_value_advance()
487 CborError cbor_value_skip_tag(CborValue *it) in cbor_value_skip_tag()
514 CborError cbor_value_enter_container(const CborValue *it, CborValue *recursed) in cbor_value_enter_container()
571 CborError cbor_value_leave_container(CborValue *it, const CborValue *recursed) in cbor_value_leave_container()
Dcbortojson.c175 static CborError dump_bytestring_base16(char **result, CborValue *it) in dump_bytestring_base16()
202 static CborError generic_dump_base64(char **result, CborValue *it, const char alphabet[65]) in generic_dump_base64()
275 static CborError dump_bytestring_base64(char **result, CborValue *it) in dump_bytestring_base64()
282 static CborError dump_bytestring_base64url(char **result, CborValue *it) in dump_bytestring_base64url()
325 static CborError find_tagged_type(CborValue *it, CborTag *tag, CborType *type) in find_tagged_type()
340 static CborError tagged_value_to_json(FILE *out, CborValue *it, int flags, ConversionStatus *status) in tagged_value_to_json()
404 static CborError stringify_map_key(char **key, CborValue *it, int flags, CborType type) in stringify_map_key()
426 static CborError array_to_json(FILE *out, CborValue *it, int flags, ConversionStatus *status) in array_to_json()
441 static CborError map_to_json(FILE *out, CborValue *it, int flags, ConversionStatus *status) in map_to_json()
492 static CborError value_to_json(FILE *out, CborValue *it, int flags, CborType type, ConversionStatus… in value_to_json()
Dcborvalidation.c294 static inline CborError validate_number(const CborValue *it, CborType type, int flags) in validate_number()
325 static inline CborError validate_tag(CborValue *it, CborTag tag, int flags, int recursionLeft) in validate_tag()
378 static inline CborError validate_floating_point(CborValue *it, CborType type, int flags) in validate_floating_point()
440 static CborError validate_container(CborValue *it, int containerType, int flags, int recursionLeft) in validate_container()
522 static CborError validate_value(CborValue *it, int flags, int recursionLeft) in validate_value()
Dcborpretty.c244 static CborError container_to_pretty(FILE *out, CborValue *it, CborType containerType) in container_to_pretty()
269 static CborError value_to_pretty(FILE *out, CborValue *it) in value_to_pretty()
/tinycbor-2.7.6/examples/
Dsimplereader.c35 static bool dumprecursive(CborValue *it, int nestingLevel) in dumprecursive()
169 CborValue it; in main() local
/tinycbor-2.7.6/tests/parser/
Dtst_parser.cpp115 CborError parseOne(CborValue *it, QString *parsed) in parseOne()
124 CborError parseOneChunk(CborValue *it, QString *parsed) in parseOneChunk()
2099 CborValue it = first; in recursionLimit() local
/tinycbor-2.7.6/include/tinycbor/
Dcbor.h275 CBOR_INLINE_API bool cbor_value_at_end(const CborValue *it) in cbor_value_at_end()
279 CBOR_INLINE_API bool cbor_value_is_container(const CborValue *it) in cbor_value_is_container()
504 struct CborValue it; member
/tinycbor-2.7.6/tests/tojson/
Dtst_tojson.cpp198 CborError parseOne(CborValue *it, QString *parsed, int flags) in parseOne()