Searched refs:_cbor_stack_push (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/libcbor/test/ |
H A D | callbacks_test.c | 37 _cbor_stack_push(&stack, cbor_new_indefinite_bytestring(), 0)); in test_builder_byte_string_callback_append() 77 _cbor_stack_push(&stack, cbor_new_indefinite_bytestring(), 0)); in test_builder_byte_string_callback_append_alloc_failure() 109 _cbor_stack_push(&stack, cbor_new_indefinite_bytestring(), 0)); in test_builder_byte_string_callback_append_item_alloc_failure() 143 _cbor_stack_push(&stack, cbor_new_indefinite_bytestring(), 0)); in test_builder_byte_string_callback_append_parent_alloc_failure() 176 assert_non_null(_cbor_stack_push(&stack, cbor_new_indefinite_string(), 0)); in test_builder_string_callback_append() 213 assert_non_null(_cbor_stack_push(&stack, cbor_new_indefinite_string(), 0)); in test_builder_string_callback_append_alloc_failure() 244 assert_non_null(_cbor_stack_push(&stack, cbor_new_indefinite_string(), 0)); in test_builder_string_callback_append_item_alloc_failure() 276 assert_non_null(_cbor_stack_push(&stack, cbor_new_indefinite_string(), 0)); in test_builder_string_callback_append_parent_alloc_failure() 307 assert_non_null(_cbor_stack_push(&stack, cbor_new_definite_array(0), 0)); in test_append_array_failure() 337 _cbor_stack_push( in test_append_map_failure() [all...] |
/freebsd/contrib/libcbor/src/cbor/internal/ |
H A D | stack.h | 46 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *, cbor_item_t *,
|
H A D | stack.c | 21 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *stack, in _cbor_stack_push() function
|
H A D | builder_callbacks.c | 136 if (_cbor_stack_push(ctx->stack, res, subitems) == NULL) { \
|