Home
last modified time | relevance | path

Searched refs:etag (Results 1 - 11 of 11) sorted by relevance

/third_party/libcoap/examples/
H A Dcoap-rd.c72 size_t etag_len; /**< actual length of @c etag */
73 unsigned char etag[8]; /**< ETag for current description */ member
155 coap_add_option(response, COAP_OPTION_ETAG, rd->etag_len, rd->etag); in hnd_get_resource()
171 coap_opt_t *token, *etag; in hnd_put_resource()
184 etag = coap_check_option(request, COAP_OPTION_ETAG, &opt_iter); in hnd_put_resource()
185 if (!etag || (COAP_OPT_LENGTH(etag) != rd->etag_len) in hnd_put_resource()
186 || memcmp(COAP_OPT_VALUE(etag), rd->etag, rd->etag_len) != 0) { in hnd_put_resource()
204 if (etag) { in hnd_put_resource()
355 coap_opt_t *etag; make_rd() local
[all...]
H A Doscore-interop-server.c183 uint64_t etag; in hnd_put_hello_7() local
188 etag = coap_decode_var_bytes8(coap_opt_value(option), in hnd_put_hello_7()
190 if (etag != 0x7b) { in hnd_put_hello_7()
H A Dcoap-server.c1614 uint64_t etag = 0; in proxy_response_handler() local
1680 etag = coap_decode_var_bytes8(coap_opt_value(option), in proxy_response_handler()
1705 media_type, maxage, etag, size, data, in proxy_response_handler()
/third_party/node/deps/npm/node_modules/http-cache-semantics/
H A Dindex.js534 if (this._resHeaders.etag) {
536 ? `${headers['if-none-match']}, ${this._resHeaders.etag}`
537 : this._resHeaders.etag;
555 .filter(etag => {
556 return !/^\s*W\//.test(etag);
602 response.headers.etag &&
603 !/^\s*W\//.test(response.headers.etag)
609 this._resHeaders.etag &&
610 this._resHeaders.etag.replace(/^\s*W\//, '') ===
611 response.headers.etag;
[all...]
/third_party/node/test/parallel/
H A Dtest-http-incoming-matchKnownFields.js42 checkDest('Etag', { etag: undefined });
43 checkDest('etag', { etag: 'test' }, 'value');
/third_party/libcoap/src/
H A Dcoap_block.c280 coap_key_t etag; in coap_add_data_blocked_response() local
304 /* add etag for the resource */ in coap_add_data_blocked_response()
305 memset(etag, 0, sizeof(etag)); in coap_add_data_blocked_response()
306 coap_hash(data, length, etag); in coap_add_data_blocked_response()
307 coap_insert_option(response, COAP_OPTION_ETAG, sizeof(etag), etag); in coap_add_data_blocked_response()
598 uint64_t etag, in coap_add_data_large_internal()
865 lg_xmit->b.b2.etag = etag; in coap_add_data_large_internal()
592 coap_add_data_large_internal(coap_session_t *session, const coap_pdu_t *request, coap_pdu_t *pdu, coap_resource_t *resource, const coap_string_t *query, int maxage, uint64_t etag, size_t length, const uint8_t *data, coap_release_large_data_t release_func, void *app_ptr, int single_request, coap_pdu_code_t request_method) coap_add_data_large_internal() argument
1016 coap_add_data_large_response(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, coap_pdu_t *response, const coap_string_t *query, uint16_t media_type, int maxage, uint64_t etag, size_t length, const uint8_t *data, coap_release_large_data_t release_func, void *app_ptr ) coap_add_data_large_response() argument
2275 uint64_t etag = coap_decode_var_bytes8(coap_opt_value(etag_opt), coap_handle_request_send_block() local
[all...]
/third_party/libcoap/include/coap3/
H A Dcoap_block_internal.h106 uint64_t etag; /**< ETag value */ member
154 uint8_t etag[8]; /**< ETag for block checking */ member
H A Dcoap_net_internal.h162 uint64_t etag; /**< Next ETag to use */ member
H A Dcoap_block.h381 * @param etag ETag to use if not 0.
398 uint64_t etag,
/third_party/littlefs/
H A Dlfs.h362 uint32_t etag; member
H A Dlfs.c690 lfs_tag_t ntag = dir->etag; in lfs_dir_getslice()
1189 dir->etag = ptag; in lfs_dir_fetchmatch()
1795 dir->etag = 0xffffffff; in lfs_dir_alloc()
2035 dir->etag = commit.ptag; in lfs_dir_compact()
2221 .ptag = dir->etag, in lfs_dir_relocatingcommit()
2232 dir, dir->off, dir->etag, attrs, attrcount, in lfs_dir_relocatingcommit()
2280 dir->etag = commit.ptag; in lfs_dir_relocatingcommit()
5690 dir2.etag = 0xffffffff;

Completed in 20 milliseconds