/system/bt/stack/bnep/ |
bnep_api.c | 227 ** resp - responce for the connection indication 234 tBNEP_RESULT BNEP_ConnectResp (UINT16 handle, tBNEP_RESULT resp) 248 BNEP_TRACE_API ("BNEP_ConnectResp() for handle %d, responce %d", handle, resp); 251 if (resp == BNEP_CONN_FAILED_SRC_UUID) resp_code = BNEP_SETUP_INVALID_SRC_UUID; 252 else if (resp == BNEP_CONN_FAILED_DST_UUID) resp_code = BNEP_SETUP_INVALID_DEST_UUID; 253 else if (resp == BNEP_CONN_FAILED_UUID_SIZE) resp_code = BNEP_SETUP_INVALID_UUID_SIZE; 254 else if (resp == BNEP_SUCCESS) resp_code = BNEP_SETUP_CONN_OK; 260 if (resp == BNEP_SUCCESS)
|
/external/jetty/src/java/org/eclipse/jetty/servlet/ |
StatisticsServlet.java | 84 protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException 89 resp.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE); 96 resp.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE); 107 sendXmlResponse(resp); 111 sendTextResponse(resp);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatService.java | 297 // Don't send Terminal Resp if command detail is not available 403 ResponseData resp; local 406 resp = new DTTZResponseData(null); 407 sendTerminalResponse(cmdParams.mCmdDet, ResultCode.OK, false, 0, resp); 410 resp = new LanguageResponseData(Locale.getDefault().getLanguage()); 411 sendTerminalResponse(cmdParams.mCmdDet, ResultCode.OK, false, 0, resp); 531 int additionalInfo, ResponseData resp) { 583 if (resp != null) { 584 resp.format(buf); 945 ResponseData resp = null; local [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server.c | 36 static void eap_sm_parseEapResp(struct eap_sm *sm, const struct wpabuf *resp); 1517 struct eap_hdr *resp; local 1535 struct eap_hdr *resp; local [all...] |
eap_server_sake.c | 239 struct eap_sake_hdr *resp; local 250 resp = (struct eap_sake_hdr *) pos; 251 version = resp->version; 252 session_id = resp->session_id; 253 subtype = resp->subtype; 413 struct eap_sake_hdr *resp; local 422 resp = (struct eap_sake_hdr *) pos; 424 subtype = resp->subtype; 425 pos = (u8 *) (resp + 1);
|
/external/openssh/ |
serverloop.c | 1157 struct sshbuf *resp = NULL; local 1165 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL) 1229 struct sshbuf *resp = NULL; local [all...] |
/external/boringssl/src/crypto/bn/ |
div.c | 119 BN_ULONG *resp, *wnump; local 227 resp = &(res->d[loop - 1]); 237 *resp = 1; 244 * the resp pointer */ 248 resp--; 251 for (i = 0; i < loop - 1; i++, wnump--, resp--) { 357 *resp = q;
|
/external/v8/test/mjsunit/ |
debug-evaluate-bool-constructor.js | 52 var resp = dcp.processDebugJSONRequest(request); 53 var response = JSON.parse(resp); 54 assertTrue(response.success, 'Command failed: ' + resp);
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap.c | 1122 struct wpabuf *resp; local 1129 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_EXPANDED, 1131 if (resp == NULL) 1134 wpabuf_put_be24(resp, EAP_VENDOR_IETF); 1135 wpabuf_put_be32(resp, EAP_TYPE_NAK); 1145 wpabuf_put_u8(resp, EAP_TYPE_EXPANDED); 1146 wpabuf_put_be24(resp, m->vendor); 1147 wpabuf_put_be32(resp, m->method); 1154 wpabuf_put_u8(resp, EAP_TYPE_EXPANDED) 1167 struct wpabuf *resp; local 1429 struct wpabuf *resp; local 1513 struct wpabuf *resp; local 2789 struct wpabuf *resp; local [all...] |
eap_pwd.c | 788 struct wpabuf *resp = NULL; local 832 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD, 835 if (resp == NULL) { 840 wpabuf_put_u8(resp, lm_exch); 842 wpabuf_put_data(resp, buf + data->out_frag_pos, len); 860 return resp; 913 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD, 916 if (resp != NULL) 917 wpabuf_put_u8(resp, (EAP_PWD_GET_EXCHANGE(lm_exch))); 920 return resp; [all...] |
eap_wsc.c | 304 struct wpabuf *resp; local 325 resp = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, plen, 327 if (resp == NULL) 330 wpabuf_put_u8(resp, data->out_op_code); /* Op-Code */ 331 wpabuf_put_u8(resp, flags); /* Flags */ 333 wpabuf_put_be16(resp, wpabuf_len(data->out_buf)); 335 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used, 364 return resp;
|
eap_tls_common.h | 130 struct eap_hdr *hdr, struct wpabuf **resp);
|
eap_tls_common.c | 714 struct wpabuf *resp; local 716 resp = eap_tls_msg_alloc(eap_type, 1, EAP_CODE_RESPONSE, id); 717 if (resp == NULL) 721 wpabuf_put_u8(resp, peap_version); /* Flags */ 722 return resp; 1067 * @resp: Buffer for returning the EAP-Nak message 1071 struct eap_hdr *hdr, struct wpabuf **resp) [all...] |
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/ |
http-builder-0.7.2.jar | |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
ImsPhone.java | 723 Message resp; local 724 resp = obtainMessage(EVENT_GET_CALL_FORWARD_DONE, onComplete); 728 ut.queryCallForward(getConditionFromCFReason(commandInterfaceCFReason),null,resp); local 757 Message resp; local 761 resp = obtainMessage(EVENT_SET_CALL_FORWARD_DONE, 783 Message resp; local 784 resp = obtainMessage(EVENT_GET_CALL_WAITING_DONE, onComplete); 788 ut.queryCallWaiting(resp); 801 Message resp; local 802 resp = obtainMessage(EVENT_SET_CALL_WAITING_DONE, onComplete) 837 Message resp; local 842 ut.queryCallBarring(getCBTypeFromFacility(facility), resp); local 852 Message resp; local 858 ut.updateCallBarring(getCBTypeFromFacility(facility), lockState, resp, null); local [all...] |
/external/wpa_supplicant_8/src/p2p/ |
p2p_sd.c | 419 struct wpabuf *resp; local 444 resp = p2p_build_sd_response(dialog_token, WLAN_STATUS_SUCCESS, 448 resp = p2p_build_sd_response(dialog_token, 452 if (resp == NULL) 458 wpabuf_head(resp), wpabuf_len(resp), 200) < 0) 461 wpabuf_free(resp); 607 struct wpabuf *resp; local 638 resp = p2p_build_gas_comeback_resp(dialog_token, WLAN_STATUS_SUCCESS, 644 if (resp == NULL [all...] |
/external/v8/test/webkit/ |
gmail-re-re.js | 28 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;
|
/system/bt/bta/hf_client/ |
bta_hf_client_sco.c | 149 tBTM_ESCO_PARAMS resp; local 158 resp = bta_hf_client_esco_params[0]; 162 resp = bta_hf_client_esco_params[bta_hf_client_cb.scb.negotiated_codec]; 173 BTM_EScoConnRsp(p_data->sco_inx, hci_status, &resp);
|
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 58 my $resp = <STDIN>; 59 chomp $resp; 60 if ( lc substr($resp,0,1) eq "y" ) {
|
/external/wpa_supplicant_8/src/common/ |
wpa_helpers.c | 62 char *resp, size_t resp_size) 72 if (wpa_ctrl_request(ctrl, cmd, strlen(cmd), resp, &len, NULL) < 0) { 78 resp[len] = '\0';
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
javax.servlet_2.5.0.v200910301333.jar | |
/prebuilts/tools/common/m2/repository/com/jfrog/bintray/gradle/gradle-bintray-plugin/1.0/ |
gradle-bintray-plugin-1.0.jar | |
/system/bt/bta/ag/ |
bta_ag_sco.c | 1572 tBTM_ESCO_PARAMS resp; local [all...] |
/external/opencv/ml/src/ |
mlrtrees.cpp | 395 double avg_resp, resp = predicted_node->value; local 396 oob_predictions_sum.data.fl[i] += (float)resp; 403 resp = (resp - true_resp_ptr[i])/maximal_response; 404 ncorrect_responses += exp( -resp*resp );
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imaplib.py | 916 resp = self._get_line() 920 if self._match(self.tagre, resp): 923 raise self.abort('unexpected tagged response: %s' % resp) 933 if not self._match(Untagged_response, resp): 934 if self._match(Untagged_status, resp): 940 if self._match(Continuation, resp): 944 raise self.abort("unexpected response: '%s'" % resp) 982 return resp [all...] |