Lines Matching refs:path
59 goto path; in coap_split_uri()
146 path: /* at this point, p must point to an absolute path */ in coap_split_uri()
161 COAP_SET_STR(&uri->path, q - p, p); in coap_split_uri()
438 uri->path.length + sizeof(coap_uri_t) + 1); in coap_clone_uri()
454 if ( uri->path.length ) { in coap_clone_uri()
455 result->path.s = URI_DATA(result) + uri->host.length; in coap_clone_uri()
456 result->path.length = uri->path.length; in coap_clone_uri()
458 memcpy(result->path.s, uri->path.s, uri->path.length); in coap_clone_uri()
462 result->query.s = URI_DATA(result) + uri->host.length + uri->path.length; in coap_clone_uri()
481 coap_hash_path(const unsigned char *path, size_t len, coap_key_t key) { in coap_hash_path() argument
482 if (!path) in coap_hash_path()
487 coap_split_path_impl(path, len, hash_segment, key); in coap_hash_path()