HomeSort by relevance Sort by last modified time
    Searched refs:onComplete (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/Source/WebCore/storage/
IDBTransactionCallbacks.h 44 virtual void onComplete() = 0;
IDBTransaction.h 74 virtual void onComplete();
  /external/webkit/Source/WebKit/chromium/public/
WebIDBTransactionCallbacks.h 37 virtual void onComplete() { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebKit/chromium/src/
IDBTransactionCallbacksProxy.cpp 59 void IDBTransactionCallbacksProxy::onComplete()
61 m_callbacks->onComplete();
WebIDBTransactionCallbacksImpl.cpp 51 void WebIDBTransactionCallbacksImpl::onComplete()
53 m_callbacks->onComplete();
IDBTransactionCallbacksProxy.h 48 virtual void onComplete();
WebIDBTransactionCallbacksImpl.h 45 virtual void onComplete();
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneBase.java 297 public void setLine1Number(String alphaTag, String number, Message onComplete) {
299 AsyncResult.forMessage(onComplete, null, null);
300 onComplete.sendToTarget();
304 Message onComplete) {
306 AsyncResult.forMessage(onComplete, null, null);
307 onComplete.sendToTarget();
310 public void getCallForwardingOption(int commandInterfaceCFReason, Message onComplete) {
315 int timerSeconds, Message onComplete) {
318 public void getOutgoingCallerIdDisplay(Message onComplete) {
320 AsyncResult.forMessage(onComplete, null, null)
    [all...]
SipPhone.java 270 public void getOutgoingCallerIdDisplay(Message onComplete) {
272 AsyncResult.forMessage(onComplete, null, null);
273 onComplete.sendToTarget();
277 Message onComplete) {
279 AsyncResult.forMessage(onComplete, null, null);
280 onComplete.sendToTarget();
283 public void getCallWaiting(Message onComplete) {
285 AsyncResult.forMessage(onComplete, null, null);
286 onComplete.sendToTarget();
289 public void setCallWaiting(boolean enable, Message onComplete) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/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);
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
LoadScreennailTask.java 38 void onComplete(Bitmap result);
70 callback.onComplete(result);
PhotoEditor.java 83 public void onComplete(final Bitmap result) {
142 public void onComplete(Uri result) {
SaveCopyTask.java 48 void onComplete(Uri result);
102 callback.onComplete(result);
  /frameworks/base/telephony/java/com/android/internal/telephony/
Phone.java 734 * @param onComplete a callback message when the action is completed.
736 void enableEnhancedVoicePrivacy(boolean enable, Message onComplete);
741 * @param onComplete a callback message when the action is completed.
743 void getEnhancedVoicePrivacy(Message onComplete);
    [all...]
IccCard.java 233 * When the operation is complete, onComplete will be sent to its
236 * onComplete.obj will be an AsyncResult
238 * ((AsyncResult)onComplete.obj).exception == null on success
239 * ((AsyncResult)onComplete.obj).exception != null on fail
242 * ((AsyncResult)onComplete.obj).exception != null
243 * && ((AsyncResult)onComplete.obj).exception
245 * && ((CommandException)(((AsyncResult)onComplete.obj).exception))
251 public void supplyPin (String pin, Message onComplete) {
252 mPhone.mCM.supplyIccPin(pin, mHandler.obtainMessage(EVENT_PINPUK_DONE, onComplete));
255 public void supplyPuk (String puk, String newPin, Message onComplete) {
    [all...]
PhoneProxy.java 388 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) {
389 mActivePhone.enableEnhancedVoicePrivacy(enable, onComplete);
392 public void getEnhancedVoicePrivacy(Message onComplete) {
393 mActivePhone.getEnhancedVoicePrivacy(onComplete);
480 public void setLine1Number(String alphaTag, String number, Message onComplete) {
481 mActivePhone.setLine1Number(alphaTag, number, onComplete);
498 Message onComplete) {
499 mActivePhone.setVoiceMailNumber(alphaTag, voiceMailNumber, onComplete);
503 Message onComplete) {
505 onComplete);
    [all...]
IccRecords.java 144 * When the operation is complete, onComplete will be sent to its handler
149 * @param onComplete
150 * onComplete.obj will be an AsyncResult
151 * ((AsyncResult)onComplete.obj).exception == null on success
152 * ((AsyncResult)onComplete.obj).exception != null on fail
155 Message onComplete) {
166 obtainMessage(EVENT_SET_MSISDN_DONE, onComplete));
199 * When the operation is complete, onComplete will be sent to its handler
204 * @param onComplete
205 * onComplete.obj will be an AsyncResul
    [all...]
IccFileHandler.java 249 * @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) {
267 IccUtils.bytesToHexString(data), null, onComplete);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 879 public void setLine1Number(String alphaTag, String number, Message onComplete) {
880 mIccRecords.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) {
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;
    [all...]
SIMRecords.java 261 * When the operation is complete, onComplete will be sent to its handler
266 * @param onComplete
267 * onComplete.obj will be an AsyncResult
268 * ((AsyncResult)onComplete.obj).exception == null on success
269 * ((AsyncResult)onComplete.obj).exception != null on fail
272 Message onComplete) {
283 obtainMessage(EVENT_SET_MSISDN_DONE, onComplete));
308 * When the operation is complete, onComplete will be sent to its handler
313 * @param onComplete
314 * onComplete.obj will be an AsyncResul
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 325 public void enableEnhancedVoicePrivacy(boolean enable, Message onComplete) {
326 this.mCM.setPreferredVoicePrivacy(enable, onComplete);
329 public void getEnhancedVoicePrivacy(Message onComplete) {
330 this.mCM.getPreferredVoicePrivacy(onComplete);
456 public void getCallWaiting(Message onComplete) {
457 mCM.queryCallWaiting(CommandsInterface.SERVICE_CLASS_VOICE, onComplete);
552 public void setLine1Number(String alphaTag, String number, Message onComplete) {
556 public void setCallWaiting(boolean enable, Message onComplete) {
690 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) {
701 mCM.sendBurstDtmf(dtmfString, on, off, onComplete);
    [all...]
RuimRecords.java 148 public void setVoiceMailNumber(String alphaTag, String voiceNumber, Message onComplete){
150 AsyncResult.forMessage((onComplete)).exception =
152 onComplete.sendToTarget();
  /packages/apps/Phone/src/com/android/phone/
FdnSetting.java 106 Message onComplete = mFDNHandler.obtainMessage(EVENT_PIN2_ENTRY_COMPLETE);
109 mPhone.getIccCard().setIccFdnEnabled(!isEnabled, password, onComplete);
175 Message onComplete = mFDNHandler.obtainMessage(EVENT_PIN2_CHANGE_COMPLETE);
176 mPhone.getIccCard().changeIccFdnPassword(mOldPin, mNewPin, onComplete);
190 Message onComplete = mFDNHandler.obtainMessage(EVENT_PIN2_CHANGE_COMPLETE);
191 mPhone.getIccCard().supplyPuk2(puk2, mNewPin, onComplete);
  /external/chromium/chrome/browser/resources/file_manager/js/
util.js 110 function onComplete() {
117 return onComplete();

Completed in 782 milliseconds

1 2