/third_party/curl/tests/data/ |
D | test345 | 34 Both --etag-compare and -save store new Etag using one pre-existing file 36 <file name="log/etag%TESTNUMBER"> 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare log/etag%TESTNUMBER --etag-save log/etag%TESTNU… 55 <file name="log/etag%TESTNUMBER">
|
D | test344 | 34 Both --etag-compare and -save store new Etag using non-existing file 37 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare log/etag%TESTNUMBER --etag-save log/etag%TESTNU… 52 <file name="log/etag%TESTNUMBER">
|
D | test343 | 34 Both --etag-compare and --etag-save to save new Etag 36 <file name="log/etag%TESTNUMBER"> 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare log/etag%TESTNUMBER --etag-save log/out%TESTNUM…
|
D | test342 | 34 Check if --etag-compare set correct etag in header 36 <file name="log/etag%TESTNUMBER"> 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare log/etag%TESTNUMBER
|
D | test339 | 39 Check if --etag-save saved correct etag to a file 42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-save log/etag%TESTNUMBER 56 <file name="log/etag%TESTNUMBER">
|
D | test1566 | 6 --etag-compare 32 --etag-compare that gets a 304 back shouldn't overwrite the file 35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o log/output%TESTNUMBER --etag-compare log/etag%TESTNUMBER 37 <file name="log/etag%TESTNUMBER">
|
D | test347 | 39 --etag-save with blank incoming header 42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-save log/etag%TESTNUMBER 56 <file name="log/etag%TESTNUMBER">
|
D | test341 | 39 Try to open a non existing file with --etag-compare should return an error 42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare log/etag%TESTNUMBER
|
/third_party/glib/gio/ |
D | gio-tool-save.c | 39 static char *etag = NULL; variable 57 …{ "etag", 'e', 0, G_OPTION_ARG_STRING, &etag, N_("The etag of the file being overwritten"), N_("ET… 85 out = (GOutputStream *)g_file_replace (file, etag, backup, flags, NULL, &error); in save() 132 char *etag; in save() local 133 etag = g_file_output_stream_get_etag (G_FILE_OUTPUT_STREAM (out)); in save() 135 if (etag) in save() 136 g_print ("Etag: %s\n", etag); in save() 140 g_free (etag); in save()
|
D | glocalfileoutputstream.c | 76 char *etag; member 151 g_free (file->priv->etag); in g_local_file_output_stream_finalize() 345 file->priv->etag = _g_local_file_info_create_etag (&final_stat); in _g_local_file_output_stream_really_close() 439 file->priv->etag = _g_local_file_info_create_etag (&final_stat); in _g_local_file_output_stream_really_close() 491 return g_strdup (file->priv->etag); in g_local_file_output_stream_get_etag() 843 const char *etag, in handle_overwrite_open() argument 976 if (etag != NULL) in handle_overwrite_open() 979 if (strcmp (etag, current_etag) != 0) in handle_overwrite_open() 1226 const char *etag, in _g_local_file_output_stream_replace() argument 1259 fd = handle_overwrite_open (filename, readable, etag, in _g_local_file_output_stream_replace()
|
D | gfile.c | 224 const char *etag, 276 const char *etag, 1854 const char *etag, in g_file_replace() argument 1878 if (etag && *etag == 0) in g_file_replace() 1879 etag = NULL; in g_file_replace() 1881 return (* iface->replace) (file, etag, make_backup, flags, cancellable, error); in g_file_replace() 2030 const char *etag, in g_file_replace_readwrite() argument 2053 return (* iface->replace_readwrite) (file, etag, make_backup, flags, cancellable, error); in g_file_replace_readwrite() 2291 const char *etag, in g_file_replace_async() argument 2305 etag, in g_file_replace_async() [all …]
|
D | gfileoutputstream.c | 281 char *etag; in g_file_output_stream_get_etag() local 293 etag = NULL; in g_file_output_stream_get_etag() 297 etag = class->get_etag (stream); in g_file_output_stream_get_etag() 299 return etag; in g_file_output_stream_get_etag()
|
D | gfile.h | 340 const char *etag, 346 const char *etag, 502 const char *etag, 508 const char *etag, 686 const char *etag, 715 const char *etag, 758 const char *etag, 765 const char *etag, 1242 const char *etag, 1252 const char *etag, [all …]
|
D | gfileiostream.c | 289 char *etag; in g_file_io_stream_get_etag() local 301 etag = NULL; in g_file_io_stream_get_etag() 305 etag = class->get_etag (stream); in g_file_io_stream_get_etag() 307 return etag; in g_file_io_stream_get_etag()
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/node4/ |
D | index.js | 460 if (this._resHeaders.etag) { 461 …'if-none-match'] ? `${headers['if-none-match']}, ${this._resHeaders.etag}` : this._resHeaders.etag; 473 var etags = headers['if-none-match'].split(/,/).filter(function (etag) { argument 511 } else if (response.headers.etag && !/^\s*W\//.test(response.headers.etag)) { 515 …matches = this._resHeaders.etag && this._resHeaders.etag.replace(/^\s*W\//, '') === response.heade… 516 } else if (this._resHeaders.etag && response.headers.etag) { 520 …matches = this._resHeaders.etag.replace(/^\s*W\//, '') === response.headers.etag.replace(/^\s*W\//… 528 …if (!this._resHeaders.etag && !this._resHeaders['last-modified'] && !response.headers.etag && !res…
|
/third_party/libcoap/examples/ |
D | coap-rd.c | 69 unsigned char etag[8]; /**< ETag for current description */ member 135 coap_add_option(response, COAP_OPTION_ETAG, rd->etag_len, rd->etag); in hnd_get_resource() 151 coap_opt_t *token, *etag; in hnd_put_resource() 164 etag = coap_check_option(request, COAP_OPTION_ETAG, &opt_iter); in hnd_put_resource() 165 if (!etag || (COAP_OPT_LENGTH(etag) != rd->etag_len) in hnd_put_resource() 166 || memcmp(COAP_OPT_VALUE(etag), rd->etag, rd->etag_len) != 0) { in hnd_put_resource() 185 if (etag) { in hnd_put_resource() 186 rd->etag_len = min(COAP_OPT_LENGTH(etag), sizeof(rd->etag)); in hnd_put_resource() 187 memcpy(rd->etag, COAP_OPT_VALUE(etag), rd->etag_len); in hnd_put_resource() 372 coap_opt_t *etag; in make_rd() local [all …]
|
/third_party/curl/tests/ |
D | convsrctest.pl | 220 elsif(my($etag) = /^\s*<\/(\w+)/) { 222 die "$myname: mismatched </$etag>\n" 223 unless $tag eq $etag;
|
/third_party/libcoap/src/ |
D | block.c | 151 coap_key_t etag; in coap_add_data_blocked_response() local 175 memset(etag, 0, sizeof(etag)); in coap_add_data_blocked_response() 176 coap_hash(data, length, etag); in coap_add_data_blocked_response() 177 coap_add_option(response, COAP_OPTION_ETAG, sizeof(etag), etag); in coap_add_data_blocked_response() 338 uint64_t etag, in coap_add_data_large_internal() argument 519 lg_xmit->b.b2.etag = etag; in coap_add_data_large_internal() 534 if (etag == 0) { in coap_add_data_large_internal() 535 if (++session->context->etag == 0) in coap_add_data_large_internal() 536 ++session->context->etag; in coap_add_data_large_internal() 537 etag = session->context->etag; in coap_add_data_large_internal() [all …]
|
/third_party/libsoup/tests/ |
D | cache-test.c | 13 const char *last_modified, *etag; in server_callback() local 46 etag = soup_message_headers_get_one (msg->request_headers, in server_callback() 48 if (etag) { in server_callback() 51 etag); in server_callback() 75 if (header && etag) { in server_callback() 76 if (!strcmp (header, etag)) in server_callback() 96 if (etag) in server_callback() 97 g_checksum_update (sum, (guchar *)etag, strlen (etag)); in server_callback()
|
/third_party/libwebsockets/READMEs/ |
D | README.unix-domain-reverse-proxy.md | 57 etag|Information on any etag the client has cached for this URI 58 if-modified-since|Information on the freshness of any etag the client has cached for this URI 66 - return 301 etc to say the return path client's etag is still valid 77 etag|The canonical etag for the content at this URI
|
/third_party/libcoap/include/coap3/ |
D | coap_block_internal.h | 70 uint64_t etag; /**< ETag value */ member 106 uint8_t etag[8]; /**< ETag for block checking */ member 219 uint64_t etag,
|
/third_party/curl/docs/cmdline-opts/ |
D | etag-compare.d | 1 Long: etag-compare 16 Use the option --etag-save to first save the ETag from a response, and
|
D | etag-save.d | 1 Long: etag-save
|
/third_party/node/test/parallel/ |
D | test-http-incoming-matchKnownFields.js | 42 checkDest('Etag', { etag: undefined }); property 43 checkDest('etag', { etag: 'test' }, 'value'); property
|
/third_party/grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/ |
D | fe740f8c4ffd07f79456c8cee24ef556ee348f55 | 11 �etagth"bad-client grpc-c/0.12.0.0 (linux)?�…
|