OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CommandType
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
AppInterface.java
46
public static enum
CommandType
{
66
CommandType
(int value) {
75
* Create a
CommandType
object.
77
* @param value Integer value to be converted to a
CommandType
object.
78
* @return
CommandType
object whose "Type of Command" value is {@code
79
* value}. If no
CommandType
object has that value, null is
82
public static
CommandType
fromInt(int value) {
83
for (
CommandType
e :
CommandType
.values()) {
CommandParams.java
32
AppInterface.
CommandType
getCommandType() {
33
return AppInterface.
CommandType
.fromInt(cmdDet.typeOfCommand);
CatCmdMessage.java
148
public AppInterface.
CommandType
getCmdType() {
149
return AppInterface.
CommandType
.fromInt(mCmdDet.typeOfCommand);
ResponseData.java
26
import com.android.internal.telephony.cat.AppInterface.
CommandType
;
212
int tag = 0x80 |
CommandType
.PROVIDE_LOCAL_INFORMATION.value();
CatService.java
227
cmdParams.cmdDet.typeOfCommand =
CommandType
.SET_UP_IDLE_MODE_TEXT.value();
367
CommandType
cmdType = AppInterface.
CommandType
.fromInt(cmdDet.typeOfCommand);
649
switch (AppInterface.
CommandType
.fromInt(cmdDet.typeOfCommand)) {
CommandParamsFactory.java
116
AppInterface.
CommandType
cmdType = AppInterface.
CommandType
[
all
...]
/packages/apps/Stk/src/com/android/stk/
StkAppService.java
537
if ((mCurrentCmd.getCmdType().value() == AppInterface.
CommandType
.DISPLAY_TEXT
Completed in 24 milliseconds