Home
last modified time | relevance | path

Searched refs:responses (Results 1 - 25 of 37) sorted by relevance

12

/third_party/node/test/sequential/
H A Dtest-http-econnrefused.js67 const responses = [];
71 responses.push(result);
72 console.error(`afterPing. responses.length = ${responses.length}`);
75 switch (responses.length) {
77 assert.match(responses[0], ECONNREFUSED_RE);
78 assert.match(responses[1], ECONNREFUSED_RE);
83 assert.match(responses[2], successRE);
84 assert.match(responses[3], successRE);
89 assert.match(responses[
[all...]
/third_party/node/test/parallel/
H A Dtest-http-same-map.js14 onrequest.responses.push(res);
17 onrequest.responses = [];
35 onresponse.responses.push(res);
38 onresponse.responses = [];
53 allSame(onrequest.responses);
55 allSame(onresponse.responses);
H A Dtest-http-1.0-keep-alive.js41 responses: [{
60 responses: [{
78 responses: [{
97 responses: [{
119 if (current + 1 === test.responses.length) this.close();
120 const ctx = test.responses[current];
H A Dtest-domain-http-server.js71 let responses = 0;
92 responses++;
93 debug(`requests=${requests} responses=${responses}`);
94 if (responses === requests) {
H A Dtest-https-max-headers-count.js17 let responses = 0;
52 const max = maxAndExpected[responses][0];
53 const expected = maxAndExpected[responses][1];
61 if (++responses < maxAndExpected.length) {
H A Dtest-https-agent.js44 let responses = 0;
60 if (++responses === N * M) server.close();
71 assert.strictEqual(responses, N * M);
H A Dtest-http2-window-size.js61 const responses = [];
63 responses.push(data);
66 const actualBuffer = Buffer.concat(responses);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dgas_server.c49 struct dl_list responses; /* struct gas_server_response::list */ member
155 dl_list_add(&gas->responses, &response->list); in gas_server_send_resp()
340 dl_list_for_each(response, &gas->responses, struct gas_server_response, in gas_server_rx_comeback_req()
458 dl_list_for_each(response, &gas->responses, struct gas_server_response, in gas_server_tx_status()
476 dl_list_for_each(tmp, &gas->responses, struct gas_server_response, in gas_server_set_resp()
496 dl_list_for_each(tmp, &gas->responses, struct gas_server_response, in gas_server_response_sent()
521 dl_list_init(&gas->responses); in gas_server_init()
540 dl_list_for_each_safe(response, tmp_r, &gas->responses, in gas_server_deinit()
/third_party/python/Lib/test/
H A Dtest_urllib2_localnet.py401 def GetRequestHandler(responses):
425 response_code, headers, body = responses.pop(0)
484 def start_server(self, responses=None):
485 if responses is None:
486 responses = [(200, [], b"we don't care")]
487 handler = GetRequestHandler(responses)
497 def start_https_server(self, responses=None, **kwargs):
501 if responses is None:
502 responses = [(200, [], b"we care a bit")]
503 handler = GetRequestHandler(responses)
[all...]
/third_party/node/deps/undici/src/lib/cache/
H A Dcache.js88 const responses = []
94 responses.push(requestResponse[1])
102 responses.push(requestResponse[1])
107 // We don't implement CORs so we don't need to loop over the responses, yay!
113 for (const response of responses) {
255 const responses = await p
264 for (const response of responses) {
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dgas_server.c46 struct dl_list responses; /* struct gas_server_response::list */ member
150 dl_list_add(&gas->responses, &response->list); in gas_server_send_resp()
294 dl_list_for_each(response, &gas->responses, struct gas_server_response, in gas_server_rx_comeback_req()
405 dl_list_for_each(response, &gas->responses, struct gas_server_response, in gas_server_tx_status()
432 dl_list_init(&gas->responses); in gas_server_init()
451 dl_list_for_each_safe(response, tmp_r, &gas->responses, in gas_server_deinit()
/third_party/python/Lib/idlelib/
H A Drpc.py140 self.responses = {}
309 # this thread does all reading of requests or responses
318 while myseq not in self.responses:
320 response = self.responses[myseq]
323 del self.responses[myseq]
401 and some may be responses for other threads.
416 sequence number is received, and will save other responses in
417 self.responses and notify the owning thread.
465 self.responses[seq] = resq
477 self.responses[ke
[all...]
/third_party/node/test/async-hooks/
H A Dtest-http-agent-handle-reuse-parallel.js18 let responses = 0;
39 if (++responses === 2) {
/third_party/node/deps/openssl/openssl/crypto/ocsp/
H A Docsp_cl.c156 /* Return number of OCSP_SINGLERESP responses present in a basic response */
162 return sk_OCSP_SINGLERESP_num(bs->tbsResponseData.responses); in OCSP_resp_count()
170 return sk_OCSP_SINGLERESP_value(bs->tbsResponseData.responses, idx); in OCSP_resp_get0()
234 sresp = bs->tbsResponseData.responses; in OCSP_resp_find()
292 /* Maybe check for multiple responses and give an error? */ in OCSP_resp_find_status()
307 * accepting very old responses without a nextUpdate field an optional maxage
H A Docsp_prn.c187 for (i = 0; i < sk_OCSP_SINGLERESP_num(rd->responses); i++) { in OCSP_RESPONSE_print()
188 if (!sk_OCSP_SINGLERESP_value(rd->responses, i)) in OCSP_RESPONSE_print()
190 single = sk_OCSP_SINGLERESP_value(rd->responses, i); in OCSP_RESPONSE_print()
H A Docsp_srv.c20 * Utility functions related to sending OCSP responses and extracting
96 if (rsp->tbsResponseData.responses == NULL in OCSP_basic_add1_status()
97 && (rsp->tbsResponseData.responses in OCSP_basic_add1_status()
148 if (!(sk_OCSP_SINGLERESP_push(rsp->tbsResponseData.responses, single))) in OCSP_basic_add1_status()
/third_party/openssl/crypto/ocsp/
H A Docsp_cl.c156 /* Return number of OCSP_SINGLERESP responses present in a basic response */
162 return sk_OCSP_SINGLERESP_num(bs->tbsResponseData.responses); in OCSP_resp_count()
170 return sk_OCSP_SINGLERESP_value(bs->tbsResponseData.responses, idx); in OCSP_resp_get0()
234 sresp = bs->tbsResponseData.responses; in OCSP_resp_find()
292 /* Maybe check for multiple responses and give an error? */ in OCSP_resp_find_status()
307 * accepting very old responses without a nextUpdate field an optional maxage
H A Docsp_srv.c20 * Utility functions related to sending OCSP responses and extracting
96 if (rsp->tbsResponseData.responses == NULL in OCSP_basic_add1_status()
97 && (rsp->tbsResponseData.responses in OCSP_basic_add1_status()
148 if (!(sk_OCSP_SINGLERESP_push(rsp->tbsResponseData.responses, single))) in OCSP_basic_add1_status()
H A Docsp_prn.c187 for (i = 0; i < sk_OCSP_SINGLERESP_num(rd->responses); i++) { in OCSP_RESPONSE_print()
188 if (!sk_OCSP_SINGLERESP_value(rd->responses, i)) in OCSP_RESPONSE_print()
190 single = sk_OCSP_SINGLERESP_value(rd->responses, i); in OCSP_RESPONSE_print()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_openssl_ocsp.c144 * responses SEQUENCE OF SingleResponse,
151 STACK_OF(SingleResponse) *responses;
205 ASN1_SEQUENCE_OF(ResponseData, responses, SingleResponse),
698 num_resp = sk_SingleResponse_num(rd->responses); in check_ocsp_resp()
705 cmp_sresp = sk_SingleResponse_value(rd->responses, 0); in check_ocsp_resp()
710 sresp = sk_SingleResponse_value(rd->responses, j); in check_ocsp_resp()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dtls_openssl_ocsp.c144 * responses SEQUENCE OF SingleResponse,
151 STACK_OF(SingleResponse) *responses;
205 ASN1_SEQUENCE_OF(ResponseData, responses, SingleResponse),
698 num_resp = sk_SingleResponse_num(rd->responses); in check_ocsp_resp()
705 cmp_sresp = sk_SingleResponse_value(rd->responses, 0); in check_ocsp_resp()
710 sresp = sk_SingleResponse_value(rd->responses, j); in check_ocsp_resp()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_client_ocsp.c359 const u8 *resp_data, *sign_value, *key_hash = NULL, *responses; in tls_process_basic_ocsp_response() local
483 * responses SEQUENCE OF SingleResponse, in tls_process_basic_ocsp_response()
578 /* responses SEQUENCE OF SingleResponse */ in tls_process_basic_ocsp_response()
583 "OCSP: Expected SEQUENCE (responses) - found class %d tag 0x%x", in tls_process_basic_ocsp_response()
587 responses = hdr.payload; in tls_process_basic_ocsp_response()
589 wpa_hexdump(MSG_MSGDUMP, "OCSP: responses", responses, responses_len); in tls_process_basic_ocsp_response()
660 responses, responses_len); in tls_process_basic_ocsp_response()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_client_ocsp.c350 const u8 *resp_data, *sign_value, *key_hash = NULL, *responses; in tls_process_basic_ocsp_response() local
463 * responses SEQUENCE OF SingleResponse, in tls_process_basic_ocsp_response()
549 /* responses SEQUENCE OF SingleResponse */ in tls_process_basic_ocsp_response()
553 "OCSP: Expected SEQUENCE (responses)"); in tls_process_basic_ocsp_response()
556 responses = hdr.payload; in tls_process_basic_ocsp_response()
558 wpa_hexdump(MSG_MSGDUMP, "OCSP: responses", responses, responses_len); in tls_process_basic_ocsp_response()
629 responses, responses_len); in tls_process_basic_ocsp_response()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_client.h87 * responses - radiusAccClientResponses
89 u32 responses; member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_client.h87 * responses - radiusAccClientResponses
89 u32 responses; member

Completed in 15 milliseconds

12