Lines Matching defs:ar

1033         AsyncResult ar;
1037 ar = (AsyncResult) (msg.obj);
1039 onSetComplete(msg, ar);
1043 ar = (AsyncResult) (msg.obj);
1049 if ((ar.exception == null) && (msg.arg1 == 1)) {
1056 onSetComplete(msg, ar);
1060 ar = (AsyncResult) (msg.obj);
1061 onQueryCfComplete(ar);
1065 ar = (AsyncResult) (msg.obj);
1066 onQueryComplete(ar);
1070 ar = (AsyncResult) (msg.obj);
1072 if (ar.exception != null) {
1074 mMessage = getErrorMessage(ar);
1091 ar = (AsyncResult) (msg.obj);
1092 onSuppSvcQueryComplete(ar);
1096 ar = (AsyncResult) (msg.obj);
1097 onIcbQueryComplete(ar);
1101 ar = (AsyncResult) (msg.obj);
1102 onQueryClirComplete(ar);
1133 private CharSequence getErrorMessage(AsyncResult ar) {
1166 onSetComplete(Message msg, AsyncResult ar){
1170 if (ar.exception != null) {
1173 if (ar.exception instanceof CommandException) {
1174 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
1183 ImsException error = (ImsException) ar.exception;
1187 sb.append(getErrorMessage(ar));
1312 onQueryCfComplete(AsyncResult ar) {
1316 if (ar.exception != null) {
1319 if (ar.exception instanceof ImsException) {
1320 ImsException error = (ImsException) ar.exception;
1324 sb.append(getErrorMessage(ar));
1328 sb.append(getErrorMessage(ar));
1333 infos = (CallForwardInfo[]) ar.result;
1376 private void onSuppSvcQueryComplete(AsyncResult ar) {
1380 if (ar.exception != null) {
1383 if (ar.exception instanceof ImsException) {
1384 ImsException error = (ImsException) ar.exception;
1388 sb.append(getErrorMessage(ar));
1391 sb.append(getErrorMessage(ar));
1396 if (ar.result instanceof Bundle) {
1399 Bundle ssInfoResp = (Bundle) ar.result;
1419 int[] cbInfos = (int[]) ar.result;
1434 private void onIcbQueryComplete(AsyncResult ar) {
1439 if (ar.exception != null) {
1442 if (ar.exception instanceof ImsException) {
1443 ImsException error = (ImsException) ar.exception;
1447 sb.append(getErrorMessage(ar));
1450 sb.append(getErrorMessage(ar));
1453 ImsSsInfo[] infos = (ImsSsInfo[])ar.result;
1476 private void onQueryClirComplete(AsyncResult ar) {
1481 if (ar.exception != null) {
1483 if (ar.exception instanceof ImsException) {
1484 ImsException error = (ImsException) ar.exception;
1488 sb.append(getErrorMessage(ar));
1492 Bundle ssInfo = (Bundle) ar.result;
1571 onQueryComplete(AsyncResult ar) {
1575 if (ar.exception != null) {
1578 if (ar.exception instanceof ImsException) {
1579 ImsException error = (ImsException) ar.exception;
1583 sb.append(getErrorMessage(ar));
1586 sb.append(getErrorMessage(ar));
1590 int[] ints = (int[])ar.result;