Lines Matching refs:coap_key_t
43 coap_key_t resource_key; /* foreign key that points into resource space */
59 coap_key_t resource_key; /* foreign key that points into resource space */
92 coap_find_payload(const coap_key_t key) { in coap_find_payload()
94 HASH_FIND(hh, test_resources, key, sizeof(coap_key_t), p); in coap_find_payload()
99 coap_add_payload(const coap_key_t key, coap_payload_t *payload, in coap_add_payload()
103 memcpy(payload->resource_key, key, sizeof(coap_key_t)); in coap_add_payload()
104 HASH_ADD(hh, test_resources, resource_key, sizeof(coap_key_t), payload); in coap_add_payload()
107 memcpy(uri->resource_key, key, sizeof(coap_key_t)); in coap_add_payload()
108 HASH_ADD(hh, test_dynamic_uris, resource_key, sizeof(coap_key_t), uri); in coap_add_payload()
117 payload->resource_key, sizeof(coap_key_t), uri); in coap_delete_payload()
150 coap_key_t etag; in hnd_get_resource()