Home
last modified time | relevance | path

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

/third_party/libcoap/src/
Duri.c158 COAP_SET_STR(&uri->host, q - p, p); in coap_split_uri_sub()
171 COAP_SET_STR(&uri->host, q - p, p); in coap_split_uri_sub()
215 COAP_SET_STR(&uri->path, q - p, p); in coap_split_uri_sub()
224 COAP_SET_STR(&uri->query, len, p); in coap_split_uri_sub()
Dnet.c2348 COAP_SET_STR(&token, sent->pdu->token_length, sent->pdu->token); in coap_cancel()
3078 COAP_SET_STR(&token, obs->pdu->token_length, obs->pdu->token); in coap_dispatch()
/third_party/libcoap/include/coap3/
Dstr.h45 #define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); } macro