HomeSort by relevance Sort by last modified time
    Searched refs:resp (Results 1 - 25 of 457) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 7 >>> 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)
149 resp = self.shortcmd('authinfo user '+user)
150 if resp[:3] == '381':
152 raise NNTPReplyError(resp)
154 resp = self.shortcmd(
156 if resp[:3] != '281'
626 resp = s.quit() variable in class:NNTP
    [all...]
ftplib.py 210 resp = self.getmultiline()
211 if self.debugging: print '*resp*', self.sanitize(resp)
212 self.lastresp = resp[:3]
213 c = resp[:1]
215 return resp
217 raise error_temp, resp
219 raise error_perm, resp
220 raise error_proto, resp
224 resp = self.getresp(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 7 >>> 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)
149 resp = self.shortcmd('authinfo user '+user)
150 if resp[:3] == '381':
152 raise NNTPReplyError(resp)
154 resp = self.shortcmd(
156 if resp[:3] != '281'
626 resp = s.quit() variable in class:NNTP
    [all...]
ftplib.py 210 resp = self.getmultiline()
211 if self.debugging: print '*resp*', self.sanitize(resp)
212 self.lastresp = resp[:3]
213 c = resp[:1]
215 return resp
217 raise error_temp, resp
219 raise error_perm, resp
220 raise error_proto, resp
224 resp = self.getresp(
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant_sd.c 183 static void wpas_sd_add_empty(struct wpabuf *resp, u8 srv_proto,
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,
205 wpas_sd_add_empty(resp, srv_proto, srv_trans_id,
210 static void wpas_sd_add_bad_request(struct wpabuf *resp, u8 srv_proto
697 struct wpabuf *resp; local
    [all...]
  /external/speex/libspeex/
cb_search_bfin.h 37 void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
74 : "m" (subvect_size), "m" (shape_cb), "m" (r), "m" (resp), "m" (E)
82 resp += subvect_size;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_httplib.py 154 resp = httplib.HTTPResponse(sock)
155 resp.begin()
156 self.assertEqual(resp.read(), 'Text')
157 self.assertTrue(resp.isclosed())
161 resp = httplib.HTTPResponse(sock)
162 self.assertRaises(httplib.BadStatusLine, resp.begin)
173 resp = httplib.HTTPResponse(sock)
174 resp.begin()
175 self.assertEqual(resp.read(2), 'Te')
176 self.assertFalse(resp.isclosed()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_httplib.py 154 resp = httplib.HTTPResponse(sock)
155 resp.begin()
156 self.assertEqual(resp.read(), 'Text')
157 self.assertTrue(resp.isclosed())
161 resp = httplib.HTTPResponse(sock)
162 self.assertRaises(httplib.BadStatusLine, resp.begin)
173 resp = httplib.HTTPResponse(sock)
174 resp.begin()
175 self.assertEqual(resp.read(2), 'Te')
176 self.assertFalse(resp.isclosed()
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_ni.h 44 GpsUserResponseType resp; member in struct:__anon26199
  /external/wpa_supplicant_8/src/eap_peer/
eap_gtc.c 49 struct wpabuf *resp; local
72 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC,
74 return resp;
104 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC, plen,
106 if (resp == NULL)
109 wpabuf_put_data(resp, "RESPONSE=", 9);
110 wpabuf_put_data(resp, identity, identity_len);
111 wpabuf_put_u8(resp, '\0');
113 wpabuf_put_data(resp, password, password_len);
115 wpabuf_head_u8(resp) + sizeof(struct eap_hdr)
    [all...]
eap_md5.c 33 struct wpabuf *resp; local
76 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MD5, 1 + CHAP_MD5_LEN,
78 if (resp == NULL)
85 wpabuf_put_u8(resp, CHAP_MD5_LEN);
87 id = eap_get_id(resp);
88 rpos = wpabuf_put(resp, CHAP_MD5_LEN);
93 wpabuf_free(resp);
98 return resp;
eap_otp.c 32 struct wpabuf *resp; local
66 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_OTP, password_len,
68 if (resp == NULL)
70 wpabuf_put_data(resp, password, password_len);
79 return resp;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponseTest.java 19 HttpResponse resp = local
23 assertThat(resp.getFirstHeader("None"), nullValue());
27 assertThat(resp.getFirstHeader(l).getValue(), equalTo("http://bar.com"));
33 HttpResponse resp = local
38 assertThat(resp.getLastHeader("None"), nullValue());
41 assertThat(resp.getLastHeader(l).getValue(), equalTo("http://zombo.com"));
47 HttpResponse resp = local
51 assertThat(resp.containsHeader("X-Zombo-Com"), is(true));
52 assertThat(resp.containsHeader("Location"), is(false));
57 HttpResponse resp local
72 HttpResponse resp = local
90 HttpResponse resp = local
    [all...]
  /external/openssh/openbsd-compat/
getrrsetbyname.c 387 struct dns_response *resp; local
391 resp = calloc(1, sizeof(*resp));
392 if (resp == NULL)
399 memcpy(&resp->header, cp, HFIXEDSZ);
403 resp->header.qdcount = ntohs(resp->header.qdcount);
404 resp->header.ancount = ntohs(resp->header.ancount);
405 resp->header.nscount = ntohs(resp->header.nscount)
    [all...]
getrrsetbyname.c.orig 385 struct dns_response *resp;
389 resp = calloc(1, sizeof(*resp));
390 if (resp == NULL)
397 memcpy(&resp->header, cp, HFIXEDSZ);
401 resp->header.qdcount = ntohs(resp->header.qdcount);
402 resp->header.ancount = ntohs(resp->header.ancount);
403 resp->header.nscount = ntohs(resp->header.nscount)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
ConcatServlet.java 89 protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
94 resp.sendError(HttpServletResponse.SC_NO_CONTENT);
109 resp.sendError(HttpServletResponse.SC_UNSUPPORTED_MEDIA_TYPE);
116 resp.setContentType(type);
122 dispatcher.include(req,resp);
  /external/wpa_supplicant_8/src/wps/
http_server.h 16 void http_request_send(struct http_request *req, struct wpabuf *resp);
18 struct wpabuf *resp);
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wps-ap-cli 23 read resp
24 case "$resp" in
  /external/wpa_supplicant_8/src/utils/
browser-system.c 33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(1);
49 if (resp == NULL) {
61 http_request_send_and_deinit(req, resp);
browser-wpadebug.c 33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(100);
49 if (resp == NULL) {
55 wpabuf_put_str(resp, "User input completed");
62 http_request_send_and_deinit(req, resp);
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_ni.h 46 GpsUserResponseType resp; member in struct:__anon26085
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_ni.h 46 GpsUserResponseType resp; member in struct:__anon26171
  /hardware/qcom/gps/msm8974/loc_api/libloc_api_50001/
loc_eng_ni.h 46 GpsUserResponseType resp; member in struct:__anon26291
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
dec.py 31 it like normal, e.g., ``resp = myfunc(req)``. (You can also wrap
130 resp = self.call_func(req, *args, **self.kwargs)
132 resp = exc
133 if resp is None:
135 resp = req.response
136 if isinstance(resp, text_type):
137 resp = bytes_(resp, req.charset)
138 if isinstance(resp, bytes):
139 body = resp
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pax.c 187 struct eap_pax_hdr *resp; local
193 if (pos == NULL || len < sizeof(*resp)) {
199 resp = (struct eap_pax_hdr *) pos;
204 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
205 resp->public_key_id);
207 (u8 *) (resp + 1), len - sizeof(*resp) - EAP_PAX_ICV_LEN)
287 struct eap_pax_hdr *resp; local
460 struct eap_pax_hdr *resp; local
    [all...]

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>