Searched refs:cmdDet (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | CommandParamsFactory.java | 135 CommandDetails cmdDet = null; in processCommandDetails() local 143 cmdDet = ValueParser.retrieveCommandDetails(ctlvCmdDet); in processCommandDetails() 150 return cmdDet; in processCommandDetails() 168 CommandDetails cmdDet = processCommandDetails(ctlvs); in make() local 169 if (cmdDet == null) { in make() 177 .fromInt(cmdDet.typeOfCommand); in make() 181 mCmdParams = new CommandParams(cmdDet); in make() 188 mCmdParams = new CommandParams(cmdDet); in make() 196 cmdPending = processSelectItem(cmdDet, ctlvs); in make() 199 cmdPending = processSelectItem(cmdDet, ctlvs); in make() [all …]
|
D | CommandParams.java | 34 public CommandParams(CommandDetails cmdDet) { in CommandParams() argument 35 mCmdDet = cmdDet; in CommandParams() 56 DisplayTextParams(CommandDetails cmdDet, TextMessage textMsg) { in DisplayTextParams() argument 57 super(cmdDet); in DisplayTextParams() 81 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, in LaunchBrowserParams() argument 83 super(cmdDet); in LaunchBrowserParams() 106 SetEventListParams(CommandDetails cmdDet, int[] eventInfo) { in SetEventListParams() argument 107 super(cmdDet); in SetEventListParams() 117 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, in PlayToneParams() argument 119 super(cmdDet); in PlayToneParams() [all …]
|
D | SendSMSParams.java | 25 SendSMSParams(CommandDetails cmdDet, TextMessage textMsg, TextMessage destAddress, in SendSMSParams() argument 27 super(cmdDet); in SendSMSParams()
|
D | ValueParser.java | 51 CommandDetails cmdDet = new CommandDetails(); in retrieveCommandDetails() local 55 cmdDet.compRequired = ctlv.isComprehensionRequired(); in retrieveCommandDetails() 56 cmdDet.commandNumber = rawValue[valueIndex] & 0xff; in retrieveCommandDetails() 57 cmdDet.typeOfCommand = rawValue[valueIndex + 1] & 0xff; in retrieveCommandDetails() 58 cmdDet.commandQualifier = rawValue[valueIndex + 2] & 0xff; in retrieveCommandDetails() 59 return cmdDet; in retrieveCommandDetails()
|
D | CatService.java | 734 private void sendTerminalResponse(CommandDetails cmdDet, in sendTerminalResponse() argument 738 if (cmdDet == null) { in sendTerminalResponse() 750 if (cmdDet.compRequired) { in sendTerminalResponse() 755 buf.write(cmdDet.commandNumber); in sendTerminalResponse() 756 buf.write(cmdDet.typeOfCommand); in sendTerminalResponse() 757 buf.write(cmdDet.commandQualifier); in sendTerminalResponse() 774 if (cmdDet.compRequired) { in sendTerminalResponse() 791 encodeOptionalTags(cmdDet, resultCode, cmdInput, buf); in sendTerminalResponse() 803 private void encodeOptionalTags(CommandDetails cmdDet, in encodeOptionalTags() argument 805 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand); in encodeOptionalTags() [all …]
|