Searched refs:response (Results 1 - 25 of 188) sorted by relevance

12345678

/frameworks/base/core/java/android/net/
H A DParseException.java24 public String response; field in class:ParseException
26 ParseException(String response) { argument
27 this.response = response;
H A DICaptivePortal.aidl25 oneway void appResponse(int response);
/frameworks/base/tools/preload/loadclass/
H A DLoadClass.java59 StringBuilder response = new StringBuilder("DECAFBAD");
64 response.append(',').append(memoryInfo.nativeSharedDirty);
65 response.append(',').append(memoryInfo.dalvikSharedDirty);
66 response.append(',').append(memoryInfo.otherSharedDirty);
67 response.append(',').append(memoryInfo.nativePrivateDirty);
68 response.append(',').append(memoryInfo.dalvikPrivateDirty);
69 response.append(',').append(memoryInfo.otherPrivateDirty);
71 response.append(',').append(allocCount);
72 response.append(',').append(allocSize);
73 response
[all...]
/frameworks/base/tests/AmSlam/src/test/amslam/
H A DPingReceiver.java29 Intent response = new Intent(this, PongReceiver.class);
30 response.putExtra("start_time", intent.getLongExtra("start_time", 0));
31 response.putExtra("bounce_time", SystemClock.uptimeMillis());
32 response.putExtra("receiver", getClass().getSimpleName());
33 sendBroadcast(response);
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticator.aidl31 void addAccount(in IAccountAuthenticatorResponse response, String accountType,
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account,
49 void getAuthTokenLabel(in IAccountAuthenticatorResponse response, String authTokenType);
54 void updateCredentials(in IAccountAuthenticatorResponse response, in Account account,
60 void editProperties(in IAccountAuthenticatorResponse response, String accountType);
66 void hasFeatures(in IAccountAuthenticatorResponse response, in Account account,
72 void getAccountRemovalAllowed(in IAccountAuthenticatorResponse response, in Account account);
77 void getAccountCredentialsForCloning(in IAccountAuthenticatorResponse response,
84 void addAccountFromCredentials(in IAccountAuthenticatorResponse response, i
[all...]
H A DAbstractAccountAuthenticator.java105 * and return the result via that response when the activity finishes (or whenever else the
157 public void addAccount(IAccountAuthenticatorResponse response, String accountType, argument
168 new AccountAuthenticatorResponse(response),
177 response.onResult(result);
180 handleException(response, "addAccount", accountType, e);
185 public void confirmCredentials(IAccountAuthenticatorResponse response, argument
193 new AccountAuthenticatorResponse(response), account, options);
202 response.onResult(result);
205 handleException(response, "confirmCredentials", account.toString(), e);
210 public void getAuthTokenLabel(IAccountAuthenticatorResponse response, argument
235 getAuthToken(IAccountAuthenticatorResponse response, Account account, String authTokenType, Bundle loginOptions) argument
263 updateCredentials(IAccountAuthenticatorResponse response, Account account, String authTokenType, Bundle loginOptions) argument
292 editProperties(IAccountAuthenticatorResponse response, String accountType) argument
307 hasFeatures(IAccountAuthenticatorResponse response, Account account, String[] features) argument
322 getAccountRemovalAllowed(IAccountAuthenticatorResponse response, Account account) argument
337 getAccountCredentialsForCloning(IAccountAuthenticatorResponse response, Account account) argument
353 addAccountFromCredentials(IAccountAuthenticatorResponse response, Account account, Bundle accountCredentials) argument
371 startAddAccountSession(IAccountAuthenticatorResponse response, String accountType, String authTokenType, String[] features, Bundle options) argument
401 startUpdateCredentialsSession( IAccountAuthenticatorResponse response, Account account, String authTokenType, Bundle loginOptions) argument
440 finishSession( IAccountAuthenticatorResponse response, String accountType, Bundle sessionBundle) argument
467 isCredentialsUpdateSuggested( IAccountAuthenticatorResponse response, Account account, String statusToken) argument
485 handleException(IAccountAuthenticatorResponse response, String method, String data, Exception e) argument
540 editProperties(AccountAuthenticatorResponse response, String accountType) argument
565 addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
585 confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) argument
630 getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
660 updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
680 hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features) argument
699 getAccountRemovalAllowed(AccountAuthenticatorResponse response, Account account) argument
717 getAccountCredentialsForCloning(final AccountAuthenticatorResponse response, final Account account) argument
742 addAccountFromCredentials(final AccountAuthenticatorResponse response, Account account, Bundle accountCredentials) argument
791 startAddAccountSession( final AccountAuthenticatorResponse response, final String accountType, final String authTokenType, final String[] requiredFeatures, final Bundle options) argument
847 startUpdateCredentialsSession( final AccountAuthenticatorResponse response, final Account account, final String authTokenType, final Bundle options) argument
902 finishSession( final AccountAuthenticatorResponse response, final String accountType, final Bundle sessionBundle) argument
986 isCredentialsUpdateSuggested( final AccountAuthenticatorResponse response, Account account, String statusToken) argument
[all...]
H A DIAccountManager.aidl41 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features,
43 void getAccountByTypeAndFeatures(in IAccountManagerResponse response, String accountType,
45 void getAccountsByFeatures(in IAccountManagerResponse response, String accountType,
48 void removeAccount(in IAccountManagerResponse response, in Account account,
50 void removeAccountAsUser(in IAccountManagerResponse response, in Account account,
53 void copyAccountToUser(in IAccountManagerResponse response, in Account account,
63 void getAuthToken(in IAccountManagerResponse response, in Account account,
66 void addAccount(in IAccountManagerResponse response, String accountType,
69 void addAccountAsUser(in IAccountManagerResponse response, String accountType,
72 void updateCredentials(in IAccountManagerResponse response, i
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcAsyncChannel.java135 public boolean rspIsInactive(Message response) { argument
136 boolean retVal = response.arg1 == 1;
148 Message response = sendMessageSynchronously(REQ_IS_INACTIVE);
149 if ((response != null) && (response.what == RSP_IS_INACTIVE)) {
150 value = rspIsInactive(response);
152 log("rspIsInactive error response=" + response);
173 * @param response Message
176 public int rspCid(Message response) { argument
216 rspApnSetting(Message response) argument
258 rspLinkProperties(Message response) argument
326 rspNetworkCapabilities(Message response) argument
[all...]
/frameworks/base/core/java/android/service/gatekeeper/
H A DGateKeeperResponse.java40 /** Default constructor for response with generic response code **/
51 GateKeeperResponse response = new GateKeeperResponse(RESPONSE_RETRY);
52 response.mTimeout = timeout;
53 return response;
58 GateKeeperResponse response = new GateKeeperResponse(RESPONSE_OK);
59 response.mPayload = payload;
60 response.mShouldReEnroll = shouldReEnroll;
61 return response;
74 final GateKeeperResponse response;
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken46 private int mExpectingSendEnvelopeResponseSw1; // SW1/SW2 response status
47 private int mExpectingSendEnvelopeResponseSw2; // SW1/SW2 response status
83 * @param response simulated envelope response to return
85 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) {
91 mExpectingSendEnvelopeResponse = response;
108 Message response) {
114 if (response != null) {
115 AsyncResult.forMessage(response);
116 response
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java180 public void setMute (boolean enableMute, Message response) { argument
184 public void getMute (Message response) { argument
234 int retry, int messageRef, Message response) {
239 Message response) {
247 public void deleteSmsOnSim(int index, Message response) { argument
251 public void deleteSmsOnRuim(int index, Message response) { argument
255 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
259 public void writeSmsToRuim(int status, String pdu, Message response) { argument
312 public void queryCallWaiting(int serviceClass, Message response) { argument
317 Message response) {
233 sendImsGsmSms(String smscPDU, String pdu, int retry, int messageRef, Message response) argument
238 sendImsCdmaSms(byte[] pdu, int retry, int messageRef, Message response) argument
316 setCallWaiting(boolean enable, int serviceClass, Message response) argument
321 setNetworkSelectionModeAutomatic(Message response) argument
325 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
330 getNetworkSelectionMode(Message response) argument
334 getAvailableNetworks(Message response) argument
338 startNetworkScan(NetworkScanRequest nsr, Message response) argument
342 stopNetworkScan(Message response) argument
346 setCallForward(int action, int cfReason, int serviceClass, String number, int timeSeconds, Message response) argument
351 queryCallForwardStatus(int cfReason, int serviceClass, String number, Message response) argument
356 queryCLIP(Message response) argument
360 getBasebandVersion(Message response) argument
364 queryFacilityLock(String facility, String password, int serviceClass, Message response) argument
369 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
374 setFacilityLock(String facility, boolean lockState, String password, int serviceClass, Message response) argument
379 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
384 sendUSSD(String ussdString, Message response) argument
388 cancelPendingUssd(Message response) argument
396 invokeOemRilRequestRaw(byte[] data, Message response) argument
400 invokeOemRilRequestStrings(String[] strings, Message response) argument
404 setBandMode(int bandMode, Message response) argument
408 queryAvailableBandMode(Message response) argument
412 sendTerminalResponse(String contents, Message response) argument
416 sendEnvelope(String contents, Message response) argument
420 sendEnvelopeWithStatus(String contents, Message response) argument
424 handleCallSetupRequestFromSim( boolean accept, Message response) argument
429 setPreferredNetworkType(int networkType , Message response) argument
433 getPreferredNetworkType(Message response) argument
437 setLocationUpdates(boolean enable, Message response) argument
457 getCdmaSubscriptionSource(Message response) argument
461 getGsmBroadcastConfig(Message response) argument
465 setGsmBroadcastConfig(SmsBroadcastConfigInfo[] config, Message response) argument
469 setGsmBroadcastActivation(boolean activate, Message response) argument
474 getDeviceIdentity(Message response) argument
478 getCDMASubscription(Message response) argument
486 queryCdmaRoamingPreference(Message response) argument
490 setCdmaRoamingPreference(int cdmaRoamingType, Message response) argument
494 setCdmaSubscriptionSource(int cdmaSubscription , Message response) argument
498 queryTTYMode(Message response) argument
502 setTTYMode(int ttyMode, Message response) argument
506 sendCDMAFeatureCode(String FeatureCode, Message response) argument
510 getCdmaBroadcastConfig(Message response) argument
514 setCdmaBroadcastConfig(CdmaSmsBroadcastConfigInfo[] configs, Message response) argument
518 setCdmaBroadcastActivation(boolean activate, Message response) argument
522 exitEmergencyCallbackMode(Message response) argument
526 supplyIccPinForApp(String pin, String aid, Message response) argument
530 supplyIccPukForApp(String puk, String newPin, String aid, Message response) argument
534 supplyIccPin2ForApp(String pin2, String aid, Message response) argument
538 supplyIccPuk2ForApp(String puk2, String newPin2, String aid, Message response) argument
542 changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) argument
546 changeIccPin2ForApp(String oldPin2, String newPin2, String aidPtr, Message response) argument
551 requestIsimAuthentication(String nonce, Message response) argument
555 requestIccSimAuthentication(int authContext, String data, String aid, Message response) argument
571 iccOpenLogicalChannel(String AID, int p2, Message response) argument
574 iccCloseLogicalChannel(int channel, Message response) argument
577 iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
581 iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
585 nvReadItem(int itemID, Message response) argument
588 nvWriteItem(int itemID, String itemValue, Message response) argument
591 nvWriteCdmaPrl(byte[] preferredRoamingList, Message response) argument
594 nvResetConfig(int resetType, Message response) argument
604 setRadioCapability(RadioCapability rc, Message response) argument
608 getRadioCapability(Message response) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountAuthenticatorDummyActivity.java33 AccountAuthenticatorResponse response =
36 if (response != null) {
37 response.onResult(result.getExtras());
H A DTestAccountType2Authenticator.java47 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) { argument
54 AccountAuthenticatorResponse response,
65 AccountAuthenticatorResponse response,
74 AccountAuthenticatorResponse response,
90 AccountAuthenticatorResponse response,
100 AccountAuthenticatorResponse response,
109 AccountAuthenticatorResponse response,
120 AccountAuthenticatorResponse response,
131 public Bundle finishSession(AccountAuthenticatorResponse response, argument
140 final AccountAuthenticatorResponse response,
53 addAccount( AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
64 confirmCredentials( AccountAuthenticatorResponse response, Account account, Bundle options) argument
73 getAuthToken( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
89 updateCredentials( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
99 hasFeatures( AccountAuthenticatorResponse response, Account account, String[] features) argument
108 startAddAccountSession( AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
119 startUpdateCredentialsSession( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
139 isCredentialsUpdateSuggested( final AccountAuthenticatorResponse response, Account account, String statusToken) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecordCache.java122 private void sendErrorResponse(Message response, String errString) { argument
123 if (response != null) {
125 AsyncResult.forMessage(response).exception = e;
126 response.sendToTarget();
137 * @param response message to be posted when done
138 * response.exception hold the exception in error
141 Message response) {
145 sendErrorResponse(response, "EF is not known ADN-like EF:0x" +
152 sendErrorResponse(response, "Have pending update for EF:0x" +
157 mUserWriteResponse.put(efid, response);
140 updateAdnByIndex(int efid, AdnRecord adn, int recordIndex, String pin2, Message response) argument
178 updateAdnBySearch(int efid, AdnRecord oldAdn, AdnRecord newAdn, String pin2, Message response) argument
251 requestLoadAllAdnLike(int efid, int extensionEf, Message response) argument
[all...]
H A DIccFileHandler.java57 // Byte order received in response to COMMAND_GET_RESPONSE
173 Message response
178 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
205 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_IMG_DONE,
212 null, null, mAid, response);
227 Message response
231 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
259 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_DONE,
263 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
290 Message response
395 sendResult(Message response, Object result, Throwable ex) argument
405 processException(Message response, AsyncResult ar) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java181 public void setMute (boolean enableMute, Message response) { argument
185 public void getMute (Message response) { argument
235 int retry, int messageRef, Message response) {
240 Message response) {
248 public void deleteSmsOnSim(int index, Message response) { argument
252 public void deleteSmsOnRuim(int index, Message response) { argument
256 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
260 public void writeSmsToRuim(int status, String pdu, Message response) { argument
313 public void queryCallWaiting(int serviceClass, Message response) { argument
318 Message response) {
234 sendImsGsmSms(String smscPDU, String pdu, int retry, int messageRef, Message response) argument
239 sendImsCdmaSms(byte[] pdu, int retry, int messageRef, Message response) argument
317 setCallWaiting(boolean enable, int serviceClass, Message response) argument
322 setNetworkSelectionModeAutomatic(Message response) argument
326 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
331 getNetworkSelectionMode(Message response) argument
335 getAvailableNetworks(Message response) argument
339 startNetworkScan(NetworkScanRequest nsr, Message response) argument
343 stopNetworkScan(Message response) argument
347 setCallForward(int action, int cfReason, int serviceClass, String number, int timeSeconds, Message response) argument
352 queryCallForwardStatus(int cfReason, int serviceClass, String number, Message response) argument
357 queryCLIP(Message response) argument
361 getBasebandVersion(Message response) argument
365 queryFacilityLock(String facility, String password, int serviceClass, Message response) argument
370 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
375 setFacilityLock(String facility, boolean lockState, String password, int serviceClass, Message response) argument
380 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
385 sendUSSD(String ussdString, Message response) argument
389 cancelPendingUssd(Message response) argument
397 invokeOemRilRequestRaw(byte[] data, Message response) argument
401 invokeOemRilRequestStrings(String[] strings, Message response) argument
405 setBandMode(int bandMode, Message response) argument
409 queryAvailableBandMode(Message response) argument
413 sendTerminalResponse(String contents, Message response) argument
417 sendEnvelope(String contents, Message response) argument
421 sendEnvelopeWithStatus(String contents, Message response) argument
425 handleCallSetupRequestFromSim( boolean accept, Message response) argument
430 setPreferredNetworkType(int networkType , Message response) argument
434 getPreferredNetworkType(Message response) argument
438 setLocationUpdates(boolean enable, Message response) argument
458 getCdmaSubscriptionSource(Message response) argument
462 getGsmBroadcastConfig(Message response) argument
466 setGsmBroadcastConfig(SmsBroadcastConfigInfo[] config, Message response) argument
470 setGsmBroadcastActivation(boolean activate, Message response) argument
475 getDeviceIdentity(Message response) argument
479 getCDMASubscription(Message response) argument
487 queryCdmaRoamingPreference(Message response) argument
491 setCdmaRoamingPreference(int cdmaRoamingType, Message response) argument
495 setCdmaSubscriptionSource(int cdmaSubscription , Message response) argument
499 queryTTYMode(Message response) argument
503 setTTYMode(int ttyMode, Message response) argument
507 sendCDMAFeatureCode(String FeatureCode, Message response) argument
511 getCdmaBroadcastConfig(Message response) argument
515 setCdmaBroadcastConfig(CdmaSmsBroadcastConfigInfo[] configs, Message response) argument
519 setCdmaBroadcastActivation(boolean activate, Message response) argument
523 exitEmergencyCallbackMode(Message response) argument
527 supplyIccPinForApp(String pin, String aid, Message response) argument
531 supplyIccPukForApp(String puk, String newPin, String aid, Message response) argument
535 supplyIccPin2ForApp(String pin2, String aid, Message response) argument
539 supplyIccPuk2ForApp(String puk2, String newPin2, String aid, Message response) argument
543 changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message response) argument
547 changeIccPin2ForApp(String oldPin2, String newPin2, String aidPtr, Message response) argument
552 requestIsimAuthentication(String nonce, Message response) argument
556 requestIccSimAuthentication(int authContext, String data, String aid, Message response) argument
572 iccOpenLogicalChannel(String AID, int p2, Message response) argument
576 iccCloseLogicalChannel(int channel, Message response) argument
580 iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
585 iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
590 nvReadItem(int itemID, Message response) argument
594 nvWriteItem(int itemID, String itemValue, Message response) argument
598 nvWriteCdmaPrl(byte[] preferredRoamingList, Message response) argument
602 nvResetConfig(int resetType, Message response) argument
[all...]
/frameworks/base/core/java/android/service/autofill/
H A DFillCallback.java43 * @param response autofill information for that activity, or {@code null} when the activity
47 public void onSuccess(@Nullable FillResponse response) { argument
51 if (response != null) {
52 response.setRequestId(mRequestId);
56 mCallback.onSuccess(response);
H A DIAuthenticationCallback.aidl29 void onSuccessForFillResponse(in FillResponse response);
H A DIFillCallback.aidl30 void onSuccess(in FillResponse response);
/frameworks/base/core/java/com/android/internal/widget/
H A DVerifyCredentialResponse.java48 VerifyCredentialResponse response = new VerifyCredentialResponse(responseCode, 0, null);
50 response.setTimeout(source.readInt());
56 response.setPayload(payload);
59 return response;
138 VerifyCredentialResponse response;
141 response = new VerifyCredentialResponse(gateKeeperResponse.getTimeout());
146 Slog.e(TAG, "verifyChallenge response had no associated payload");
147 response = VerifyCredentialResponse.ERROR;
149 response = new VerifyCredentialResponse(token);
152 response
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java125 * response.obj.result is an int[2]
127 * response.obj.result[0] is IMS registration state
130 * response.obj.result[1] is of type RILConstants.GSM_PHONE or
314 * response.obj.result[0] is received signal strength (0-31, 99)
315 * response.obj.result[1] is bit error rate (0-7, 99)
363 * response.obj.result[0] is a bitmask of RIL_RESTRICTED_STATE_* values
983 * cause code returned as int[0] in Message.obj.response
995 * cause code returned as int[0] in Message.obj.response
1009 void setMute (boolean enableMute, Message response); argument
1011 void getMute (Message response); argument
1020 getSignalStrength(Message response) argument
1033 getVoiceRegistrationState(Message response) argument
1045 getDataRegistrationState(Message response) argument
1053 getOperator(Message response) argument
1090 sendSMS(String smscPDU, String pdu, Message response) argument
1100 sendSMSExpectMore(String smscPDU, String pdu, Message response) argument
1106 sendCdmaSms(byte[] pdu, Message response) argument
1119 sendImsGsmSms(String smscPDU, String pdu, int retry, int messageRef, Message response) argument
1131 sendImsCdmaSms(byte[] pdu, int retry, int messageRef, Message response) argument
1139 deleteSmsOnSim(int index, Message response) argument
1147 deleteSmsOnRuim(int index, Message response) argument
1162 writeSmsToSim(int status, String smsc, String pdu, Message response) argument
1164 writeSmsToRuim(int status, String pdu, Message response) argument
1166 setRadioPower(boolean on, Message response) argument
1168 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message response) argument
1170 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message response) argument
1181 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message response) argument
1188 iccIO(int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, Message response) argument
1196 iccIOForApp(int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, String aid, Message response) argument
1206 queryCLIP(Message response) argument
1224 getCLIR(Message response) argument
1232 setCLIR(int clirMode, Message response) argument
1242 queryCallWaiting(int serviceClass, Message response) argument
1250 setCallWaiting(boolean enable, int serviceClass, Message response) argument
1257 setCallForward(int action, int cfReason, int serviceClass, String number, int timeSeconds, Message response) argument
1268 queryCallForwardStatus(int cfReason, int serviceClass, String number, Message response) argument
1271 setNetworkSelectionModeAutomatic(Message response) argument
1273 setNetworkSelectionModeManual(String operatorNumeric, Message response) argument
1283 getNetworkSelectionMode(Message response) argument
1290 getAvailableNetworks(Message response) argument
1297 startNetworkScan(NetworkScanRequest nsr, Message response) argument
1305 stopNetworkScan(Message response) argument
1310 getBasebandVersion(Message response) argument
1322 queryFacilityLock(String facility, String password, int serviceClass, Message response) argument
1337 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
1347 setFacilityLock(String facility, boolean lockState, String password, int serviceClass, Message response) argument
1360 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
1363 sendUSSD(String ussdString, Message response) argument
1369 cancelPendingUssd(Message response) argument
1379 setBandMode(int bandMode, Message response) argument
1389 queryAvailableBandMode(Message response) argument
1397 setPreferredNetworkType(int networkType , Message response) argument
1404 getPreferredNetworkType(Message response) argument
1412 getNeighboringCids(Message response, WorkSource workSource) argument
1421 setLocationUpdates(boolean enable, Message response) argument
1453 invokeOemRilRequestRaw(byte[] data, Message response) argument
1464 setCarrierInfoForImsiEncryption(ImsiEncryptionInfo imsiEncryptionInfo, Message response) argument
1467 invokeOemRilRequestStrings(String[] strings, Message response) argument
1484 sendTerminalResponse(String contents, Message response) argument
1495 sendEnvelope(String contents, Message response) argument
1511 sendEnvelopeWithStatus(String contents, Message response) argument
1519 handleCallSetupRequestFromSim(boolean accept, Message response) argument
1535 setGsmBroadcastConfig(SmsBroadcastConfigInfo[] config, Message response) argument
1544 getGsmBroadcastConfig(Message response) argument
1556 getDeviceIdentity(Message response) argument
1568 getCDMASubscription(Message response) argument
1575 sendCDMAFeatureCode(String FeatureCode, Message response) argument
1585 queryCdmaRoamingPreference(Message response) argument
1592 setCdmaRoamingPreference(int cdmaRoamingType, Message response) argument
1599 setCdmaSubscriptionSource(int cdmaSubscriptionType, Message response) argument
1605 getCdmaSubscriptionSource(Message response) argument
1617 setTTYMode(int ttyMode, Message response) argument
1629 queryTTYMode(Message response) argument
1678 setCdmaBroadcastConfig(CdmaSmsBroadcastConfigInfo[] configs, Message response) argument
1694 exitEmergencyCallbackMode(Message response) argument
1724 requestIsimAuthentication(String nonce, Message response) argument
1739 requestIccSimAuthentication(int authContext, String data, String aid, Message response) argument
1777 setCellInfoListRate(int rateInMillis, Message response, WorkSource workSource) argument
1824 iccOpenLogicalChannel(String AID, int p2, Message response) argument
1834 iccCloseLogicalChannel(int channel, Message response) argument
1853 iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
1871 iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
1881 nvReadItem(int itemID, Message response) argument
1891 nvWriteItem(int itemID, String itemValue, Message response) argument
1900 nvWriteCdmaPrl(byte[] preferredRoamingList, Message response) argument
1910 nvResetConfig(int resetType, Message response) argument
[all...]
H A DOemHookIndication.java43 byte[] response = RIL.arrayListToPrimitiveArray(data);
46 com.android.internal.telephony.uicc.IccUtils.bytesToHexString(response));
50 mRil.mUnsolOemHookRawRegistrant.notifyRegistrant(new AsyncResult(null, response, null));
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DHTTPHandler.java86 HTTPResponse response = exchangeWithRetry(url, message, HTTPMessage.Method.POST,
88 if (response.getStatusCode() >= 300) {
89 throw new IOException("Bad HTTP status code " + response.getStatusCode());
92 SOAPParser parser = new SOAPParser(response.getPayloadStream());
95 ByteBuffer x = response.getPayload();
105 HTTPResponse response =
107 return response.getBinaryPayload();
111 HTTPResponse response = exchangeWithRetry(url, null, HTTPMessage.Method.GET, null);
112 return response.getPayloadStream();
121 HTTPResponse response
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommandsVerifier.java765 public void setMute(boolean enableMute, Message response) { argument
770 public void getMute(Message response) { argument
775 public void getSignalStrength(Message response) { argument
780 public void getVoiceRegistrationState(Message response) { argument
785 public void getDataRegistrationState(Message response) { argument
790 public void getOperator(Message response) { argument
815 public void sendSMS(String smscPDU, String pdu, Message response) { argument
820 public void sendSMSExpectMore(String smscPDU, String pdu, Message response) { argument
825 public void sendCdmaSms(byte[] pdu, Message response) { argument
831 Message response) {
830 sendImsGsmSms(String smscPDU, String pdu, int retry, int messageRef, Message response) argument
836 sendImsCdmaSms(byte[] pdu, int retry, int messageRef, Message response) argument
841 deleteSmsOnSim(int index, Message response) argument
846 deleteSmsOnRuim(int index, Message response) argument
851 writeSmsToSim(int status, String smsc, String pdu, Message response) argument
856 writeSmsToRuim(int status, String pdu, Message response) argument
861 setRadioPower(boolean on, Message response) argument
866 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message response) argument
871 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message response) argument
876 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message response) argument
881 iccIO(int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, Message response) argument
887 iccIOForApp(int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, String aid, Message response) argument
893 queryCLIP(Message response) argument
898 getCLIR(Message response) argument
903 setCLIR(int clirMode, Message response) argument
908 queryCallWaiting(int serviceClass, Message response) argument
913 setCallWaiting(boolean enable, int serviceClass, Message response) argument
918 setCallForward(int action, int cfReason, int serviceClass, String number, int timeSeconds, Message response) argument
924 queryCallForwardStatus(int cfReason, int serviceClass, String number, Message response) argument
930 setNetworkSelectionModeAutomatic(Message response) argument
935 setNetworkSelectionModeManual(String operatorNumeric, Message response) argument
940 getNetworkSelectionMode(Message response) argument
945 getAvailableNetworks(Message response) argument
950 startNetworkScan(NetworkScanRequest nsr, Message response) argument
955 stopNetworkScan(Message response) argument
960 getBasebandVersion(Message response) argument
965 queryFacilityLock(String facility, String password, int serviceClass, Message response) argument
971 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
977 setFacilityLock(String facility, boolean lockState, String password, int serviceClass, Message response) argument
983 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
989 sendUSSD(String ussdString, Message response) argument
994 cancelPendingUssd(Message response) argument
1004 setBandMode(int bandMode, Message response) argument
1009 queryAvailableBandMode(Message response) argument
1014 setPreferredNetworkType(int networkType, Message response) argument
1019 getPreferredNetworkType(Message response) argument
1024 setLocationUpdates(boolean enable, Message response) argument
1049 invokeOemRilRequestRaw(byte[] data, Message response) argument
1054 invokeOemRilRequestStrings(String[] strings, Message response) argument
1069 sendTerminalResponse(String contents, Message response) argument
1074 sendEnvelope(String contents, Message response) argument
1079 sendEnvelopeWithStatus(String contents, Message response) argument
1084 handleCallSetupRequestFromSim(boolean accept, Message response) argument
1094 setGsmBroadcastConfig(SmsBroadcastConfigInfo[] config, Message response) argument
1099 getGsmBroadcastConfig(Message response) argument
1104 getDeviceIdentity(Message response) argument
1109 getCDMASubscription(Message response) argument
1114 sendCDMAFeatureCode(String FeatureCode, Message response) argument
1124 queryCdmaRoamingPreference(Message response) argument
1129 setCdmaRoamingPreference(int cdmaRoamingType, Message response) argument
1134 setCdmaSubscriptionSource(int cdmaSubscriptionType, Message response) argument
1139 getCdmaSubscriptionSource(Message response) argument
1144 setTTYMode(int ttyMode, Message response) argument
1149 queryTTYMode(Message response) argument
1169 setCdmaBroadcastConfig(CdmaSmsBroadcastConfigInfo[] configs, Message response) argument
1179 exitEmergencyCallbackMode(Message response) argument
1194 requestIsimAuthentication(String nonce, Message response) argument
1199 requestIccSimAuthentication(int authContext, String data, String aid, Message response) argument
1235 iccOpenLogicalChannel(String AID, int p2, Message response) argument
1240 iccCloseLogicalChannel(int channel, Message response) argument
1245 iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
1251 iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data, Message response) argument
1257 nvReadItem(int itemID, Message response) argument
1262 nvWriteItem(int itemID, String itemValue, Message response) argument
1267 nvWriteCdmaPrl(byte[] preferredRoamingList, Message response) argument
1272 nvResetConfig(int resetType, Message response) argument
[all...]
/frameworks/base/core/java/android/app/
H A DEphemeralResolverService.java95 final List<EphemeralResolveInfo> response = onGetEphemeralResolveInfo(digestPrefix);
96 final int responseSize = response == null ? 0 : response.size();
99 resultList.add(response.get(i).getInstantAppResolveInfo());
111 final EphemeralResolveInfo response = onGetEphemeralIntentFilter(hostName);
113 resultList.add(response.getInstantAppResolveInfo());

Completed in 9647 milliseconds

12345678