Home
last modified time | relevance | path

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

/freebsd/contrib/libcbor/test/
H A Dbytestring_test.c139 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_empty_bs()
150 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_embedded_bs()
169 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_short_bs1()
182 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_short_bs2()
194 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_half_bs()
206 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_int_bs()
218 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_long_bs()
232 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_zero_indef()
248 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_short_indef()
272 assert_true(cbor_typeof(bs) == CBOR_TYPE_BYTESTRING); in test_two_indef()
H A Dcallbacks_test.c53 assert_true(cbor_typeof(bytestring) == CBOR_TYPE_BYTESTRING); in test_builder_byte_string_callback_append()
61 assert_true(cbor_typeof(bytestring) == CBOR_TYPE_BYTESTRING); in test_builder_byte_string_callback_append()
95 assert_true(cbor_typeof(bytestring) == CBOR_TYPE_BYTESTRING); in test_builder_byte_string_callback_append_alloc_failure()
129 assert_true(cbor_typeof(bytestring) == CBOR_TYPE_BYTESTRING); in test_builder_byte_string_callback_append_item_alloc_failure()
163 assert_true(cbor_typeof(bytestring) == CBOR_TYPE_BYTESTRING); in test_builder_byte_string_callback_append_parent_alloc_failure()
/freebsd/contrib/libcbor/src/cbor/
H A Dbytestrings.c36 .type = CBOR_TYPE_BYTESTRING, in cbor_new_definite_bytestring()
47 .type = CBOR_TYPE_BYTESTRING, in cbor_new_indefinite_bytestring()
H A Dcommon.c31 return item->type == CBOR_TYPE_BYTESTRING; in cbor_isa_bytestring()
93 case CBOR_TYPE_BYTESTRING: { in cbor_decref()
H A Ddata.h29 CBOR_TYPE_BYTESTRING /** 2 - byte strings */ enumerator
H A Dserialization.c28 case CBOR_TYPE_BYTESTRING: in cbor_serialize()
80 case CBOR_TYPE_BYTESTRING: { in cbor_serialized_size()
/freebsd/contrib/libcbor/doc/source/api/
H A Dtype_2.rst21 Corresponding :type:`cbor_type` ``CBOR_TYPE_BYTESTRING``
/freebsd/contrib/libcbor/src/
H A Dcbor.c161 case CBOR_TYPE_BYTESTRING: in cbor_copy()
323 case CBOR_TYPE_BYTESTRING: { in _cbor_nested_describe()
324 _cbor_type_marquee(out, "CBOR_TYPE_BYTESTRING", indent); in _cbor_nested_describe()
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dbuilder_callbacks.c338 case CBOR_TYPE_BYTESTRING: in cbor_builder_map_start_callback()