Home
last modified time | relevance | path

Searched refs:CommandType (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DAppInterface.java78 enum CommandType { enum
127 CommandType(int value) { in CommandType() method in AppInterface.CommandType
144 public static CommandType fromInt(int value) { in fromInt()
145 for (CommandType e : CommandType.values()) { in fromInt()
DCatService.java505 } else if (cmdParams.getCommandType() == CommandType.OPEN_CHANNEL) { in handleCommand()
527 ((cmdParams.getCommandType() == CommandType.CLOSE_CHANNEL) || in handleCommand()
528 (cmdParams.getCommandType() == CommandType.RECEIVE_DATA) || in handleCommand()
529 (cmdParams.getCommandType() == CommandType.SEND_DATA))) { in handleCommand()
638 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand); in encodeOptionalTags()
947 if ((resMsg.mCmdDet.typeOfCommand == CommandType.SET_UP_EVENT_LIST.value()) in validateResponse()
948 || (resMsg.mCmdDet.typeOfCommand == CommandType.SET_UP_MENU.value())) { in validateResponse()
993 AppInterface.CommandType type = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand); in handleCmdResponse()
1082 if (type == CommandType.SET_UP_CALL || type == CommandType.OPEN_CHANNEL) { in handleCmdResponse()
1093 if (type == CommandType.SET_UP_CALL) { in handleCmdResponse()
DCommandParams.java38 AppInterface.CommandType getCommandType() { in getCommandType()
39 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand); in getCommandType()
DCommandParamsFactory.java143 AppInterface.CommandType cmdType = AppInterface.CommandType in make()
598 AppInterface.CommandType cmdType = AppInterface.CommandType in processSelectItem()
605 } else if (cmdType == AppInterface.CommandType.SET_UP_MENU) { in processSelectItem()
1066 AppInterface.CommandType commandType = in processBIPClient()
1067 AppInterface.CommandType.fromInt(cmdDet.typeOfCommand); in processBIPClient()
DResponseData.java25 import com.android.internal.telephony.cat.AppInterface.CommandType;
233 int tag = 0x80 | CommandType.PROVIDE_LOCAL_INFORMATION.value(); in format()
DCatCmdMessage.java219 public AppInterface.CommandType getCmdType() { in getCmdType()
220 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand); in getCmdType()
/frameworks/av/services/camera/libcameraservice/device1/
DCameraHardwareInterface.cpp700 mHidlDevice->sendCommand((CommandType) cmd, arg1, arg2)); in sendCommand()