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

1 2 3 4 5 6 7 8 91011>>

  /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));
cls_ulonglong.c 10 static void cls_ret_ulonglong_fn(ffi_cif* cif __UNUSED__, void* resp,
13 *(unsigned long long *)resp= *(unsigned long long *)args[0];
16 *(unsigned long long *)(resp));
cls_ushort.c 10 static void cls_ret_ushort_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
13 *(ffi_arg*)resp = *(unsigned short *)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;
  /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/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 21 read -p "Do you want to use this PIN (y/n)? " resp
22 case "$resp" in
  /hardware/samsung_slsi/exynos5/libsecurepath/
content_protect.cpp 109 if ((RSP_ID(CMD_WV_DRM_ENABLE_PATH_PROTECTION) != tci->resp.id)) {
110 LOG_E("Trustlet did not send a response: %d", tci->resp.id);
117 if (tci->resp.return_code != RET_TL_WV_DRM_OK) {
118 LOG_E("Trustlet did not send a valid return code: %d", tci->resp.return_code);
173 if ((RSP_ID(CMD_WV_DRM_DISABLE_PATH_PROTECTION) != tci->resp.id)) {
174 LOG_E("Trustlet did not send a response: %d", tci->resp.id);
181 if (tci->resp.return_code != RET_TL_WV_DRM_OK) {
182 LOG_E("Trustlet did not send a valid return code: %d", tci->resp.return_code);
  /external/dropbear/
svr-authpam.c 55 struct pam_response* resp = NULL; local
113 * free the pam_response and its resp element - ie we _must_ malloc
115 resp = (struct pam_response*) m_malloc(sizeof(struct pam_response));
116 memset(resp, 0, sizeof(struct pam_response));
118 resp->resp = m_strdup(userDatap->passwd);
120 (*respp) = resp;
139 * free the pam_response and its resp element - ie we _must_ malloc
141 resp = (struct pam_response*) m_malloc(sizeof(struct pam_response));
142 memset(resp, 0, sizeof(struct pam_response))
    [all...]
  /hardware/qcom/keymaster/
keymaster_qcom.cpp 336 keymaster_gen_keypair_resp_t *resp = NULL; local
343 resp = (keymaster_gen_keypair_resp_t *)(handle->ion_sbuffer +
349 resp->status = KEYMASTER_FAILURE;
350 resp->key_blob_len = sizeof(qcom_km_key_blob_t);
353 QSEECOM_ALIGN(sizeof(keymaster_gen_keypair_cmd_t)), resp,
356 if ( (ret < 0) || (resp->status < 0)) {
357 ALOGE("Generate key command failed resp->status = %d ret =%d", resp->status, ret);
360 UniquePtr<unsigned char[]> keydata(new unsigned char[resp->key_blob_len]);
366 memcpy(p, (unsigned char *)(&resp->key_blob), resp->key_blob_len)
409 keymaster_import_keypair_resp_t *resp = NULL; local
481 keymaster_sign_data_resp_t *resp = NULL; local
569 keymaster_verify_data_resp_t *resp = NULL; local
    [all...]
  /external/libffi/testsuite/libffi.special/
unwindtest.cc 11 closure_test_fn(ffi_cif* cif __UNUSED__, void* resp __UNUSED__,
19 void closure_test_fn1(ffi_cif* cif __UNUSED__, void* resp,
22 *(ffi_arg*)resp =
41 (int)(long)userdata, (int)*(ffi_arg*)resp);
43 throw (int)*(ffi_arg*)resp;

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>