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

123456789

/external/qemu/hw/
H A Dgoldfish_mmc.c76 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[
[all...]
/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_ulonglong.c10 static void cls_ret_ulonglong_fn(ffi_cif* cif __UNUSED__, void* resp, argument
13 *(unsigned long long *)resp= *(unsigned long long *)args[0];
16 *(unsigned long long *)(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/speex/libspeex/
H A Dcb_search_bfin.h37 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) argument
74 : "m" (subvect_size), "m" (shape_cb), "m" (r), "m" (resp), "m" (E)
82 resp += subvect_size;
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap_gtc.c55 struct wpabuf *resp; local
78 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC,
80 return resp;
110 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC, plen,
112 if (resp == NULL)
115 wpabuf_put_data(resp, "RESPONSE=", 9);
116 wpabuf_put_data(resp, identity, identity_len);
117 wpabuf_put_u8(resp, '\0');
119 wpabuf_put_data(resp, password, password_len);
121 wpabuf_head_u8(resp)
[all...]
H A Deap_md5.c39 struct wpabuf *resp; local
82 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MD5, 1 + CHAP_MD5_LEN,
84 if (resp == NULL)
91 wpabuf_put_u8(resp, CHAP_MD5_LEN);
93 id = eap_get_id(resp);
94 rpos = wpabuf_put(resp, CHAP_MD5_LEN);
98 return resp;
H A Deap_otp.c38 struct wpabuf *resp; local
72 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_OTP, password_len,
74 if (resp == NULL)
76 wpabuf_put_data(resp, password, password_len);
85 return resp;
H A Deap_sake.c154 struct wpabuf *resp; local
174 resp = eap_sake_build_msg(data, eap_get_id(reqData),
177 if (resp == NULL)
181 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID,
186 return resp;
198 struct wpabuf *resp; local
255 resp = eap_sake_build_msg(data, eap_get_id(reqData), rlen,
257 if (resp == NULL)
261 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P,
266 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI
299 struct wpabuf *resp; local
372 struct wpabuf *resp; local
[all...]
H A Deap_gpsk.c265 struct wpabuf *resp; local
285 resp = eap_gpsk_send_gpsk_2(data, eap_get_id(reqData),
287 if (resp == NULL)
292 return resp;
301 struct wpabuf *resp; local
313 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GPSK, len,
315 if (resp == NULL)
318 wpabuf_put_u8(resp, EAP_GPSK_OPCODE_GPSK_2);
319 start = wpabuf_put(resp, 0);
323 wpabuf_put_be16(resp, dat
556 struct wpabuf *resp; local
599 struct wpabuf *resp; local
636 struct wpabuf *resp; local
[all...]
H A Deap_leap.c69 struct wpabuf *resp; local
114 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_LEAP,
117 if (resp == NULL)
119 wpabuf_put_u8(resp, LEAP_VERSION);
120 wpabuf_put_u8(resp, 0); /* unused */
121 wpabuf_put_u8(resp, LEAP_RESPONSE_LEN);
122 rpos = wpabuf_put(resp, LEAP_RESPONSE_LEN);
130 wpabuf_put_data(resp, identity, identity_len);
134 return resp;
143 struct wpabuf *resp; local
[all...]
/external/bluetooth/bluez/tools/
H A Dhciattach_tialt.c67 command_complete_t resp; local
69 FAILIF(read_hci_event(fd, (unsigned char *)&resp, sizeof(resp)) < 0,
73 FAILIF(resp.uart_prefix != HCI_EVENT_PKT,
75 resp.uart_prefix);
77 FAILIF(resp.hci_hdr.evt != EVT_CMD_COMPLETE, /* event must be event-complete */
79 "but 0x%02x!\n", resp.hci_hdr.evt);
81 FAILIF(resp.hci_hdr.plen < 4, /* plen >= 4 for EVT_CMD_COMPLETE */
83 resp.hci_hdr.plen);
86 FAILIF(resp
196 unsigned char resp[100]; /* Response */ local
[all...]
/external/v8/test/mjsunit/
H A Ddebug-evaluate-bool-constructor.js52 var resp = dcp.processDebugJSONRequest(request);
53 var response = JSON.parse(resp);
54 assertTrue(response.success, 'Command failed: ' + resp);
/external/dropbear/
H A Dsvr-authpam.c55 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,
[all...]
/external/wpa_supplicant/
H A Deap_gtc.c56 struct eap_hdr *resp; local
80 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC,
83 return (u8 *) resp;
113 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GTC, respDataLen,
115 if (resp == NULL)
126 (u8 *) (resp + 1) + 1, plen);
133 return (u8 *) resp;
H A Deap_otp.c41 struct eap_hdr *resp; local
78 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_OTP, respDataLen,
81 if (resp == NULL)
92 return (u8 *) resp;
H A Deap_pax.c113 struct eap_pax_hdr *resp; local
115 resp = os_malloc(resp_len);
116 if (resp == NULL)
118 resp->code = EAP_CODE_RESPONSE;
119 resp->identifier = req->identifier;
120 resp->length = host_to_be16(resp_len);
121 resp->type = EAP_TYPE_PAX;
122 resp->op_code = op_code;
123 resp->flags = 0;
124 resp
137 struct eap_pax_hdr *resp; local
260 struct eap_pax_hdr *resp; local
356 u8 *resp, icvbuf[EAP_PAX_ICV_LEN]; local
[all...]
/external/libffi/testsuite/libffi.special/
H A Dunwindtest.cc11 closure_test_fn(ffi_cif* cif __UNUSED__, void* resp __UNUSED__,
19 void closure_test_fn1(ffi_cif* cif __UNUSED__, void* resp, argument
22 *(ffi_arg*)resp =
41 (int)(long)userdata, (int)*(ffi_arg*)resp);
43 throw (int)*(ffi_arg*)resp;
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_pax.c192 struct eap_pax_hdr *resp; local
198 if (pos == NULL || len < sizeof(*resp)) {
204 resp = (struct eap_pax_hdr *) pos;
209 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
210 resp->public_key_id);
212 (u8 *) (resp + 1), len - sizeof(*resp)
292 struct eap_pax_hdr *resp; local
460 struct eap_pax_hdr *resp; local
[all...]

Completed in 174 milliseconds

123456789