HomeSort by relevance Sort by last modified time
    Searched refs:CommandException (Results 1 - 25 of 28) 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 395 } else if ((((CommandException)(ar.exception)).getCommandError()
396 == CommandException.Error.SMS_FAIL_RETRY) &&
412 if (((CommandException)(ar.exception)).getCommandError()
413 == CommandException.Error.FDN_CHECK_FAILURE) {
    [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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 21 import com.android.internal.telephony.CommandException;
303 if (ar.exception instanceof CommandException) {
304 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
305 if (err == CommandException.Error.PASSWORD_INCORRECT) {
332 } else if (err == CommandException.Error.SIM_PUK2) {
338 } else if (err == CommandException.Error.REQUEST_NOT_SUPPORTED) {
CdmaServiceStateTracker.java 46 import com.android.internal.telephony.CommandException;
753 CommandException.Error err=null;
755 if (ar.exception instanceof CommandException) {
756 err = ((CommandException)(ar.exception)).getCommandError();
759 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
771 if (err != CommandException.Error.OP_NOT_ALLOWED_BEFORE_REG_NW) {
    [all...]
CDMAPhone.java 47 import com.android.internal.telephony.CommandException;
682 CommandException ce = new CommandException(
683 CommandException.Error.REQUEST_NOT_SUPPORTED);
    [all...]
  /packages/services/Telephony/src/com/android/phone/
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) {
FdnSetting.java 33 import com.android.internal.telephony.CommandException;
246 if (ar.exception != null && ar.exception instanceof CommandException) {
249 CommandException.Error e =
250 ((CommandException) ar.exception).getCommandError();
282 CommandException ce = (CommandException) ar.exception;
283 if (ce.getCommandError() == CommandException.Error.SIM_PUK2) {
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);
PhoneInterfaceManager.java 46 import com.android.internal.telephony.CommandException;
488 if (ar.exception instanceof CommandException &&
489 ((CommandException)(ar.exception)).getCommandError()
490 == CommandException.Error.PASSWORD_INCORRECT) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java     [all...]
GsmServiceStateTracker.java 56 import com.android.internal.telephony.CommandException;
594 CommandException.Error err=null;
596 if (ar.exception instanceof CommandException) {
597 err = ((CommandException)(ar.exception)).getCommandError();
600 if (err == CommandException.Error.RADIO_NOT_AVAILABLE) {
612 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;
657 if (ar.exception instanceof CommandException
658 && ((CommandException) (ar.exception)).getCommandError()
659 == CommandException.Error.RADIO_NOT_AVAILABLE) {
    [all...]

Completed in 334 milliseconds

1 2