Lines Matching refs:option
243 coap_opt_t *option; in hnd_post_test() local
280 option = coap_check_option(request, COAP_OPTION_CONTENT_TYPE, &opt_iter); in hnd_post_test()
281 if (option) { in hnd_post_test()
283 coap_decode_var_bytes(COAP_OPT_VALUE(option), COAP_OPT_LENGTH(option)); in hnd_post_test()
309 coap_opt_t *option; in hnd_put_test() local
336 option = coap_check_option(request, COAP_OPTION_CONTENT_TYPE, &opt_iter); in hnd_put_test()
337 if (option) { in hnd_put_test()
340 coap_decode_var_bytes(COAP_OPT_VALUE(option), COAP_OPT_LENGTH(option)); in hnd_put_test()
414 coap_opt_t *option; in hnd_get_separate() local
433 while ((option = coap_option_next(&opt_iter))) { in hnd_get_separate()
434 if (strncmp("delay=", (char *)COAP_OPT_VALUE(option), 6) == 0) { in hnd_get_separate()
438 for (i = 6; i < COAP_OPT_LENGTH(option); ++i) in hnd_get_separate()
439 d = d * 10 + COAP_OPT_VALUE(option)[i] - '0'; in hnd_get_separate()