/external/wpa_supplicant_8/src/wps/ |
http_server.h | 22 void http_request_send(struct http_request *req, struct wpabuf *resp); 24 struct wpabuf *resp);
|
/hardware/ril/mock-ril/src/python/ |
tcs.py | 208 resp = Msg() 209 resp.recvMsg(s) 211 response.ParseFromString(resp.protobuf) 213 print "cmd=%d" % (resp.cmd) 214 print "token=%d" % (resp.token) 215 print "status=%d" % (resp.status) 216 print "len(protobuf)=%d" % (len(resp.protobuf)) 218 if ((resp.cmd == 0) & (resp.token == 1234567890123) & 219 (resp.status == 0) & (response.state == 1)) [all...] |
/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...] |
/system/core/fastboot/ |
engine.c | 77 int (*func)(Action *a, int status, char *resp); 85 static int cb_default(Action *a, int status, char *resp) 88 fprintf(stderr,"FAILED (%s)\n", resp); 175 static int cb_check(Action *a, int status, char *resp, int invert) 183 fprintf(stderr,"FAILED (%s)\n", resp); 197 yes = match(resp, value, count); 208 fprintf(stderr,"Device %s is '%s'.\n", a->cmd + 7, resp); 218 static int cb_require(Action *a, int status, char *resp) 220 return cb_check(a, status, resp, 0); 223 static int cb_reject(Action *a, int status, char *resp) 315 char resp[FB_RESPONSE_SZ+1]; local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap_gpsk.c | 265 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, data->id_peer_len) 556 struct wpabuf *resp; local 599 struct wpabuf *resp; local 636 struct wpabuf *resp; local [all...] |
eap_leap.c | 69 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...] |
eap_tnc.c | 92 struct wpabuf *resp; local 114 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, plen, 116 if (resp == NULL) 119 wpabuf_put_u8(resp, flags); /* Flags */ 121 wpabuf_put_be32(resp, wpabuf_len(data->out_buf)); 123 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used, 145 return resp; 207 struct wpabuf *resp; local 359 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 1, 361 if (resp == NULL [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_gpsk.c | 266 struct wpabuf *resp; local 286 resp = eap_gpsk_send_gpsk_2(data, eap_get_id(reqData), 288 if (resp == NULL) 293 return resp; 302 struct wpabuf *resp; local 314 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GPSK, len, 316 if (resp == NULL) 319 wpabuf_put_u8(resp, EAP_GPSK_OPCODE_GPSK_2); 320 start = wpabuf_put(resp, 0); 324 wpabuf_put_be16(resp, data->id_peer_len) 557 struct wpabuf *resp; local 600 struct wpabuf *resp; local 637 struct wpabuf *resp; local [all...] |
/external/wpa_supplicant/ |
eap_gtc.c | 56 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;
|
eap_otp.c | 41 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;
|
eap_pax.c | 113 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->mac_id = req->mac_id 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/ |
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;
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_pax.c | 192 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) - EAP_PAX_ICV_LEN) 292 struct eap_pax_hdr *resp; local 460 struct eap_pax_hdr *resp; local [all...] |
eap_mschapv2.c | 249 struct eap_mschapv2_hdr *resp; local 260 resp = (struct eap_mschapv2_hdr *) pos; 262 resp->op_code != MSCHAPV2_OP_RESPONSE) { 264 "ignore op %d", resp->op_code); 269 resp->op_code != MSCHAPV2_OP_SUCCESS && 270 resp->op_code != MSCHAPV2_OP_FAILURE) { 272 "Failure - ignore op %d", resp->op_code); 277 resp->op_code != MSCHAPV2_OP_FAILURE) { 279 "- ignore op %d", resp->op_code); 291 struct eap_mschapv2_hdr *resp; local 429 struct eap_mschapv2_hdr *resp; local 456 struct eap_mschapv2_hdr *resp; local [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_pax.c | 193 struct eap_pax_hdr *resp; local 199 if (pos == NULL || len < sizeof(*resp)) { 205 resp = (struct eap_pax_hdr *) pos; 210 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id, 211 resp->public_key_id); 213 (u8 *) (resp + 1), len - sizeof(*resp) - EAP_PAX_ICV_LEN) 293 struct eap_pax_hdr *resp; local 461 struct eap_pax_hdr *resp; local [all...] |
/frameworks/base/media/libmedia/ |
IEffectClient.cpp | 123 char *resp = NULL; local 125 resp = (char *)malloc(replySize); 126 data.read(resp, replySize); 128 commandExecuted(cmdCode, cmdSize, cmd, replySize, resp); 132 if (resp) { 133 free(resp);
|
/external/libffi/testsuite/libffi.call/ |
closure_fn0.c | 16 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args, 19 *(ffi_arg*)resp = 40 (int)(long)userdata, (int)*(ffi_arg *)resp);
|
closure_fn1.c | 13 static void closure_test_fn1(ffi_cif* cif __UNUSED__, void* resp, void** args, 16 *(ffi_arg*)resp = 35 (int)(long)userdata, (int)*(ffi_arg *)resp);
|
closure_fn2.c | 12 static void closure_test_fn2(ffi_cif* cif __UNUSED__, void* resp, void** args, 15 *(ffi_arg*)resp = 34 (int)*(ffi_arg *)resp);
|
closure_fn3.c | 12 static void closure_test_fn3(ffi_cif* cif __UNUSED__, void* resp, void** args, 15 *(ffi_arg*)resp = 34 (int)*(ffi_arg *)resp);
|
closure_fn4.c | 14 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args, 17 *(ffi_arg*)resp = 47 (int)(long)userdata, (int)*(ffi_arg *)resp);
|
closure_fn5.c | 13 closure_test_fn5(ffi_cif* cif __UNUSED__, void* resp, void** args, 16 *(ffi_arg*)resp = 46 (int)(long)userdata, (int)*(ffi_arg *)resp);
|
closure_fn6.c | 12 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args, 15 *(ffi_arg*)resp = 39 (int)(long)userdata, (int)*(ffi_arg *)resp);
|
closure_stdcall.c | 11 closure_test_stdcall(ffi_cif* cif __UNUSED__, void* resp, void** args, 14 *(ffi_arg*)resp = 22 (int)*(ffi_arg *)resp);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
TimeStampResp.java | 89 TimeStampResp resp = (TimeStampResp) object; 91 values[0] = resp.status; 92 values[1] = resp.timeStampToken;
|