Lines Matching refs:cbor_item_t
12 cbor_item_t *arr;
40 cbor_item_t *intermediate = cbor_array_get(arr, 0); in test_simple_array()
43 cbor_item_t *new_val = cbor_build_uint8(10); in test_simple_array()
66 cbor_item_t *nested = cbor_array_handle(arr)[1]; in test_nested_arrays()
107 cbor_item_t *nested = cbor_array_handle(arr)[1]; in test_nested_indef_arrays()
117 cbor_item_t *array = cbor_new_definite_array(2); in test_array_replace()
119 cbor_item_t *one = cbor_build_uint8(1); in test_array_replace()
120 cbor_item_t *three = cbor_build_uint8(3); in test_array_replace()
151 cbor_item_t *array = cbor_new_indefinite_array(); in test_array_push_overflow()
152 cbor_item_t *one = cbor_build_uint8(1); in test_array_push_overflow()
179 cbor_item_t *array = cbor_new_indefinite_array(); in test_array_push()
180 cbor_item_t *string = cbor_build_string("Hello!"); in test_array_push()
197 cbor_item_t *array; in test_indef_array_decode()