Searched refs:resp (Results 26 - 50 of 357) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/
H A Dsocks.py225 resp = self.__recvall(4)
226 if resp[0:1] != chr(0x05).encode():
229 elif resp[1:2] != chr(0x00).encode():
232 if ord(resp[1:2])<=8:
233 raise Socks5Error((ord(resp[1:2]), _socks5errors[ord(resp[1:2])]))
237 elif resp[3:4] == chr(0x01).encode():
239 elif resp[3:4] == chr(0x03).encode():
240 resp = resp
[all...]
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
H A Dhttp.py550 % (retry_num, self._uri, resp.status))
552 resp, content = http.request(self._uri, headers=headers)
553 if resp.status < 500:
556 if resp.status in [200, 206]:
557 if 'content-location' in resp and resp['content-location'] != self._uri:
558 self._uri = resp['content-location']
562 if 'content-range' in resp:
563 content_range = resp['content-range']
566 elif 'content-length' in resp
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dmock_oauth2_decorator.py30 resp = method(request_handler, *args, **kwargs)
31 return resp
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dhttp_server.h16 void http_request_send(struct http_request *req, struct wpabuf *resp);
18 struct wpabuf *resp);
/external/wpa_supplicant_8/src/wps/
H A Dhttp_server.h16 void http_request_send(struct http_request *req, struct wpabuf *resp);
18 struct wpabuf *resp);
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwps-ap-cli23 read resp
24 case "$resp" in
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dhttp_server.h16 void http_request_send(struct http_request *req, struct wpabuf *resp);
18 struct wpabuf *resp);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudsearch2/
H A Dtest_layers.py43 resp = self.layer1.create_domain(self.domain_name)
45 resp = (resp['CreateDomainResponse']
50 self.assertTrue(resp.get('Created', False))
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser-system.c33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(1);
49 if (resp == NULL) {
61 http_request_send_and_deinit(req, resp);
H A Dbrowser-wpadebug.c33 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);
/external/wpa_supplicant_8/src/utils/
H A Dbrowser-system.c33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(1);
49 if (resp == NULL) {
61 http_request_send_and_deinit(req, resp);
H A Dbrowser-wpadebug.c33 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);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser-system.c33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(1);
49 if (resp == NULL) {
61 http_request_send_and_deinit(req, resp);
H A Dbrowser-wpadebug.c33 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);
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Ddec.py31 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/hostapd/src/eap_server/
H A Deap_server_pax.c187 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)
287 struct eap_pax_hdr *resp; local
460 struct eap_pax_hdr *resp; local
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_pax.c187 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)
287 struct eap_pax_hdr *resp; local
460 struct eap_pax_hdr *resp; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_pax.c187 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)
287 struct eap_pax_hdr *resp; local
460 struct eap_pax_hdr *resp; local
[all...]
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dboto_resumable_upload.py165 resp = self._QueryServiceState(conn, file_length)
166 if resp.status == 200:
174 if resp.status != 308:
183 resp.status, ResumableTransferDisposition.START_OVER)
185 range_spec = resp.getheader('range')
203 str(resp.getheaders()), ResumableTransferDisposition.START_OVER)
242 resp = conn.make_request(
245 body = resp.read()
248 if resp.status in [429, 500, 503]:
252 'Will wait/retry' % resp
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
H A Dresumable_upload_handler.py215 resp = self._query_server_state(conn, file_length)
216 if resp.status == 200:
224 if resp.status != 308:
233 resp.status, ResumableTransferDisposition.START_OVER)
235 range_spec = resp.getheader('range')
253 str(resp.getheaders()), ResumableTransferDisposition.START_OVER)
287 resp = conn.make_request(
290 body = resp.read()
293 if resp.status in [500, 503]:
297 'Will wait/retry' % resp
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
H A Dsocks.py264 resp = self.__recvall(4)
265 if resp[0:1] != chr(0x05).encode():
268 elif resp[1:2] != chr(0x00).encode():
271 if ord(resp[1:2])<=8:
272 raise Socks5Error((ord(resp[1:2]), _socks5errors[ord(resp[1:2])]))
276 elif resp[3:4] == chr(0x01).encode():
278 elif resp[3:4] == chr(0x03).encode():
279 resp = resp
[all...]
/external/selinux/policycoreutils/sepolicy/
H A Dselinux_client.py41 resp = dbus_proxy.customized() variable
42 print convert_customization(resp)
/external/v8/test/webkit/
H A Dgmail-re-re.js28 var I3=/^\s*(fwd|re|aw|antw|antwort|wg|sv|ang|odp|betreff|betr|transf|reenv\.|reenv|in|res|resp|resp\.|enc|\u8f6c\u53d1|\u56DE\u590D|\u041F\u0435\u0440\u0435\u0441\u043B|\u041E\u0442\u0432\u0435\u0442):\s*(.*)$/i;
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_sake.c149 struct wpabuf *resp; local
169 resp = eap_sake_build_msg(data, id, 2 + data->peerid_len,
171 if (resp == NULL)
175 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID,
180 return resp;
192 struct wpabuf *resp; local
249 resp = eap_sake_build_msg(data, id, rlen, EAP_SAKE_SUBTYPE_CHALLENGE);
250 if (resp == NULL)
254 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P,
259 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI
293 struct wpabuf *resp; local
365 struct wpabuf *resp; local
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_sake.c149 struct wpabuf *resp; local
169 resp = eap_sake_build_msg(data, id, 2 + data->peerid_len,
171 if (resp == NULL)
175 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID,
180 return resp;
192 struct wpabuf *resp; local
249 resp = eap_sake_build_msg(data, id, rlen, EAP_SAKE_SUBTYPE_CHALLENGE);
250 if (resp == NULL)
254 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P,
259 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI
293 struct wpabuf *resp; local
365 struct wpabuf *resp; local
[all...]

Completed in 585 milliseconds

1234567891011>>