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

1 2 3 4 5

  /frameworks/base/core/java/android/os/
AsyncResult.java 22 public class AsyncResult
35 public static AsyncResult
38 AsyncResult ret;
40 ret = new AsyncResult (m.obj, r, ex);
48 public static AsyncResult
51 AsyncResult ret;
53 ret = new AsyncResult (m.obj, null, null);
62 AsyncResult (Object uo, Object r, Throwable ex)
Registrant.java 64 notifyRegistrant(AsyncResult ar)
81 msg.obj = new AsyncResult(userObj, result, exception);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AdnRecordCache.java 19 import android.os.AsyncResult;
81 AsyncResult ar = new AsyncResult(null, null, new RuntimeException("AdnCache reset"));
125 AsyncResult.forMessage(response).exception = e;
259 AsyncResult.forMessage(response).result = result;
290 AsyncResult.forMessage(response).exception
305 notifyWaiters(ArrayList<Message> waiters, AsyncResult ar) {
314 AsyncResult.forMessage(waiter, ar.result, ar.exception);
324 AsyncResult ar;
330 ar = (AsyncResult) msg.obj
    [all...]
AdnRecordLoader.java 21 import android.os.AsyncResult;
133 AsyncResult ar;
140 ar = (AsyncResult)(msg.obj);
173 ar = (AsyncResult)(msg.obj);
182 ar = (AsyncResult)(msg.obj);
213 ar = (AsyncResult)(msg.obj);
234 ar = (AsyncResult)(msg.obj);
265 AsyncResult.forMessage(mUserResponse)
276 AsyncResult.forMessage(mUserResponse).result
UiccController.java 20 import android.os.AsyncResult;
206 AsyncResult ar = (AsyncResult)msg.obj;
222 mIccChangedRegistrants.notifyRegistrants(new AsyncResult(null, index, null));
235 AsyncResult ar;
246 } else if(msg.obj != null && msg.obj instanceof AsyncResult) {
247 ar = (AsyncResult)msg.obj;
269 private synchronized void onGetIccCardStatusDone(AsyncResult ar, Integer index) {
292 mIccChangedRegistrants.notifyRegistrants(new AsyncResult(null, index, null));
296 private void onSimRefresh(AsyncResult ar, Integer index)
    [all...]
IccFileHandler.java 146 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
164 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
201 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]>
218 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
237 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
255 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
283 * @param onComplete onComplete.obj will be an AsyncResult
315 AsyncResult.forMessage(response, result, ex);
320 private boolean processException(Message response, AsyncResult ar) {
341 AsyncResult ar
    [all...]
SIMRecords.java 20 import android.os.AsyncResult;
297 * onComplete.obj will be an AsyncResult
298 * ((AsyncResult)onComplete.obj).exception == null on success
299 * ((AsyncResult)onComplete.obj).exception != null on fail
349 * onComplete.obj will be an AsyncResult
350 * ((AsyncResult)onComplete.obj).exception == null on success
351 * ((AsyncResult)onComplete.obj).exception != null on fail
357 AsyncResult.forMessage((onComplete)).exception =
381 AsyncResult.forMessage((onComplete)).exception =
590 AsyncResult ar
    [all...]
UiccCardApplication.java 20 import android.os.AsyncResult;
223 * @param ar is asyncResult of Query_Facility_Locked
225 private void onQueryFdnEnabled(AsyncResult ar) {
250 private void onChangeFdnDone(AsyncResult ar) {
264 AsyncResult.forMessage(response).exception = ar.exception;
280 private void onQueryFacilityLock(AsyncResult ar) {
330 private void onChangeFacilityLock(AsyncResult ar) {
343 AsyncResult.forMessage(response).exception = ar.exception;
352 private int parsePinPukErrorResult(AsyncResult ar) {
370 AsyncResult ar
    [all...]
IsimUiccRecords.java 20 import android.os.AsyncResult;
106 AsyncResult ar;
122 ar = (AsyncResult)msg.obj;
133 ar = (AsyncResult)msg.obj;
203 public void onRecordLoaded(AsyncResult ar) {
214 public void onRecordLoaded(AsyncResult ar) {
231 public void onRecordLoaded(AsyncResult ar) {
242 public void onRecordLoaded(AsyncResult ar) {
252 public void onRecordLoaded(AsyncResult ar) {
302 new AsyncResult(null, null, null))
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CdmaVoicePrivacyCheckBoxPreference.java 22 import android.os.AsyncResult;
79 AsyncResult ar = (AsyncResult) msg.obj;
95 AsyncResult ar = (AsyncResult) msg.obj;
CLIRListPreference.java 9 import android.os.AsyncResult;
129 AsyncResult ar = (AsyncResult) msg.obj;
158 AsyncResult ar = (AsyncResult) msg.obj;
CallWaitingCheckBoxPreference.java 9 import android.os.AsyncResult;
80 AsyncResult ar = (AsyncResult) msg.obj;
125 AsyncResult ar = (AsyncResult) msg.obj;
CdmaSystemSelectListPreference.java 20 import android.os.AsyncResult;
117 AsyncResult ar = (AsyncResult) msg.obj;
147 AsyncResult ar = (AsyncResult) msg.obj;
CdmaSubscriptionListPreference.java 20 import android.os.AsyncResult;
119 AsyncResult ar = (AsyncResult) msg.obj;
NetworkQueryService.java 23 import android.os.AsyncResult;
87 broadcastQueryResults((AsyncResult) msg.obj);
196 private void broadcastQueryResults (AsyncResult ar) {
203 if (DBG) log("AsyncResult is null.");
210 if (DBG) log("AsyncResult has exception " + exception);
EnableIccPinScreen.java 20 import android.os.AsyncResult;
54 AsyncResult ar = (AsyncResult) msg.obj;
109 private void handleResult(AsyncResult ar) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSubscriptionSourceManager.java 23 import android.os.AsyncResult;
112 AsyncResult ar;
118 ar = (AsyncResult) msg.obj;
128 ar = (AsyncResult)msg.obj;
183 * @param ar AsyncResult object that contains the result of get CDMA
186 private void handleGetCdmaSubscriptionSource(AsyncResult ar) {
196 mCdmaSubscriptionSourceChangedRegistrants.notifyRegistrants(new AsyncResult(null,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 21 import android.os.AsyncResult;
92 AsyncResult result = new AsyncResult(null, Boolean.TRUE, null);
97 AsyncResult result = new AsyncResult(null, Boolean.FALSE, null);
112 AsyncResult result = new AsyncResult(null, Boolean.TRUE, null);
117 AsyncResult result = new AsyncResult(null, Boolean.FALSE, null);
132 AsyncResult result = new AsyncResult(null, Integer.valueOf(mode), null)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TtyManager.java 23 import android.os.AsyncResult;
45 AsyncResult ar = (AsyncResult) msg.obj;
54 AsyncResult ar = (AsyncResult) msg.obj;
PstnIncomingCallNotifier.java 24 import android.os.AsyncResult;
75 handleNewRingingConnection((AsyncResult) msg.obj);
78 handleCdmaCallWaiting((AsyncResult) msg.obj);
81 handleNewUnknownConnection((AsyncResult) msg.obj);
167 * @param asyncResult The result object from the new ringing event.
169 private void handleNewRingingConnection(AsyncResult asyncResult) {
171 Connection connection = (Connection) asyncResult.result;
182 private void handleCdmaCallWaiting(AsyncResult asyncResult) {
    [all...]
  /external/chromium_org/remoting/host/setup/
daemon_controller.h 57 enum AsyncResult {
83 typedef base::Callback<void (AsyncResult result)> CompletionCallback;
242 AsyncResult result);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsStorageMonitor.java 23 import android.os.AsyncResult;
104 AsyncResult ar;
112 ar = (AsyncResult) msg.obj;
IccPhoneBookInterfaceManager.java 20 import android.os.AsyncResult;
63 AsyncResult ar;
67 ar = (AsyncResult) msg.obj;
82 ar = (AsyncResult) msg.obj;
89 ar = (AsyncResult)msg.obj;
105 private void notifyPending(AsyncResult ar) {
TelephonyDevController.java 23 import android.os.AsyncResult;
115 AsyncResult ar = (AsyncResult) sRilHardwareConfig.obj;
132 AsyncResult ar;
136 ar = (AsyncResult) msg.obj;
167 private static void handleGetHardwareConfigChanged(AsyncResult ar) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 20 import android.os.AsyncResult;
77 if (message.obj instanceof AsyncResult) {
78 SmsCbMessage cbMessage = handleGsmBroadcastSms((AsyncResult) message.obj);
89 * @param ar the AsyncResult containing the received PDUs
91 private SmsCbMessage handleGsmBroadcastSms(AsyncResult ar) {

Completed in 827 milliseconds

1 2 3 4 5