HomeSort by relevance Sort by last modified time
    Searched refs:CommandType (Results 1 - 12 of 12) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
AppInterface.java 47 public static enum CommandType {
72 CommandType(int value) {
81 * Create a CommandType object.
83 * @param value Integer value to be converted to a CommandType object.
84 * @return CommandType object whose "Type of Command" value is {@code
85 * value}. If no CommandType object has that value, null is
88 public static CommandType fromInt(int value) {
89 for (CommandType e : CommandType.values()) {
CatService.java 241 cmdParams.mCmdDet.typeOfCommand = CommandType.SET_UP_IDLE_MODE_TEXT.value();
313 if (cmdParams.getCommandType() == CommandType.OPEN_CHANNEL) {
338 ((cmdParams.getCommandType() == CommandType.CLOSE_CHANNEL) ||
339 (cmdParams.getCommandType() == CommandType.RECEIVE_DATA) ||
340 (cmdParams.getCommandType() == CommandType.SEND_DATA))) {
434 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
680 AppInterface.CommandType type = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
742 if (type == CommandType.SET_UP_CALL || type == CommandType.OPEN_CHANNEL)
    [all...]
CatCmdMessage.java 171 public AppInterface.CommandType getCmdType() {
172 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
CommandParams.java 32 AppInterface.CommandType getCommandType() {
33 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
ResponseData.java 26 import com.android.internal.telephony.cat.AppInterface.CommandType;
215 int tag = 0x80 | CommandType.PROVIDE_LOCAL_INFORMATION.value();
CommandParamsFactory.java 117 AppInterface.CommandType cmdType = AppInterface.CommandType
    [all...]
  /external/chromium_org/chrome/test/webdriver/
webdriver_dispatch.h 82 // service. |CommandType| must be a subtype of |webdriver::Command|.
83 template<typename CommandType>
98 new CommandType(path_segments, parameters),
119 // The |CommandType| must be a subtype of |webdriver::Command|.
120 template<typename CommandType>
158 template <typename CommandType>
160 AddCallback(url_base_ + pattern, &Dispatch<CommandType>, NULL);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.h 39 NCommandType::EEnum CommandType;
42 bool IsTestMode() const { return CommandType == NCommandType::kTest; }
ArchiveCommandLine.cpp 206 switch(CommandType)
219 switch(CommandType)
231 return (CommandType == NCommandType::kAdd ||
232 CommandType == NCommandType::kUpdate ||
233 CommandType == NCommandType::kDelete);
258 command.CommandType = (NCommandType::EEnum)commandIndex;
618 NCommandType::EEnum commandType,
623 switch(commandType)
853 options.Command.CommandType != NCommandType::kBenchmark &&
854 options.Command.CommandType != NCommandType::kInfo;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
soundcommon.h 42 }CommandType;
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 239 options.Command.CommandType == NCommandType::kList ||
247 if (options.Command.CommandType == NCommandType::kInfo)
339 else if (options.Command.CommandType == NCommandType::kBenchmark)
379 else if (isExtractGroupCommand || options.Command.CommandType == NCommandType::kList)
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 584 if ((mCurrentCmd.getCmdType().value() == AppInterface.CommandType.DISPLAY_TEXT
605 if (mCurrentCmd.getCmdType().value() == AppInterface.CommandType.OPEN_CHANNEL
    [all...]

Completed in 738 milliseconds