Searched refs:resp (Results 1 - 25 of 670) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
H A DOCSPResp.java26 private OCSPResponse resp; field in class:OCSPResp
29 OCSPResponse resp)
31 this.resp = resp;
35 byte[] resp)
38 this(new ByteArrayInputStream(resp));
42 InputStream resp)
45 this(new ASN1InputStream(resp));
54 this.resp = OCSPResponse.getInstance(aIn.readObject());
69 if (resp
28 OCSPResp( OCSPResponse resp) argument
34 OCSPResp( byte[] resp) argument
41 OCSPResp( InputStream resp) argument
[all...]
H A DSingleResp.java16 private SingleResponse resp; field in class:SingleResp
20 SingleResponse resp)
22 this.resp = resp;
23 this.extensions = resp.getSingleExtensions();
28 return new CertificateID(resp.getCertID());
38 CertStatus s = resp.getCertStatus();
54 return OCSPUtils.extractDate(resp.getThisUpdate());
65 if (resp.getNextUpdate() == null)
70 return OCSPUtils.extractDate(resp
19 SingleResp( SingleResponse resp) argument
[all...]
H A DBasicOCSPResp.java36 private BasicOCSPResponse resp; field in class:BasicOCSPResp
41 BasicOCSPResponse resp)
43 this.resp = resp;
44 this.data = resp.getTbsResponseData();
45 this.extensions = Extensions.getInstance(resp.getTbsResponseData().getResponseExtensions());
56 return resp.getTbsResponseData().getEncoded(ASN1Encoding.DER);
71 return resp.getSignatureAlgorithm();
135 return resp.getSignatureAlgorithm().getAlgorithm();
140 return resp
40 BasicOCSPResp( BasicOCSPResponse resp) argument
[all...]
/external/python/cpython2/Lib/
H A Dnntplib.py7 >>> resp, count, first, last, name = s.group('comp.lang.python')
10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
11 >>> resp = s.quit()
14 Here 'resp' is the server response line.
19 >>> resp = s.post(f)
156 resp = self.shortcmd('authinfo user '+user)
157 if resp[:3] == '381':
159 raise NNTPReplyError(resp)
161 resp = self.shortcmd(
163 if resp[
635 resp = s.quit() variable in class:NNTP
[all...]
/external/libbrillo/brillo/dbus/
H A Ddbus_method_invoker.cc11 dbus::ErrorResponse* resp) {
14 dbus::MessageReader reader(resp);
17 AddDBusError(&error, resp->GetErrorName(), error_message);
10 TranslateErrorResponse(const AsyncErrorCallback& callback, dbus::ErrorResponse* resp) argument
/external/tensorflow/tensorflow/python/data/util/
H A Dconvert_test.py30 resp = convert.optional_param_to_tensor("foo", 3)
32 self.assertEqual(3, sess.run(resp))
35 resp = convert.optional_param_to_tensor("foo", None)
37 self.assertEqual(0, sess.run(resp))
40 resp = convert.optional_param_to_tensor("bar", None, "default",
43 self.assertEqual(compat.as_bytes("default"), sess.run(resp))
46 resp = convert.optional_param_to_tensor("bar", "value", "default",
49 self.assertEqual(compat.as_bytes("value"), sess.run(resp))
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant_sd.c183 static void wpas_sd_add_empty(struct wpabuf *resp, u8 srv_proto, argument
188 if (wpabuf_tailroom(resp) < 5)
192 len_pos = wpabuf_put(resp, 2);
193 wpabuf_put_u8(resp, srv_proto);
194 wpabuf_put_u8(resp, srv_trans_id);
196 wpabuf_put_u8(resp, status);
198 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
202 static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto, argument
205 wpas_sd_add_empty(resp, srv_proto, srv_trans_id,
210 static void wpas_sd_add_bad_request(struct wpabuf *resp, u argument
217 wpas_sd_add_not_found(struct wpabuf *resp, u8 srv_proto, u8 srv_trans_id) argument
225 wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) argument
288 wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) argument
359 wpas_sd_all_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) argument
395 wpas_sd_req_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) argument
477 wpas_sd_req_wfd(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) argument
557 wpas_sd_req_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) argument
674 wpas_sd_all_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) argument
697 struct wpabuf *resp; local
1208 wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *query, struct wpabuf *resp) argument
[all...]
/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchRequestBasic/
H A Dbluetooth_SDP_ServiceSearchRequestBasic.py38 resp = self.tester.service_search_request(
40 if resp != [0]:
45 resp = self.tester.service_search_request(
47 if resp != []:
52 resp = self.tester.service_search_request(
56 if len(resp) != self.FAKE_SERVICES_CNT:
60 resp = self.tester.service_search_request(
63 if resp != self.ERROR_CODE_INVALID_PDU_SIZE:
67 resp = self.tester.service_search_request(
69 if resp !
[all...]
/external/volley/src/test/java/com/android/volley/toolbox/
H A DBaseHttpStackTest.java52 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
53 assertEquals(12345, resp.getStatusLine().getStatusCode());
54 assertEquals(0, resp.getAllHeaders().length);
55 assertNull(resp.getEntity());
74 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
75 assertEquals(12345, resp.getStatusLine().getStatusCode());
76 assertEquals(0, resp.getAllHeaders().length);
77 assertEquals(555L, resp.getEntity().getContentLength());
78 assertSame(mContent, resp.getEntity().getContent());
97 org.apache.http.HttpResponse resp
[all...]
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dmaster.h44 CreateSessionResponse* resp, MyClosure done);
47 ExtendSessionResponse* resp, MyClosure done);
50 PartialRunSetupResponse* resp, MyClosure done);
53 MutableRunStepResponseWrapper* resp, MyClosure done);
55 void CloseSession(const CloseSessionRequest* req, CloseSessionResponse* resp,
58 void ListDevices(const ListDevicesRequest* req, ListDevicesResponse* resp,
62 void Reset(const ResetRequest* req, ResetResponse* resp, MyClosure done);
/external/libffi/testsuite/libffi.call/
H A Dcls_double.c10 static void cls_ret_double_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(double *)resp = *(double *)args[0];
16 *(double *)resp);
H A Dcls_float.c10 static void cls_ret_float_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(float *)resp = *(float *)args[0];
16 *(float *)resp);
H A Dcls_schar.c12 static void cls_ret_schar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
15 *(ffi_arg*)resp = *(signed char *)args[0];
17 (int)*(ffi_arg *)(resp));
H A Dcls_sint.c10 static void cls_ret_sint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(signed int *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_sshort.c10 static void cls_ret_sshort_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(signed short *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_uchar.c10 static void cls_ret_uchar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(unsigned char *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_uint.c10 static void cls_ret_uint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg *)resp = *(unsigned int *)args[0];
16 (int)*(ffi_arg *)(resp));
H A Dcls_ushort.c10 static void cls_ret_ushort_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(unsigned short *)args[0];
16 (int)*(ffi_arg *)(resp));
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dcls_double.c10 static void cls_ret_double_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(double *)resp = *(double *)args[0];
16 *(double *)resp);
H A Dcls_float.c10 static void cls_ret_float_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(float *)resp = *(float *)args[0];
16 *(float *)resp);
H A Dcls_schar.c12 static void cls_ret_schar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
15 *(ffi_arg*)resp = *(signed char *)args[0];
17 (int)*(ffi_arg *)(resp));
H A Dcls_sint.c10 static void cls_ret_sint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(signed int *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_sshort.c10 static void cls_ret_sshort_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(signed short *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_uchar.c10 static void cls_ret_uchar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg*)resp = *(unsigned char *)args[0];
15 (int)*(ffi_arg *)(resp));
H A Dcls_uint.c10 static void cls_ret_uint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args, argument
13 *(ffi_arg *)resp = *(unsigned int *)args[0];
16 (int)*(ffi_arg *)(resp));

Completed in 459 milliseconds

1234567891011>>