Home
last modified time | relevance | path

Searched refs:zcbor_tstr_encode_ptr (Results 1 – 3 of 3) sorted by relevance

/mcuboot-latest/boot/zcbor/include/
Dzcbor_encode.h213 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len);
217 #define zcbor_tstr_put_lit(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str) - 1)
219 #define zcbor_tstr_put_arr(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str))
/mcuboot-latest/boot/zcbor/src/
Dzcbor_encode.c325 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len) function
341 return zcbor_tstr_encode_ptr(state, str, strnlen(str, maxlen));
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c205 zcbor_tstr_encode_ptr(state, (char *)string, sizeof(string) - 1)
477 zcbor_tstr_encode_ptr(cbor_state, (char *)tmpbuf, strlen((char *)tmpbuf)); in bs_list()