/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
StatsObserver.java | 33 public void onComplete(StatsReport[] reports);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IccCard.java | 78 * When the operation is complete, onComplete will be sent to its 81 * onComplete.obj will be an AsyncResult 83 * ((AsyncResult)onComplete.obj).exception == null on success 84 * ((AsyncResult)onComplete.obj).exception != null on fail 87 * ((AsyncResult)onComplete.obj).exception != null 88 * && ((AsyncResult)onComplete.obj).exception 90 * && ((CommandException)(((AsyncResult)onComplete.obj).exception)) 93 public void supplyPin (String pin, Message onComplete); 98 public void supplyPuk (String puk, String newPin, Message onComplete); 103 public void supplyPin2 (String pin2, Message onComplete); [all...] |
Phone.java | 666 * @param onComplete a callback message when the action is completed. 668 void enableEnhancedVoicePrivacy(boolean enable, Message onComplete); 673 * @param onComplete a callback message when the action is completed. 675 void getEnhancedVoicePrivacy(Message onComplete); 832 * @param onComplete is the callback message when the action is processed by BP 835 void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete); [all...] |
PhoneProxy.java | 593 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) { 594 mActivePhone.enableEnhancedVoicePrivacy(enable, onComplete); 598 public void getEnhancedVoicePrivacy(Message onComplete) { 599 mActivePhone.getEnhancedVoicePrivacy(onComplete); 708 public void setLine1Number(String alphaTag, String number, Message onComplete) { 709 mActivePhone.setLine1Number(alphaTag, number, onComplete); 730 Message onComplete) { 731 mActivePhone.setVoiceMailNumber(alphaTag, voiceMailNumber, onComplete); 736 Message onComplete) { 738 onComplete); [all...] |
/external/chromium_org/third_party/WebKit/public/platform/ |
WebIDBDatabaseCallbacks.h | 43 virtual void onComplete(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); }
|
/packages/services/Telephony/src/com/android/phone/ |
HfaService.java | 47 onComplete(); 55 onComplete(); 68 private void onComplete() {
|
FdnSetting.java | 113 Message onComplete = mFDNHandler.obtainMessage(EVENT_PIN2_ENTRY_COMPLETE); 116 mPhone.getIccCard().setIccFdnEnabled(!isEnabled, password, onComplete); 184 Message onComplete = mFDNHandler.obtainMessage( 187 mOldPin, mNewPin, onComplete); 226 Message onComplete = mFDNHandler.obtainMessage( 228 mPhone.getIccCard().supplyPuk2(mPuk2, mNewPin, onComplete);
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
WebIDBDatabaseCallbacksImpl.cpp | 63 void WebIDBDatabaseCallbacksImpl::onComplete(long long transactionId) 65 m_callbacks->onComplete(transactionId);
|
IDBDatabaseCallbacks.h | 47 virtual void onComplete(int64_t transactionId);
|
WebIDBDatabaseCallbacksImpl.h | 48 virtual void onComplete(long long transactionId);
|
IDBDatabaseCallbacks.cpp | 72 void IDBDatabaseCallbacks::onComplete(int64_t transactionId) 75 m_database->onComplete(transactionId);
|
IDBDatabase.h | 87 virtual void onComplete(int64_t);
|
IDBTransaction.h | 94 virtual void onComplete();
|
IDBTransactionTest.cpp | 86 virtual void onComplete(int64_t transactionId) OVERRIDE { }
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccCardProxy.java | 535 public void supplyPin(String pin, Message onComplete) { 538 mUiccApplication.supplyPin(pin, onComplete); 539 } else if (onComplete != null) { 541 AsyncResult.forMessage(onComplete).exception = e; 542 onComplete.sendToTarget(); 549 public void supplyPuk(String puk, String newPin, Message onComplete) { 552 mUiccApplication.supplyPuk(puk, newPin, onComplete); 553 } else if (onComplete != null) { 555 AsyncResult.forMessage(onComplete).exception = e; 556 onComplete.sendToTarget() [all...] |
UiccCardApplication.java | 575 * When the operation is complete, onComplete will be sent to its 578 * onComplete.obj will be an AsyncResult 579 * onComplete.arg1 = remaining attempts before puk locked or -1 if unknown 581 * ((AsyncResult)onComplete.obj).exception == null on success 582 * ((AsyncResult)onComplete.obj).exception != null on fail 585 * ((AsyncResult)onComplete.obj).exception != null 586 * && ((AsyncResult)onComplete.obj).exception 588 * && ((CommandException)(((AsyncResult)onComplete.obj).exception)) 591 public void supplyPin (String pin, Message onComplete) { 594 onComplete)); [all...] |
IccRecords.java | 269 * When the operation is complete, onComplete will be sent to its handler 274 * @param onComplete 275 * onComplete.obj will be an AsyncResult 276 * ((AsyncResult)onComplete.obj).exception == null on success 277 * ((AsyncResult)onComplete.obj).exception != null on fail 280 Message onComplete) { 291 obtainMessage(EVENT_SET_MSISDN_DONE, onComplete)); 324 * When the operation is complete, onComplete will be sent to its handler 329 * @param onComplete 330 * onComplete.obj will be an AsyncResul [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipPhoneBase.java | 338 public void setLine1Number(String alphaTag, String number, Message onComplete) { 340 AsyncResult.forMessage(onComplete, null, null); 341 onComplete.sendToTarget(); 346 Message onComplete) { 348 AsyncResult.forMessage(onComplete, null, null); 349 onComplete.sendToTarget(); 353 public void getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) { 359 int timerSeconds, Message onComplete) { 363 public void getOutgoingCallerIdDisplay(Message onComplete) { 365 AsyncResult.forMessage(onComplete, null, null) [all...] |
SipPhone.java | 305 public void getOutgoingCallerIdDisplay(Message onComplete) { 307 AsyncResult.forMessage(onComplete, null, null); 308 onComplete.sendToTarget(); 313 Message onComplete) { 315 AsyncResult.forMessage(onComplete, null, null); 316 onComplete.sendToTarget(); 320 public void getCallWaiting(Message onComplete) { 322 AsyncResult.forMessage(onComplete, null, null); 323 onComplete.sendToTarget(); 327 public void setCallWaiting(boolean enable, Message onComplete) { [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
VCardImportExportListener.java | 35 void onComplete();
|
/packages/apps/Gallery/src/com/android/camera/ |
ReverseGeocoderTask.java | 32 public void onComplete(String location); 72 mCallback.onComplete(location);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardMultiUserAvatar.java | 157 public void setActive(boolean active, boolean animate, final Runnable onComplete) { 171 updateVisualsForActive(mActive, animate, SWITCH_ANIMATION_DURATION, onComplete); 175 final Runnable onComplete) { 205 if (onComplete != null) { 206 onComplete.run(); 216 if (onComplete != null) { 217 post(onComplete);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GSMPhone.java | 132 Cfu(String cfNumber, Message onComplete) { 134 mOnComplete = onComplete; 922 public void setLine1Number(String alphaTag, String number, Message onComplete) { 925 r.setMsisdnNumber(alphaTag, number, onComplete); 932 Message onComplete) { 936 resp = obtainMessage(EVENT_SET_VM_NUMBER_DONE, 0, 0, onComplete); 974 public void getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) { 979 resp = obtainMessage(EVENT_GET_CALL_FORWARD_DONE, onComplete); 981 resp = onComplete; 992 Message onComplete) { [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CDMAPhone.java | 326 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) { 327 mCi.setPreferredVoicePrivacy(enable, onComplete); 331 public void getEnhancedVoicePrivacy(Message onComplete) { 332 mCi.getPreferredVoicePrivacy(onComplete); 482 public void getCallWaiting(Message onComplete) { 483 mCi.queryCallWaiting(CommandsInterface.SERVICE_CLASS_VOICE, onComplete); 611 public void setLine1Number(String alphaTag, String number, Message onComplete) { 616 public void setCallWaiting(boolean enable, Message onComplete) { 767 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { 778 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); [all...] |
/external/chromium/chrome/browser/resources/file_manager/js/ |
util.js | 110 function onComplete() { 117 return onComplete();
|