Searched refs:cmdDet (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | CommandParamsFactory.java | 102 CommandDetails cmdDet = null; in processCommandDetails() local 110 cmdDet = ValueParser.retrieveCommandDetails(ctlvCmdDet); in processCommandDetails() 117 return cmdDet; in processCommandDetails() 135 CommandDetails cmdDet = processCommandDetails(ctlvs); in make() local 136 if (cmdDet == null) { in make() 144 .fromInt(cmdDet.typeOfCommand); in make() 148 mCmdParams = new CommandParams(cmdDet); in make() 155 mCmdParams = new CommandParams(cmdDet); in make() 163 cmdPending = processSelectItem(cmdDet, ctlvs); in make() 166 cmdPending = processSelectItem(cmdDet, ctlvs); in make() [all …]
|
D | CommandParams.java | 33 CommandParams(CommandDetails cmdDet) { in CommandParams() argument 34 mCmdDet = cmdDet; in CommandParams() 55 DisplayTextParams(CommandDetails cmdDet, TextMessage textMsg) { in DisplayTextParams() argument 56 super(cmdDet); in DisplayTextParams() 80 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, in LaunchBrowserParams() argument 82 super(cmdDet); in LaunchBrowserParams() 105 SetEventListParams(CommandDetails cmdDet, int[] eventInfo) { in SetEventListParams() argument 106 super(cmdDet); in SetEventListParams() 116 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, in PlayToneParams() argument 118 super(cmdDet); in PlayToneParams() [all …]
|
D | ValueParser.java | 44 CommandDetails cmdDet = new CommandDetails(); in retrieveCommandDetails() local 48 cmdDet.compRequired = ctlv.isComprehensionRequired(); in retrieveCommandDetails() 49 cmdDet.commandNumber = rawValue[valueIndex] & 0xff; in retrieveCommandDetails() 50 cmdDet.typeOfCommand = rawValue[valueIndex + 1] & 0xff; in retrieveCommandDetails() 51 cmdDet.commandQualifier = rawValue[valueIndex + 2] & 0xff; in retrieveCommandDetails() 52 return cmdDet; in retrieveCommandDetails()
|
D | CatService.java | 567 private void sendTerminalResponse(CommandDetails cmdDet, in sendTerminalResponse() argument 571 if (cmdDet == null) { in sendTerminalResponse() 583 if (cmdDet.compRequired) { in sendTerminalResponse() 588 buf.write(cmdDet.commandNumber); in sendTerminalResponse() 589 buf.write(cmdDet.typeOfCommand); in sendTerminalResponse() 590 buf.write(cmdDet.commandQualifier); in sendTerminalResponse() 607 if (cmdDet.compRequired) { in sendTerminalResponse() 624 encodeOptionalTags(cmdDet, resultCode, cmdInput, buf); in sendTerminalResponse() 636 private void encodeOptionalTags(CommandDetails cmdDet, in encodeOptionalTags() argument 638 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand); in encodeOptionalTags() [all …]
|