/external/wpa_supplicant_8/wpa_supplicant/ |
gas_query.c | 50 struct wpabuf *resp; member in struct:gas_query_pending 55 const struct wpabuf *resp, u16 status_code); 149 wpabuf_free(query->resp); 171 query->adv_proto, query->resp, query->status_code); 211 if (wpabuf_resize(&query->resp, len) < 0) { 215 wpabuf_put_data(query->resp, data, len); 414 const u8 *adv_proto, const u8 *resp, 435 if (gas_query_append(query, resp, len) < 0) { 446 const u8 *adv_proto, const u8 *resp, 492 if (gas_query_append(query, resp, len) < 0) [all...] |
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/ |
SimpleWebServer.java | 577 protected Response addCORSHeaders(Map<String, String> queryHeaders, Response resp, String cors) { 578 resp.addHeader("Access-Control-Allow-Origin", cors); 579 resp.addHeader("Access-Control-Allow-Headers", calculateAllowHeaders(queryHeaders)); 580 resp.addHeader("Access-Control-Allow-Credentials", "true"); 581 resp.addHeader("Access-Control-Allow-Methods", ALLOWED_METHODS); 582 resp.addHeader("Access-Control-Max-Age", "" + MAX_AGE); 584 return resp;
|
/external/wpa_supplicant_8/src/crypto/ |
tls_openssl_ocsp.c | 491 OCSPResponse *resp; local 527 resp = d2i_OCSPResponse(NULL, &resp_data, resp_len); 528 if (!resp) { 533 status = ASN1_ENUMERATED_get(resp->responseStatus); 540 bytes = resp->responseBytes; 558 OCSPResponse_free(resp); 841 OCSPResponse_free(resp);
|
tls_gnutls.c | 700 gnutls_datum_t *resp) 721 resp->data = gnutls_malloc(len); 722 if (!resp->data) { 723 os_free(resp); 727 os_memcpy(resp->data, cached, len); 728 resp->size = len; 995 gnutls_ocsp_resp_t resp; local 1031 if (gnutls_ocsp_resp_init(&resp) != GNUTLS_E_SUCCESS) 1034 res = gnutls_ocsp_resp_import(resp, &response); 1039 gnutls_ocsp_resp_deinit(resp); [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_tls_common.c | 805 struct wpabuf *resp; local 807 resp = eap_tls_msg_alloc(eap_type, 1, EAP_CODE_RESPONSE, id); 808 if (resp == NULL) 812 wpabuf_put_u8(resp, peap_version); /* Flags */ 813 return resp; [all...] |
eap_tls_common.h | 136 struct eap_hdr *hdr, struct wpabuf **resp);
|
/device/google/contexthub/firmware/os/core/ |
hostIntf.c | 405 static void hostIntfTxSendAck(uint32_t resp) 409 if (resp == NANOHUB_FAST_UNHANDLED_ACK) { 412 } else if (resp == NANOHUB_FAST_DONT_ACK) { 415 hostIntfTxPacket(mRxCmd->reason, resp, mTxRetrans.seq, hostIntfTxPayloadDone); 434 uint32_t resp = NANOHUB_FAST_UNHANDLED_ACK; local 447 resp = mRxCmd->fastHandler(rxPayload, rx_len, txPayload, mRxTimestamp); 449 hostIntfTxSendAck(resp); 1114 struct NanohubHalSysMgmtTx *resp; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
imaplib.py | 916 resp = self._get_line()
920 if self._match(self.tagre, resp):
923 raise self.abort('unexpected tagged response: %s' % resp)
933 if not self._match(Untagged_response, resp):
934 if self._match(Untagged_status, resp):
940 if self._match(Continuation, resp):
944 raise self.abort("unexpected response: '%s'" % resp)
[all...] |
/external/autotest/server/site_tests/firmware_Cr50RMAOpen/ |
firmware_Cr50RMAOpen.py | 140 resp = 'rma_auth(.*generated challenge:)?(.*)>' 142 resp = self.LIMIT_CLI if get_challenge else self.MISMATCH_CLI 144 result = self.cr50.send_command_get_output(cmd, [resp])
|
/external/python/cpython2/Lib/ |
imaplib.py | 932 resp = self._get_line() 936 if self._match(self.tagre, resp): 939 raise self.abort('unexpected tagged response: %s' % resp) 949 if not self._match(Untagged_response, resp): 950 if self._match(Untagged_status, resp): 956 if self._match(Continuation, resp): 960 raise self.abort("unexpected response: '%s'" % resp) [all...] |
/external/python/cpython3/Lib/ |
imaplib.py | [all...] |
/external/tensorflow/tensorflow/core/distributed_runtime/ |
collective_rma_distributed_test.cc | 149 GetStatusResponse resp; variable 150 Status status = wi->GetStatus(&req, &resp); 155 for (const auto& it : resp.device_attributes()) {
|
/external/curl/lib/ |
pop3.c | 106 static CURLcode pop3_continue_auth(struct connectdata *conn, const char *resp); 197 int *resp) 203 *resp = '-'; 213 *resp = '+'; 216 *resp = '*'; 223 *resp = '+'; 230 *resp = '*'; 490 const char *resp) 494 return Curl_pp_sendf(&pop3c->pp, "%s", resp); [all...] |
/external/python/cpython3/Lib/test/ |
test_poplib.py | 252 def assertOK(self, resp): 253 self.assertTrue(resp.startswith(b"+OK")) 352 resp = self.client.quit() 353 self.assertTrue(resp) 365 resp = self.client.stls() 366 self.assertEqual(resp, expected) 376 resp = self.client.stls(context=ctx) 378 resp = self.client.stls(context=ctx) 379 self.assertEqual(resp, expected)
|
/external/python/google-api-python-client/samples/analytics/ |
core_reporting_v3_reference.py | 95 (error.resp.status, error._get_reason())))
|
/external/python/google-api-python-client/samples/api-python-client-doc/ |
main.py | 55 resp, content = http.request(uri)
|
/external/syzkaller/pkg/symbolizer/ |
symbolizer_test.go | 18 resp string 131 outputw.Write([]byte(addr.resp))
|
/external/tensorflow/tensorflow/python/distribute/cluster_resolver/ |
tpu_cluster_resolver.py | 100 resp = urlopen(req) 101 return compat.as_bytes(resp.read()) 172 resp = urllib.request.urlopen(req, timeout=1) 173 info = resp.info()
|
/external/u-boot/arch/x86/include/asm/arch-broadwell/ |
pch.h | 150 int pch_iobp_exec(u32 addr, u16 op_dcode, u8 route_id, u32 *data, u8 *resp);
|
/external/wpa_supplicant_8/src/p2p/ |
p2p_group.c | 648 struct wpabuf *resp; local 667 resp = wpabuf_alloc(20 + extra); 668 if (resp == NULL) 673 wpabuf_put_buf(resp, group->wfd_ie); 678 wpabuf_put_buf(resp, 681 rlen = p2p_buf_add_ie_hdr(resp); 683 p2p_buf_add_status(resp, status); 684 p2p_buf_update_ie_hdr(resp, rlen); 686 return resp;
|
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
scsimain.c | 881 int paramp, void *resp, int mx_resp_len, int noisy) 906 io_hdr.dxferp = resp; 1050 static void show_buffer_under_overrun_page(unsigned char *resp, int len) 1059 ucp = &resp[0] + 4; 1118 static void show_error_counter_page(unsigned char *resp, int len) 1125 switch (resp[0]) { 1140 resp[0]); 1144 ucp = &resp[0] + 4; 1192 static void show_non_medium_error_page(unsigned char *resp, int len) 1201 ucp = &resp[0] + 4 [all...] |
/external/python/google-api-python-client/tests/ |
test_http.py | 97 resp, content = request_orig(uri, method, body, headers, 100 return resp, content 196 resp, content = http.request("http://example.com") 206 resp, content = http.request("http://example.com") [all...] |
/external/grpc-grpc/test/cpp/qps/ |
qps_worker.cc | 133 CoreResponse* resp) override { 134 resp->set_cores(gpr_cpu_num_cores());
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
ServerCallImpl.java | 138 InputStream resp = method.streamResponse(message); local 139 stream.writeMessage(resp);
|
/external/libffi/src/m88k/ |
ffi.c | 351 ffi_closure_OBSD_inner (ffi_closure *closure, void *resp, unsigned int *regp, 362 (closure->fun) (cif, resp, arg_area, closure->user_data);
|