OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CommandException
(Results
1 - 25
of
31
) sorted by null
1
2
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
CommandException.java
26
public class
CommandException
extends RuntimeException {
50
public
CommandException
(Error e) {
55
public static
CommandException
60
return new
CommandException
(Error.INVALID_RESPONSE);
62
return new
CommandException
(Error.RADIO_NOT_AVAILABLE);
64
return new
CommandException
(Error.GENERIC_FAILURE);
66
return new
CommandException
(Error.PASSWORD_INCORRECT);
68
return new
CommandException
(Error.SIM_PIN2);
70
return new
CommandException
(Error.SIM_PUK2);
72
return new
CommandException
(Error.REQUEST_NOT_SUPPORTED)
[
all
...]
CallTracker.java
24
import com.android.internal.telephony.
CommandException
;
89
return e != null && e instanceof
CommandException
90
&& ((
CommandException
)e).getCommandError()
91
==
CommandException
.Error.RADIO_NOT_AVAILABLE;
SMSDispatcher.java
382
} else if ((((
CommandException
)(ar.exception)).getCommandError()
383
==
CommandException
.Error.SMS_FAIL_RETRY) &&
402
if (((
CommandException
)(ar.exception)).getCommandError()
403
==
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
;
118
CommandException
ex = new
CommandException
(
119
CommandException
.Error.PASSWORD_INCORRECT);
149
CommandException
ex = new
CommandException
(
150
CommandException
.Error.PASSWORD_INCORRECT);
161
CommandException
ex = new
CommandException
(
162
CommandException
.Error.PASSWORD_INCORRECT)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java
21
import com.android.internal.telephony.
CommandException
;
309
if (ar.exception instanceof
CommandException
) {
310
CommandException
.Error err = ((
CommandException
)(ar.exception)).getCommandError();
311
if (err ==
CommandException
.Error.PASSWORD_INCORRECT) {
338
} else if (err ==
CommandException
.Error.SIM_PUK2) {
344
} else if (err ==
CommandException
.Error.REQUEST_NOT_SUPPORTED) {
CdmaServiceStateTracker.java
48
import com.android.internal.telephony.
CommandException
;
789
CommandException
.Error err=null;
791
if (ar.exception instanceof
CommandException
) {
792
err = ((
CommandException
)(ar.exception)).getCommandError();
795
if (err ==
CommandException
.Error.RADIO_NOT_AVAILABLE) {
[
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
40
import com.android.internal.telephony.
CommandException
;
353
if ((ex != null && ex instanceof
CommandException
) &&
354
((
CommandException
)ex).getCommandError()
355
==
CommandException
.Error.ILLEGAL_SIM_OR_ME)
PhoneInterfaceManager.java
54
import com.android.internal.telephony.
CommandException
;
62
import com.android.internal.telephony.
CommandException
;
293
} else if (ar.exception instanceof
CommandException
) {
294
loge("iccTransmitApduLogicalChannel:
CommandException
: " +
332
} else if (ar.exception instanceof
CommandException
) {
333
loge("iccTransmitApduBasicChannel:
CommandException
: " +
398
} else if (ar.exception instanceof
CommandException
) {
399
loge("sendEnvelopeWithStatus:
CommandException
: " +
449
if ((ar.exception != null) && (ar.exception instanceof
CommandException
)) {
498
} else if (ar.exception instanceof
CommandException
) {
[
all
...]
CallForwardEditPreference.java
4
import com.android.internal.telephony.
CommandException
;
198
(
CommandException
) ar.exception);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java
73
import com.android.internal.telephony.
CommandException
;
792
new
CommandException
(
CommandException
.Error.GENERIC_FAILURE));
816
CommandException
getCommandException(int code) {
818
CommandException
.Error error =
CommandException
.Error.GENERIC_FAILURE;
822
error =
CommandException
.Error.REQUEST_NOT_SUPPORTED;
825
error =
CommandException
.Error.PASSWORD_INCORRECT;
831
return new
CommandException
(error);
835
CommandException
getCommandException(Throwable e)
[
all
...]
ImsPhoneMmiCode.java
35
import com.android.internal.telephony.
CommandException
;
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java
[
all
...]
GsmServiceStateTracker.java
57
import com.android.internal.telephony.
CommandException
;
668
CommandException
.Error err=null;
670
if (ar.exception instanceof
CommandException
) {
671
err = ((
CommandException
)(ar.exception)).getCommandError();
674
if (err ==
CommandException
.Error.RADIO_NOT_AVAILABLE) {
686
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
Completed in 426 milliseconds
1
2