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

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CommandException.java 26 public class CommandException extends RuntimeException {
47 public CommandException(Error e) {
52 public static CommandException
57 return new CommandException(Error.INVALID_RESPONSE);
59 return new CommandException(Error.RADIO_NOT_AVAILABLE);
61 return new CommandException(Error.GENERIC_FAILURE);
63 return new CommandException(Error.PASSWORD_INCORRECT);
65 return new CommandException(Error.SIM_PIN2);
67 return new CommandException(Error.SIM_PUK2);
69 return new CommandException(Error.REQUEST_NOT_SUPPORTED)
    [all...]
CallTracker.java 24 import com.android.internal.telephony.CommandException;
85 return e != null && e instanceof CommandException
86 && ((CommandException)e).getCommandError()
87 == CommandException.Error.RADIO_NOT_AVAILABLE;
SMSDispatcher.java 467 } else if ((((CommandException)(ar.exception)).getCommandError()
468 == CommandException.Error.SMS_FAIL_RETRY) &&
484 if (((CommandException)(ar.exception)).getCommandError()
485 == CommandException.Error.FDN_CHECK_FAILURE) {
    [all...]
RIL.java 185 CommandException ex;
187 ex = CommandException.fromRilErrno(error);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 26 import com.android.internal.telephony.CommandException;
117 CommandException ex = new CommandException(
118 CommandException.Error.PASSWORD_INCORRECT);
148 CommandException ex = new CommandException(
149 CommandException.Error.PASSWORD_INCORRECT);
160 CommandException ex = new CommandException(
161 CommandException.Error.PASSWORD_INCORRECT)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
FdnSetting.java 33 import com.android.internal.telephony.CommandException;
248 CommandException ce = (CommandException) ar.exception;
249 if (ce.getCommandError() == CommandException.Error.SIM_PUK2) {
270 CommandException ce = (CommandException) ar.exception;
271 if (ce.getCommandError() == CommandException.Error.SIM_PUK2) {
TimeConsumingPreferenceActivity.java 3 import com.android.internal.telephony.CommandException;
20 public void onException(Preference preference, CommandException exception);
179 public void onException(Preference preference, CommandException exception) {
180 if (exception.getCommandError() == CommandException.Error.FDN_CHECK_FAILURE) {
ChangeIccPinScreen.java 37 import com.android.internal.telephony.CommandException;
251 } else if (ar.exception instanceof CommandException
252 /* && ((CommandException)ar.exception).getCommandError() ==
253 CommandException.Error.PASSWORD_INCORRECT */ ) {
258 CommandException ce = (CommandException) ar.exception;
259 if (ce.getCommandError() == CommandException.Error.SIM_PUK2) {
268 //should really check to see if the error is CommandException.PASSWORD_INCORRECT...
CLIRListPreference.java 4 import com.android.internal.telephony.CommandException;
139 mTcpListener.onException(CLIRListPreference.this, (CommandException) ar.exception);
CallWaitingCheckBoxPreference.java 3 import com.android.internal.telephony.CommandException;
96 (CommandException)ar.exception);
EnableFdnScreen.java 32 import com.android.internal.telephony.CommandException;
119 } else if (ar.exception instanceof CommandException
120 /* && ((CommandException)ar.exception).getCommandError() ==
121 CommandException.Error.GENERIC_FAILURE */ ) {
EnableIccPinScreen.java 32 import com.android.internal.telephony.CommandException;
114 } else if (ar.exception instanceof CommandException
115 /* && ((CommandException)ar.exception).getCommandError() ==
116 CommandException.Error.GENERIC_FAILURE */ ) {
NetworkSetting.java 39 import com.android.internal.telephony.CommandException;
340 if ((ex != null && ex instanceof CommandException) &&
341 ((CommandException)ex).getCommandError()
342 == CommandException.Error.ILLEGAL_SIM_OR_ME)
CallForwardEditPreference.java 4 import com.android.internal.telephony.CommandException;
198 (CommandException) ar.exception);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 21 import com.android.internal.telephony.CommandException;
270 if (ar.exception instanceof CommandException) {
271 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
272 if (err == CommandException.Error.PASSWORD_INCORRECT) {
CdmaServiceStateTracker.java 46 import com.android.internal.telephony.CommandException;
747 CommandException.Error err=null;
749 if (ar.exception instanceof CommandException) {
750 err = ((CommandException)(ar.exception)).getCommandError();
753 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
765 if (err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW) {
    [all...]
CDMAPhone.java 45 import com.android.internal.telephony.CommandException;
654 CommandException ce = new CommandException(
655 CommandException.Error.REQUEST_NOT_SUPPORTED);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java     [all...]
GsmServiceStateTracker.java 56 import com.android.internal.telephony.CommandException;
583 CommandException.Error err=null;
585 if (ar.exception instanceof CommandException) {
586 err = ((CommandException)(ar.exception)).getCommandError();
589 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
601 if (err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnection.java 20 import com.android.internal.telephony.CommandException;
655 if (ar.exception instanceof CommandException
656 && ((CommandException) (ar.exception)).getCommandError()
657 == CommandException.Error.RADIO_NOT_AVAILABLE) {
    [all...]

Completed in 226 milliseconds

1 2