/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/ |
IccCard.java | 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)) 147 * onComplete.obj will be an AsyncResult 148 * ((AsyncResult)onComplete.obj).exception == null on success 149 * ((AsyncResult)onComplete.obj).exception != null on fail 161 * onComplete.obj will be an AsyncResult [all...] |
CommandsInterface.java | 229 * AsyncResult.result is a String containing the SMS PDU 239 * AsyncResult.result is a String containing the SMS PDU 247 * AsyncResult.result is a byte array containing the SMS-CB PDU 255 * AsyncResult.result is an int array containing the index of new SMS 263 * AsyncResult.result is a String containing the status report PDU 271 * AsyncResult.result is an Object[] 272 * ((Object[])AsyncResult.result)[0] is a String containing the NITZ time string 273 * ((Object[])AsyncResult.result)[1] is a Long containing the milliseconds since boot as 289 * AsyncResult.result is a String[] 290 * ((String[])(AsyncResult.result))[0] contains status cod [all...] |
CallManager.java | 22 import android.os.AsyncResult; [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;
|
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/uicc/ |
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...] |
IccFileHandler.java | 166 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 186 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 199 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 252 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]> 270 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]> 283 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 302 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 320 * ((AsyncResult)(onLoaded.obj)).result is the byte[] 349 * @param onComplete onComplete.obj will be an AsyncResult 366 * @param onComplete onComplete.obj will be an AsyncResult [all...] |
AdnRecordLoader.java | 21 import android.os.AsyncResult; 145 AsyncResult ar; 152 ar = (AsyncResult)(msg.obj); 186 ar = (AsyncResult)(msg.obj); 195 ar = (AsyncResult)(msg.obj); 226 ar = (AsyncResult)(msg.obj); 254 ar = (AsyncResult)(msg.obj); 285 AsyncResult.forMessage(mUserResponse) 296 AsyncResult.forMessage(mUserResponse).result
|
AdnRecordCache.java | 19 import android.os.AsyncResult; 81 AsyncResult ar = new AsyncResult(null, null, new RuntimeException("AdnCache reset")); 125 AsyncResult.forMessage(response).exception = e; 264 AsyncResult.forMessage(response).result = result; 295 AsyncResult.forMessage(response).exception 311 notifyWaiters(ArrayList<Message> waiters, AsyncResult ar) { 320 AsyncResult.forMessage(waiter, ar.result, ar.exception); 330 AsyncResult ar; 336 ar = (AsyncResult) msg.obj [all...] |
UiccController.java | 20 import android.os.AsyncResult; 218 AsyncResult ar = (AsyncResult)msg.obj; 234 mIccChangedRegistrants.notifyRegistrants(new AsyncResult(null, index, null)); 247 AsyncResult ar; 258 } else if(msg.obj != null && msg.obj instanceof AsyncResult) { 259 ar = (AsyncResult)msg.obj; 281 private synchronized void onGetIccCardStatusDone(AsyncResult ar, Integer index) { 304 mIccChangedRegistrants.notifyRegistrants(new AsyncResult(null, index, null)); 308 private void onSimRefresh(AsyncResult ar, Integer index) [all...] |
UiccPkcs15.java | 19 import android.os.AsyncResult; 111 AsyncResult ar = (AsyncResult) msg.obj; 114 AsyncResult.forMessage(mCallback, null, ar.exception); 129 AsyncResult.forMessage(mCallback, result, (result == null) ? 154 AsyncResult ar; 158 ar = (AsyncResult) msg.obj; 162 AsyncResult.forMessage(mCallback, null, null); 165 AsyncResult.forMessage(mCallback, null, ar.exception); 202 AsyncResult ar = (AsyncResult) msg.obj [all...] |
/packages/services/Telephony/src/com/android/services/telephony/ |
PstnIncomingCallNotifier.java | 24 import android.os.AsyncResult; 74 handleNewRingingConnection((AsyncResult) msg.obj); 77 handleCdmaCallWaiting((AsyncResult) msg.obj); 80 handleNewUnknownConnection((AsyncResult) msg.obj); 129 * @param asyncResult The result object from the new ringing event. 131 private void handleNewRingingConnection(AsyncResult asyncResult) { 133 Connection connection = (Connection) asyncResult.result; 144 private void handleCdmaCallWaiting(AsyncResult asyncResult) { [all...] |
PstnPhoneCapabilitiesNotifier.java | 19 import android.os.AsyncResult; 52 handleVideoCapabilitesChanged((AsyncResult) msg.obj); 90 private void handleVideoCapabilitesChanged(AsyncResult ar) {
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/async/ |
AsyncResult.java | 31 public class AsyncResult<T> { 34 AsyncResult(T result) {
|
AsyncExecutor.java | 34 public <T> AsyncResult<T> submit (final AsyncTask<T> task) {
41 return new AsyncResult(result);
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/async/ |
AsyncResult.java | 26 public class AsyncResult<T> {
29 AsyncResult (Future<T> future) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
ImsPhoneBase.java | 21 import android.os.AsyncResult; 80 AsyncResult result = new AsyncResult(null, Boolean.TRUE, null); 86 AsyncResult result = new AsyncResult(null, Boolean.FALSE, null); 107 mOnHoldRegistrants.notifyRegistrants(new AsyncResult(null, result, null)); 117 mOnHoldRegistrants.notifyRegistrants(new AsyncResult(null, result, null)); 131 AsyncResult result = new AsyncResult(null, Integer.valueOf(mode), null); 372 AsyncResult.forMessage(onComplete, null, null) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaSubscriptionSourceManager.java | 23 import android.os.AsyncResult; 110 AsyncResult ar; 116 ar = (AsyncResult) msg.obj; 126 ar = (AsyncResult)msg.obj; 181 * @param ar AsyncResult object that contains the result of get CDMA 184 private void handleGetCdmaSubscriptionSource(AsyncResult ar) { 194 mCdmaSubscriptionSourceChangedRegistrants.notifyRegistrants(new AsyncResult(null,
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
DataConnectionTest.java | 21 import android.os.AsyncResult; 171 private long getSuggestedRetryDelay(AsyncResult ar) throws Exception { 173 cArgs[0] = AsyncResult.class; 224 AsyncResult ar = new AsyncResult(null, response, null); 239 AsyncResult ar = new AsyncResult(null, response, null); 254 AsyncResult ar = new AsyncResult(null, response, null);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
OperatorInfo.aidl | 22 * trying to make the conventional containing object (AsyncResult),
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
GsmInboundSmsHandlerTest.java | 26 import android.os.AsyncResult; 218 new AsyncResult(null, mSmsMessage, null)); 225 new AsyncResult(null, mSmsMessage, null)); 242 new AsyncResult(null, mSmsMessage, null)); 288 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_INJECT_SMS, new AsyncResult(null, 295 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_INJECT_SMS, new AsyncResult(null, 365 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_NEW_SMS, new AsyncResult(null, 375 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_NEW_SMS, new AsyncResult(null, 390 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_NEW_SMS, new AsyncResult(null, 407 mGsmInboundSmsHandler.sendMessage(InboundSmsHandler.EVENT_NEW_SMS, new AsyncResult(null [all...] |