Searched refs:CommandType (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DAppInterface.java47 public static enum CommandType { enum in interface:AppInterface
71 CommandType(int value) { method in class:AppInterface.CommandType
80 * Create a CommandType object.
82 * @param value Integer value to be converted to a CommandType object.
83 * @return CommandType object whose "Type of Command" value is {@code
84 * value}. If no CommandType object has that value, null is
87 public static CommandType fromInt(int value) {
88 for (CommandType e : CommandType.values()) {
H A DCatCmdMessage.java155 public AppInterface.CommandType getCmdType() {
156 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
H A DCommandParams.java32 AppInterface.CommandType getCommandType() {
33 return AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
H A DCatService.java240 cmdParams.cmdDet.typeOfCommand = CommandType.SET_UP_IDLE_MODE_TEXT.value();
321 ((cmdParams.getCommandType() == CommandType.CLOSE_CHANNEL) ||
322 (cmdParams.getCommandType() == CommandType.RECEIVE_DATA) ||
323 (cmdParams.getCommandType() == CommandType.SEND_DATA))) {
417 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
722 switch (AppInterface.CommandType.fromInt(cmdDet.typeOfCommand)) {
H A DResponseData.java26 import com.android.internal.telephony.cat.AppInterface.CommandType;
215 int tag = 0x80 | CommandType.PROVIDE_LOCAL_INFORMATION.value();
H A DCommandParamsFactory.java117 AppInterface.CommandType cmdType = AppInterface.CommandType
907 AppInterface.CommandType commandType =
908 AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);

Completed in 48 milliseconds