HomeSort by relevance Sort by last modified time
    Searched defs:ar (Results 51 - 75 of 88) sorted by null

1 23 4

  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
RuimRecords.java 195 AsyncResult ar; local
218 ar = (AsyncResult)msg.obj;
219 if (ar.exception != null) {
220 Log.e(LOG_TAG, "Exception querying IMSI, Exception:" + ar.exception);
224 mImsi = (String) ar.result;
244 ar = (AsyncResult)msg.obj;
245 String localTemp[] = (String[])ar.result;
246 if (ar.exception != null) {
261 ar = (AsyncResult)msg.obj;
262 data = (byte[])ar.result
    [all...]
CdmaConnection.java 733 AsyncResult ar = AsyncResult.forMessage(notifyMessage); local
734 ar.result = this;
735 ar.userObj = state;
CdmaCallTracker.java 473 handlePollCalls(AsyncResult ar) {
476 if (ar.exception == null) {
477 polledCalls = (List)ar.result;
478 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
944 AsyncResult ar; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 104 AsyncResult ar = (AsyncResult) msg.obj; local
105 if (ar.exception == null) {
109 Log.d(TAG, "Failed to write SMS-PP message to UICC", ar.exception);
124 * @param ar AsyncResult passed into the message handler. ar.result should
127 private void handleStatusReport(AsyncResult ar) {
128 String pduString = (String) ar.result;
398 * @param ar the AsyncResult containing the received PDUs
400 private void handleBroadcastSms(AsyncResult ar) {
402 byte[] receivedPdu = (byte[])ar.result
    [all...]
UsimPhoneBookManager.java 335 AsyncResult ar; local
339 ar = (AsyncResult) msg.obj;
340 if (ar.exception == null) {
341 createPbrFile((ArrayList<byte[]>)ar.result);
349 ar = (AsyncResult) msg.obj;
350 if (ar.exception == null) {
351 mPhoneBookRecords.addAll((ArrayList<AdnRecord>)ar.result);
359 ar = (AsyncResult) msg.obj;
360 if (ar.exception == null) {
361 mIapFileRecord = ((ArrayList<byte[]>)ar.result)
    [all...]
GsmCallTracker.java 409 handlePollCalls(AsyncResult ar) {
412 if (ar.exception == null) {
413 polledCalls = (List)ar.result;
414 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
832 AsyncResult ar; local
836 ar = (AsyncResult)msg.obj;
848 ar = (AsyncResult)msg.obj;
856 ar = (AsyncResult)msg.obj;
857 if (ar.exception != null) {
865 ar = (AsyncResult)msg.obj
    [all...]
GsmConnection.java 639 AsyncResult ar = AsyncResult.forMessage(notifyMessage); local
640 ar.result = this;
641 ar.userObj = state;
GsmMmiCode.java 870 AsyncResult ar; local
874 ar = (AsyncResult) (msg.obj);
876 onSetComplete(ar);
880 ar = (AsyncResult) (msg.obj);
886 if ((ar.exception == null) && (msg.arg1 == 1)) {
891 onSetComplete(ar);
895 ar = (AsyncResult) (msg.obj);
896 onGetClirComplete(ar);
900 ar = (AsyncResult) (msg.obj)
    [all...]
SIMRecords.java 513 AsyncResult ar; local
533 ar = (AsyncResult)msg.obj;
535 if (ar.exception != null) {
536 Log.e(LOG_TAG, "Exception querying IMSI, Exception:" + ar.exception);
540 imsi = (String) ar.result;
586 ar = (AsyncResult)msg.obj;
587 data = (byte[]) ar.result;
590 if (ar.exception == null) {
632 ar = (AsyncResult)msg.obj;
634 if (ar.exception != null)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
Settings.java 408 AsyncResult ar = (AsyncResult) msg.obj; local
410 if (ar.exception == null) {
411 int modemNetworkMode = ((int[])ar.result)[0];
476 AsyncResult ar = (AsyncResult) msg.obj; local
478 if (ar.exception == null) {
PhoneInterfaceManager.java 101 AsyncResult ar; local
122 ar = (AsyncResult) msg.obj;
123 request = (MainThreadRequest) ar.userObj;
124 if (ar.exception == null && ar.result != null) {
125 request.result = ar.result;
466 AsyncResult ar = (AsyncResult) msg.obj;
471 mResult = (ar.exception == null);
PhoneApp.java 1651 AsyncResult ar = (AsyncResult) msg.obj; local
1687 AsyncResult ar = (AsyncResult) msg.obj; local
    [all...]
PhoneUtils.java 124 AsyncResult ar = (AsyncResult) msg.obj; local
129 CallManager cm = (CallManager) ar.userObj;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 787 TypedArray ar = mContext.obtainStyledAttributes(attrs, local
    [all...]
  /external/clang/test/SemaCXX/
functional-cast.cpp 62 const int ar[100] = {0}; local
65 int *pi = intp(ar);
113 int ar[1]; local
115 (void)cintp(ar);
126 typedef A &Ar;
127 (void)Ar(*((B*)0));
  /external/elfutils/libelf/
libelfP.h 21 #include <ar.h>
355 } ar; member in union:Elf::__anon5731
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 348 TypedArray ar = mResources.obtainTypedArray( local
350 int N = preloadDrawables(runtime, ar);
355 ar = mResources.obtainTypedArray(
357 N = preloadColorStateLists(runtime, ar);
369 private static int preloadColorStateLists(VMRuntime runtime, TypedArray ar) {
370 int N = ar.length();
380 int id = ar.getResourceId(i, 0);
392 private static int preloadDrawables(VMRuntime runtime, TypedArray ar) {
393 int N = ar.length();
403 int id = ar.getResourceId(i, 0)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SMSDispatcher.java 238 AsyncResult ar; local
249 ar = (AsyncResult) msg.obj;
251 if (ar.exception != null) {
252 Log.e(TAG, "Exception processing incoming SMS. Exception:" + ar.exception);
256 sms = (SmsMessage) ar.result;
355 * @param ar AsyncResult passed into the message handler. ar.result should
356 * an SmsResponse instance if send was successful. ar.userObj
359 protected void handleSendComplete(AsyncResult ar) {
360 SmsTracker tracker = (SmsTracker) ar.userObj
    [all...]
DataConnection.java 285 AsyncResult ar = new AsyncResult(o, null, null); local
286 sendMessage(obtainMessage(EVENT_DEACTIVATE_DONE, ar));
320 * Send ar.userObj if its a message, which is should be back to originator.
484 * @param ar is the result
487 private DataCallState.SetupResult onSetupConnectionCompleted(AsyncResult ar) {
488 DataCallState response = (DataCallState) ar.result;
489 ConnectionParams cp = (ConnectionParams) ar.userObj;
492 if (ar.exception != null) {
494 log("onSetupConnectionCompleted failed, ar.exception=" + ar.exception
600 AsyncResult ar; local
876 AsyncResult ar; local
1078 AsyncResult ar = (AsyncResult) msg.obj; local
1115 AsyncResult ar = (AsyncResult) msg.obj; local
    [all...]
PhoneBase.java 276 AsyncResult ar; local
281 ar = (AsyncResult)msg.obj;
282 if (ar.exception == null) {
348 AsyncResult ar = new AsyncResult(null, this, null); local
349 mPreciseCallStateRegistrants.notifyRegistrants(ar);
503 AsyncResult ar = new AsyncResult(null, cn, null); local
504 mDisconnectRegistrants.notifyRegistrants(ar);
549 AsyncResult ar = new AsyncResult(null, ss, null); local
550 mServiceStateRegistrants.notifyRegistrants(ar);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
CatService.java 604 AsyncResult ar = (AsyncResult) msg.obj; local
605 if (ar != null && ar.result != null) {
607 data = (String) ar.result;
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 137 AsyncResult ar; local
308 ar = (AsyncResult) msg.obj;
309 cn = (Connection) ar.result;
600 ar = (AsyncResult) msg.obj;
601 cn = (Connection) ar.result;
1360 AsyncResult ar; local
1474 AsyncResult ar; local
1641 AsyncResult ar = (AsyncResult) msg.obj; local
1671 AsyncResult ar; local
1733 AsyncResult ar; local
1776 AsyncResult ar = (AsyncResult) msg.obj; local
1789 AsyncResult ar; local
1899 AsyncResult ar = (AsyncResult) msg.obj; local
    [all...]
  /frameworks/base/core/jni/
android_util_Binder.cpp 1363 jbyte* ar = (jbyte*)env->GetPrimitiveArrayCritical((jarray)data, 0); local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 517 ArrayList<Intent> ar = new ArrayList<Intent>(); local
519 ar.add(intent);
522 app.thread.scheduleNewIntent(ar, appToken);
    [all...]
  /hardware/msm7k/librpc/rpc/
types.h 313 struct rpc_accepted_reply_header ar; member in union:rpc_reply_header::__anon16305

Completed in 1806 milliseconds

1 23 4