Home
last modified time | relevance | path

Searched refs:CBOR_TYPE_STRING (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/libcbor/test/
H A Dstring_test.c21 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_empty_string()
37 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_short_string()
55 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_short_multibyte_string()
84 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_int8_string()
118 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_int16_string()
151 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_int32_string()
185 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_int64_string()
207 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_short_indef_string()
226 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_invalid_utf()
H A Dmap_test.c96 assert_true(cbor_typeof(handle[0].key) == CBOR_TYPE_STRING); in test_def_nested_map()
99 assert_true(cbor_typeof(inner_handle[0].key) == CBOR_TYPE_STRING); in test_def_nested_map()
100 assert_true(cbor_typeof(inner_handle[0].value) == CBOR_TYPE_STRING); in test_def_nested_map()
120 assert_true(cbor_typeof(handle[0].key) == CBOR_TYPE_STRING); in test_streamed_key_map()
142 assert_true(cbor_typeof(handle[0].key) == CBOR_TYPE_STRING); in test_streamed_kv_map()
145 assert_true(cbor_typeof(handle[0].value) == CBOR_TYPE_STRING); in test_streamed_kv_map()
169 assert_true(cbor_typeof(handle[0].key) == CBOR_TYPE_STRING); in test_streamed_streamed_kv_map()
172 assert_true(cbor_typeof(handle[0].value) == CBOR_TYPE_STRING); in test_streamed_streamed_kv_map()
H A Dcallbacks_test.c231 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_builder_string_callback_append_alloc_failure()
263 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_builder_string_callback_append_item_alloc_failure()
295 assert_true(cbor_typeof(string) == CBOR_TYPE_STRING); in test_builder_string_callback_append_parent_alloc_failure()
/freebsd/contrib/libcbor/src/cbor/
H A Dcommon.c35 return item->type == CBOR_TYPE_STRING; in cbor_isa_string()
107 case CBOR_TYPE_STRING: { in cbor_decref()
H A Dstrings.c18 .type = CBOR_TYPE_STRING, in cbor_new_definite_string()
28 .type = CBOR_TYPE_STRING, in cbor_new_indefinite_string()
H A Ddata.h31 CBOR_TYPE_STRING /** 3 - strings */ enumerator
H A Dserialization.c30 case CBOR_TYPE_STRING: in cbor_serialize()
96 case CBOR_TYPE_STRING: { in cbor_serialized_size()
/freebsd/contrib/libcbor/doc/source/api/
H A Dtype_3.rst7 Corresponding :type:`cbor_type` ``CBOR_TYPE_STRING``
/freebsd/contrib/libcbor/examples/
H A Dcbor2cjson.c29 case CBOR_TYPE_STRING: in cbor_to_cjson()
/freebsd/contrib/libcbor/src/
H A Dcbor.c187 case CBOR_TYPE_STRING: in cbor_copy()
342 case CBOR_TYPE_STRING: { in _cbor_nested_describe()
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dbuilder_callbacks.c340 case CBOR_TYPE_STRING: in _cbor_is_indefinite()
/freebsd/contrib/libfido2/src/
H A Dcbor.c16 item->type == CBOR_TYPE_STRING) in check_key_type()