Searched refs:onComplete (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java284 public void setLine1Number(String alphaTag, String number, Message onComplete) { argument
286 AsyncResult.forMessage(onComplete, null, null);
287 onComplete.sendToTarget();
291 Message onComplete) {
293 AsyncResult.forMessage(onComplete, null, null);
294 onComplete.sendToTarget();
297 public void getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) { argument
302 int timerSeconds, Message onComplete) {
305 public void getOutgoingCallerIdDisplay(Message onComplete) { argument
307 AsyncResult.forMessage(onComplete, nul
290 setVoiceMailNumber(String alphaTag, String voiceMailNumber, Message onComplete) argument
300 setCallForwardingOption(int commandInterfaceCFAction, int commandInterfaceCFReason, String dialingNumber, int timerSeconds, Message onComplete) argument
311 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
318 getCallWaiting(Message onComplete) argument
323 setCallWaiting(boolean enable, Message onComplete) argument
[all...]
H A DSipPhone.java266 public void getOutgoingCallerIdDisplay(Message onComplete) { argument
268 AsyncResult.forMessage(onComplete, null, null);
269 onComplete.sendToTarget();
273 Message onComplete) {
275 AsyncResult.forMessage(onComplete, null, null);
276 onComplete.sendToTarget();
279 public void getCallWaiting(Message onComplete) { argument
281 AsyncResult.forMessage(onComplete, null, null);
282 onComplete.sendToTarget();
285 public void setCallWaiting(boolean enable, Message onComplete) { argument
272 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DPhone.java691 * @param onComplete a callback message when the action is completed.
693 void enableEnhancedVoicePrivacy(boolean enable, Message onComplete); argument
698 * @param onComplete a callback message when the action is completed.
700 void getEnhancedVoicePrivacy(Message onComplete); argument
857 * @param onComplete is the callback message when the action is processed by BP
860 void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete); argument
913 * @param onComplete a callback message when the action is completed.
915 void setLine1Number(String alphaTag, String number, Message onComplete); argument
950 * @param onComplete a callback message when the action is completed.
954 Message onComplete);
952 setVoiceMailNumber(String alphaTag, String voiceMailNumber, Message onComplete) argument
967 getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) argument
985 setCallForwardingOption(int commandInterfaceCFReason, int commandInterfaceCFAction, String dialingNumber, int timerSeconds, Message onComplete) argument
999 getOutgoingCallerIdDisplay(Message onComplete) argument
1010 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
1021 getCallWaiting(Message onComplete) argument
1031 setCallWaiting(boolean enable, Message onComplete) argument
1473 setTTYMode(int ttyMode, Message onComplete) argument
1481 queryTTYMode(Message onComplete) argument
[all...]
H A DIccCard.java205 * When the operation is complete, onComplete will be sent to its
208 * onComplete.obj will be an AsyncResult
210 * ((AsyncResult)onComplete.obj).exception == null on success
211 * ((AsyncResult)onComplete.obj).exception != null on fail
214 * ((AsyncResult)onComplete.obj).exception != null
215 * && ((AsyncResult)onComplete.obj).exception
217 * && ((CommandException)(((AsyncResult)onComplete.obj).exception))
223 public void supplyPin (String pin, Message onComplete) { argument
224 mPhone.mCM.supplyIccPin(pin, mHandler.obtainMessage(EVENT_PINPUK_DONE, onComplete));
227 public void supplyPuk (String puk, String newPin, Message onComplete) { argument
232 supplyPin2(String pin2, Message onComplete) argument
237 supplyPuk2(String puk2, String newPin2, Message onComplete) argument
242 supplyNetworkDepersonalization(String pin, Message onComplete) argument
281 setIccLockEnabled(boolean enabled, String password, Message onComplete) argument
306 setIccFdnEnabled(boolean enabled, String password, Message onComplete) argument
332 changeIccLockPassword(String oldPassword, String newPassword, Message onComplete) argument
351 changeIccFdnPassword(String oldPassword, String newPassword, Message onComplete) argument
[all...]
H A DIccRecords.java111 * When the operation is complete, onComplete will be sent to its handler
116 * @param onComplete
117 * onComplete.obj will be an AsyncResult
118 * ((AsyncResult)onComplete.obj).exception == null on success
119 * ((AsyncResult)onComplete.obj).exception != null on fail
122 Message onComplete) {
133 obtainMessage(EVENT_SET_MSISDN_DONE, onComplete));
166 * When the operation is complete, onComplete will be sent to its handler
171 * @param onComplete
172 * onComplete
121 setMsisdnNumber(String alphaTag, String number, Message onComplete) argument
176 setVoiceMailNumber(String alphaTag, String voiceNumber, Message onComplete) argument
[all...]
H A DPhoneProxy.java390 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) { argument
391 mActivePhone.enableEnhancedVoicePrivacy(enable, onComplete);
394 public void getEnhancedVoicePrivacy(Message onComplete) { argument
395 mActivePhone.getEnhancedVoicePrivacy(onComplete);
482 public void setLine1Number(String alphaTag, String number, Message onComplete) { argument
483 mActivePhone.setLine1Number(alphaTag, number, onComplete);
500 Message onComplete) {
501 mActivePhone.setVoiceMailNumber(alphaTag, voiceMailNumber, onComplete);
505 Message onComplete) {
507 onComplete);
499 setVoiceMailNumber(String alphaTag,String voiceMailNumber, Message onComplete) argument
504 getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) argument
510 setCallForwardingOption(int commandInterfaceCFReason, int commandInterfaceCFAction, String dialingNumber, int timerSeconds, Message onComplete) argument
517 getOutgoingCallerIdDisplay(Message onComplete) argument
521 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
527 getCallWaiting(Message onComplete) argument
531 setCallWaiting(boolean enable, Message onComplete) argument
719 setTTYMode(int ttyMode, Message onComplete) argument
723 queryTTYMode(Message onComplete) argument
763 sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) argument
[all...]
H A DServiceStateTracker.java214 * @param onComplete is dispatched when this is complete. it will be
215 * an AsyncResult, and onComplete.obj.exception will be non-null
218 public void reRegisterNetwork(Message onComplete) { argument
220 obtainMessage(EVENT_GET_PREFERRED_NETWORK_TYPE, onComplete));
H A DPhoneBase.java699 public void setTTYMode(int ttyMode, Message onComplete) { argument
700 mCM.setTTYMode(ttyMode, onComplete);
703 public void queryTTYMode(Message onComplete) { argument
704 mCM.queryTTYMode(onComplete);
707 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) { argument
712 public void getEnhancedVoicePrivacy(Message onComplete) { argument
799 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
H A DIccFileHandler.java249 * @param onComplete onComplete.obj will be an AsyncResult
250 * onComplete.obj.userObj will be a IccIoResult on success
253 String pin2, Message onComplete) {
256 IccUtils.bytesToHexString(data), pin2, onComplete);
264 public void updateEFTransparent(int fileid, byte[] data, Message onComplete) { argument
267 IccUtils.bytesToHexString(data), null, onComplete);
252 updateEFLinearFixed(int fileid, int recordNum, byte[] data, String pin2, Message onComplete) argument
H A DCallManager.java1010 * @param onComplete is the callback message when the action is processed by BP
1013 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
1015 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java879 public void setLine1Number(String alphaTag, String number, Message onComplete) { argument
880 mSIMRecords.setMsisdnNumber(alphaTag, number, onComplete);
885 Message onComplete) {
889 resp = obtainMessage(EVENT_SET_VM_NUMBER_DONE, 0, 0, onComplete);
923 public void getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) { argument
928 resp = obtainMessage(EVENT_GET_CALL_FORWARD_DONE, onComplete);
930 resp = onComplete;
940 Message onComplete) {
947 isCfEnable(commandInterfaceCFAction) ? 1 : 0, 0, onComplete);
949 resp = onComplete;
883 setVoiceMailNumber(String alphaTag, String voiceMailNumber, Message onComplete) argument
936 setCallForwardingOption(int commandInterfaceCFAction, int commandInterfaceCFReason, String dialingNumber, int timerSeconds, Message onComplete) argument
960 getOutgoingCallerIdDisplay(Message onComplete) argument
964 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
970 getCallWaiting(Message onComplete) argument
974 setCallWaiting(boolean enable, Message onComplete) argument
[all...]
H A DSIMRecords.java244 * When the operation is complete, onComplete will be sent to its handler
249 * @param onComplete
250 * onComplete.obj will be an AsyncResult
251 * ((AsyncResult)onComplete.obj).exception == null on success
252 * ((AsyncResult)onComplete.obj).exception != null on fail
255 Message onComplete) {
266 obtainMessage(EVENT_SET_MSISDN_DONE, onComplete));
291 * When the operation is complete, onComplete will be sent to its handler
296 * @param onComplete
297 * onComplete
254 setMsisdnNumber(String alphaTag, String number, Message onComplete) argument
301 setVoiceMailNumber(String alphaTag, String voiceNumber, Message onComplete) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java301 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) { argument
302 this.mCM.setPreferredVoicePrivacy(enable, onComplete);
305 public void getEnhancedVoicePrivacy(Message onComplete) { argument
306 this.mCM.getPreferredVoicePrivacy(onComplete);
432 public void getCallWaiting(Message onComplete) { argument
433 mCM.queryCallWaiting(CommandsInterface.SERVICE_CLASS_VOICE, onComplete);
535 public void setLine1Number(String alphaTag, String number, Message onComplete) { argument
547 public void setCallWaiting(boolean enable, Message onComplete) { argument
677 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
688 mCM.sendBurstDtmf(dtmfString, on, off, onComplete);
696 setOutgoingCallerIdDisplay(int commandInterfaceCLIRMode, Message onComplete) argument
720 setVoiceMailNumber(String alphaTag, String voiceMailNumber, Message onComplete) argument
792 getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) argument
796 setCallForwardingOption(int commandInterfaceCFAction, int commandInterfaceCFReason, String dialingNumber, int timerSeconds, Message onComplete) argument
805 getOutgoingCallerIdDisplay(Message onComplete) argument
[all...]
H A DRuimRecords.java137 public void setVoiceMailNumber(String alphaTag, String voiceNumber, Message onComplete){ argument
139 AsyncResult.forMessage((onComplete)).exception =
141 onComplete.sendToTarget();

Completed in 186 milliseconds