HomeSort by relevance Sort by last modified time
    Searched refs:resp (Results 1 - 25 of 422) 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/chromium_org/chrome/test/pyautolib/chromeos/
power_strip.py 82 resp = tn.read_until('Username:', timeout=PowerStrip.TIMEOUT)
83 assert 'Username' in resp, 'Username not found in response. (%s)' % resp
86 resp = tn.read_until('Password:', timeout=PowerStrip.TIMEOUT)
87 assert 'Password' in resp, 'Password not found in response. (%s)' % resp
90 resp = tn.read_until('Switched CDU:', timeout=PowerStrip.TIMEOUT)
91 assert 'Switched CDU' in resp, 'Standard prompt not found in ' \
92 'response. (%s)' % resp
99 resp = tn.read_until('Switched CDU:', timeout=PowerStrip.TIMEOUT
    [all...]
  /external/qemu/hw/
goldfish_mmc.c 76 uint32_t resp[4]; member in struct:goldfish_mmc_state
94 QFIELD_INT32(resp[0]),
95 QFIELD_INT32(resp[1]),
96 QFIELD_INT32(resp[2]),
97 QFIELD_INT32(resp[3]),
223 s->resp[0] = 0;
224 s->resp[1] = 0;
225 s->resp[2] = 0;
226 s->resp[3] = 0;
244 s->resp[3] = 0x400E0032
    [all...]
  /external/qemu/android/protocol/
core-commands-impl.c 124 * resp - Response header.
130 _coreCmdImpl_respond(CoreCmdImpl* corecmd, UICmdRespHeader* resp, void* resp_data)
135 status = syncsocket_write(corecmd->sync_writer, resp,
139 if (status > 0 && resp_data != NULL && resp->resp_data_size != 0) {
141 resp->resp_data_size,
142 _coreCmdImpl_get_timeout(resp->resp_data_size));
149 resp->resp_data_size, errno_str);
197 UICmdRespHeader resp; local
198 resp.resp_data_size = 0;
199 resp.result = qemu_net_disable
206 UICmdRespHeader resp; local
250 UICmdRespHeader resp; local
294 UICmdRespHeader resp; local
313 UICmdRespHeader resp; local
    [all...]
core-commands-proxy.c 88 * resp - Upon success contains command response header.
95 _coreCmdProxy_get_response(UICmdRespHeader* resp, void** resp_data)
100 status = syncsocket_read(_coreCmdProxy.sync_reader, resp,
104 if (status > 0 && resp->resp_data_size) {
105 *resp_data = malloc(resp->resp_data_size);
110 resp->resp_data_size,
111 core_connection_get_timeout(resp->resp_data_size));
150 UICmdRespHeader resp; local
158 status = _coreCmdProxy_get_response(&resp, &tmp);
162 return resp.result
169 UICmdRespHeader resp; local
214 UICmdRespHeader resp; local
261 UICmdRespHeader resp; local
298 UICmdRespHeader resp; local
    [all...]
  /external/libffi/testsuite/libffi.call/
cls_double.c 10 static void cls_ret_double_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(double *)resp = *(double *)args[0];
16 *(double *)resp);
cls_float.c 10 static void cls_ret_float_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(float *)resp = *(float *)args[0];
16 *(float *)resp);
cls_schar.c 12 static void cls_ret_schar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
15 *(ffi_arg*)resp = *(signed char *)args[0];
17 (int)*(ffi_arg *)(resp));
cls_sint.c 10 static void cls_ret_sint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(ffi_arg*)resp = *(signed int *)args[0];
15 (int)*(ffi_arg *)(resp));
cls_sshort.c 10 static void cls_ret_sshort_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(ffi_arg*)resp = *(signed short *)args[0];
15 (int)*(ffi_arg *)(resp));
cls_uchar.c 10 static void cls_ret_uchar_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(ffi_arg*)resp = *(unsigned char *)args[0];
15 (int)*(ffi_arg *)(resp));
cls_uint.c 10 static void cls_ret_uint_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(ffi_arg *)resp = *(unsigned int *)args[0];
16 (int)*(ffi_arg *)(resp));
  /external/smack/src/com/kenai/jbosh/
CMSessionParams.java 82 final AbstractBody resp)
85 resp.getAttribute(Attributes.ACK));
91 getRequiredAttribute(resp, Attributes.SID)),
93 getRequiredAttribute(resp, Attributes.WAIT)),
95 resp.getAttribute(Attributes.VER)),
97 resp.getAttribute(Attributes.POLLING)),
99 resp.getAttribute(Attributes.INACTIVITY)),
101 resp.getAttribute(Attributes.REQUESTS)),
103 resp.getAttribute(Attributes.HOLD)),
105 resp.getAttribute(Attributes.ACCEPT))
    [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...]
  /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...]
  /external/chromium_org/third_party/tlslite/tlslite/integration/
SMTP_TLS.py 100 (resp, reply) = self.docmd("STARTTLS")
101 if resp == 220:
114 return (resp, reply

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 91011>>