Home
last modified time | relevance | path

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

/freebsd-src/contrib/libcbor/doc/source/api/
H A Dstreaming_decoding.rst6 .. doxygenfunction:: cbor_stream_decode
8 For example, when :func:`cbor_stream_decode` encounters a 1B unsigned integer, it will invoke the f…
/freebsd-src/contrib/libcbor/src/cbor/
H A Dstreaming.h29 _CBOR_NODISCARD CBOR_EXPORT struct cbor_decoder_result cbor_stream_decode(
H A Dstreaming.c43 struct cbor_decoder_result cbor_stream_decode( in cbor_stream_decode() function
/freebsd-src/contrib/libcbor/examples/
H A Dstreaming_parser.c57 decode_result = cbor_stream_decode(buffer + bytes_read, length - bytes_read, in main()
/freebsd-src/contrib/libcbor/doc/source/
H A Dusing.rst45 - ``cbor/streaming.h`` - Home of :func:`cbor_stream_decode`
167 decode_result = cbor_stream_decode(buffer + bytes_read,
/freebsd-src/contrib/libcbor/
H A DCHANGELOG.md16 - BREAKING: [All decoders like `cbor_load` and `cbor_stream_decode` will accept all well-formed tag…
70 - `cbor_stream_decode` will set `CBOR_DECODER_NEDATA` instead if the input buffer is empty
71 - [Fix `cbor_stream_decode`](https://github.com/PJK/libcbor/pull/156) to set `cbor_decoder_result.r…
/freebsd-src/contrib/libcbor/test/
H A Dstream_expectations.c322 cbor_stream_decode(source, source_size, &asserting_callbacks, NULL); in decode()
H A Dcallbacks_test.c27 cbor_stream_decode(data + read, 79 - read, &cbor_empty_callbacks, NULL); in test_default_callbacks()
/freebsd-src/contrib/libcbor/src/
H A Dcbor.c65 cbor_stream_decode(source + result->read, source_size - result->read, in cbor_load()