Searched refs:coap_opt_size (Results 1 – 6 of 6) sorted by relevance
60 size_t coap_opt_size(const coap_opt_t *opt);63 #define COAP_OPT_SIZE(opt) coap_opt_size(opt)
351 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == sizeof(teststr)); in t_access_option1()361 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == sizeof(teststr)); in t_access_option2()374 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == sizeof(teststr)); in t_access_option3()384 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == 65535 + 4); in t_access_option4()394 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == 495); in t_access_option5()407 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == 0); in t_access_option6()417 CU_ASSERT(coap_opt_size((coap_opt_t *)teststr) == 0); in t_access_option7()
72 coap_opt_size
74 coap_opt_size;
163 * option.c (coap_opt_size, coap_opt_value, coap_opt_length):
321 coap_opt_size(const coap_opt_t *opt) { in coap_opt_size() function