Lines Matching defs:str_var
63 coap_split_uri_sub(const uint8_t *str_var,
72 if (!str_var || !uri || len == 0)
79 p = str_var;
101 if ((p - str_var) == (int)strlen(coap_uri_scheme[i].name) &&
102 memcmp(str_var, coap_uri_scheme[i].name, p - str_var) == 0) {
105 (int)(p - str_var), str_var);
115 coap_log_err("%.*s URI scheme unknown\n", (int)(p - str_var), str_var);
269 coap_split_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri) {
270 return coap_split_uri_sub(str_var, len, uri, COAP_URI_CHECK_URI);
274 coap_split_proxy_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri) {
275 return coap_split_uri_sub(str_var, len, uri, COAP_URI_CHECK_PROXY);