Searched refs:cmdDet (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParams.java30 CommandParams(CommandDetails cmdDet) { argument
31 mCmdDet = cmdDet;
49 DisplayTextParams(CommandDetails cmdDet, TextMessage textMsg) { argument
50 super(cmdDet);
74 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, argument
76 super(cmdDet);
99 SetEventListParams(CommandDetails cmdDet, int[] eventInfo) { argument
100 super(cmdDet);
109 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, argument
111 super(cmdDet);
130 CallSetupParams(CommandDetails cmdDet, TextMessage confirmMsg, TextMessage callMsg) argument
157 SelectItemParams(CommandDetails cmdDet, Menu menu, boolean loadTitleIcon) argument
186 GetInputParams(CommandDetails cmdDet, Input input) argument
212 BIPClientParams(CommandDetails cmdDet, TextMessage textMsg, boolean has_alpha_id) argument
[all...]
H A DCommandParamsFactory.java102 CommandDetails cmdDet = null;
110 cmdDet = ValueParser.retrieveCommandDetails(ctlvCmdDet);
117 return cmdDet;
135 CommandDetails cmdDet = processCommandDetails(ctlvs);
136 if (cmdDet == null) {
144 .fromInt(cmdDet.typeOfCommand);
148 mCmdParams = new CommandParams(cmdDet);
155 mCmdParams = new CommandParams(cmdDet);
163 cmdPending = processSelectItem(cmdDet, ctlvs);
166 cmdPending = processSelectItem(cmdDet, ctlv
326 processDisplayText(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
388 processSetUpIdleModeText(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
438 processGetInkey(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
496 processGetInput(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
573 processRefresh(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
602 processSelectItem(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
701 processEventNotify(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
742 processSetUpEventList(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
792 processLaunchBrowser(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
865 processPlayTone(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
931 processSetupCall(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
983 processProvideLocalInfo(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
1003 processBIPClient(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
[all...]
H A DValueParser.java42 CommandDetails cmdDet = new CommandDetails();
46 cmdDet.compRequired = ctlv.isComprehensionRequired();
47 cmdDet.commandNumber = rawValue[valueIndex] & 0xff;
48 cmdDet.typeOfCommand = rawValue[valueIndex + 1] & 0xff;
49 cmdDet.commandQualifier = rawValue[valueIndex + 2] & 0xff;
50 return cmdDet;
H A DCatService.java534 private void sendTerminalResponse(CommandDetails cmdDet, argument
538 if (cmdDet == null) {
550 if (cmdDet.compRequired) {
555 buf.write(cmdDet.commandNumber);
556 buf.write(cmdDet.typeOfCommand);
557 buf.write(cmdDet.commandQualifier);
574 if (cmdDet.compRequired) {
591 encodeOptionalTags(cmdDet, resultCode, cmdInput, buf);
603 private void encodeOptionalTags(CommandDetails cmdDet, argument
605 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet
[all...]

Completed in 67 milliseconds