Lines Matching refs:uri_path

656                           coap_string_t **uri_path,
699 *uri_path = coap_get_uri_path(request);
700 if (*uri_path) {
701 uri->path.s = (*uri_path)->s;
702 uri->path.length = (*uri_path)->length;
989 coap_string_t *uri_path = NULL;
1010 if (!get_uri_proxy_scheme_info(request, opt, &uri, &uri_path,
1175 coap_delete_string(uri_path);
1183 coap_string_t *uri_path;
1205 coap_string_t *uri_path;
1207 /* get the uri_path */
1208 uri_path = coap_get_uri_path(request);
1209 if (!uri_path) {
1215 if (coap_string_equal(uri_path, dynamic_entry[i].uri_path)) {
1218 coap_delete_string(dynamic_entry[i].uri_path);
1231 coap_delete_string(uri_path);
1246 coap_str_const_t *uri_path;
1251 * request will be NULL if an Observe triggered request, so the uri_path,
1253 * The uri_path string is a const pointer
1256 uri_path = coap_resource_get_uri_path(resource);
1257 if (!uri_path) {
1263 if (coap_string_equal(uri_path, dynamic_entry[i].uri_path)) {
1294 coap_string_t *uri_path;
1307 /* get the uri_path */
1308 uri_path = coap_get_uri_path(request);
1309 if (!uri_path) {
1318 if (coap_string_equal(uri_path, dynamic_entry[i].uri_path)) {
1326 coap_delete_string(uri_path);
1333 dynamic_entry[i].uri_path = uri_path;
1359 coap_delete_string(uri_path);
1364 coap_delete_string(uri_path);
1519 coap_string_t *uri_path;
1527 /* get the uri_path - will get used by coap_resource_init() */
1528 uri_path = coap_get_uri_path(request);
1529 if (!uri_path) {
1536 * uri_path will get deleted when the resource is removed
1538 r = coap_resource_init((coap_str_const_t *)uri_path,
3081 coap_delete_string(dynamic_entry[i].uri_path);