Lines Matching refs:ar

976         AsyncResult ar;
980 ar = (AsyncResult) (msg.obj);
982 onSetComplete(msg, ar);
986 ar = (AsyncResult) (msg.obj);
992 if ((ar.exception == null) && (msg.arg1 == 1)) {
999 onSetComplete(msg, ar);
1003 ar = (AsyncResult) (msg.obj);
1004 onQueryCfComplete(ar);
1008 ar = (AsyncResult) (msg.obj);
1009 onQueryComplete(ar);
1013 ar = (AsyncResult) (msg.obj);
1015 if (ar.exception != null) {
1017 mMessage = getErrorMessage(ar);
1034 ar = (AsyncResult) (msg.obj);
1035 onSuppSvcQueryComplete(ar);
1039 ar = (AsyncResult) (msg.obj);
1040 onQueryClirComplete(ar);
1070 private CharSequence getErrorMessage(AsyncResult ar) {
1099 onSetComplete(Message msg, AsyncResult ar){
1103 if (ar.exception != null) {
1106 if (ar.exception instanceof CommandException) {
1107 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
1116 ImsException error = (ImsException) ar.exception;
1120 sb.append(getErrorMessage(ar));
1245 onQueryCfComplete(AsyncResult ar) {
1249 if (ar.exception != null) {
1252 if (ar.exception instanceof ImsException) {
1253 ImsException error = (ImsException) ar.exception;
1257 sb.append(getErrorMessage(ar));
1261 sb.append(getErrorMessage(ar));
1266 infos = (CallForwardInfo[]) ar.result;
1309 private void onSuppSvcQueryComplete(AsyncResult ar) {
1313 if (ar.exception != null) {
1316 if (ar.exception instanceof ImsException) {
1317 ImsException error = (ImsException) ar.exception;
1321 sb.append(getErrorMessage(ar));
1324 sb.append(getErrorMessage(ar));
1329 if (ar.result instanceof Bundle) {
1332 Bundle ssInfoResp = (Bundle) ar.result;
1352 int[] cbInfos = (int[]) ar.result;
1370 private void onQueryClirComplete(AsyncResult ar) {
1375 if (ar.exception != null) {
1377 if (ar.exception instanceof ImsException) {
1378 ImsException error = (ImsException) ar.exception;
1382 sb.append(getErrorMessage(ar));
1386 Bundle ssInfo = (Bundle) ar.result;
1465 onQueryComplete(AsyncResult ar) {
1469 if (ar.exception != null) {
1472 if (ar.exception instanceof ImsException) {
1473 ImsException error = (ImsException) ar.exception;
1477 sb.append(getErrorMessage(ar));
1480 sb.append(getErrorMessage(ar));
1484 int[] ints = (int[])ar.result;