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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParams.java28 CommandParams(CommandDetails cmdDet) { argument
29 mCmdDet = cmdDet;
47 DisplayTextParams(CommandDetails cmdDet, TextMessage textMsg) { argument
48 super(cmdDet);
72 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, argument
74 super(cmdDet);
97 SetEventListParams(CommandDetails cmdDet, int[] eventInfo) { argument
98 super(cmdDet);
107 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, argument
109 super(cmdDet);
128 CallSetupParams(CommandDetails cmdDet, TextMessage confirmMsg, TextMessage callMsg) argument
155 SelectItemParams(CommandDetails cmdDet, Menu menu, boolean loadTitleIcon) argument
184 GetInputParams(CommandDetails cmdDet, Input input) argument
210 BIPClientParams(CommandDetails cmdDet, TextMessage textMsg, boolean has_alpha_id) argument
[all...]
H A DCommandParamsFactory.java101 CommandDetails cmdDet = null;
109 cmdDet = ValueParser.retrieveCommandDetails(ctlvCmdDet);
116 return cmdDet;
134 CommandDetails cmdDet = processCommandDetails(ctlvs);
135 if (cmdDet == null) {
143 .fromInt(cmdDet.typeOfCommand);
147 mCmdParams = new CommandParams(cmdDet);
154 mCmdParams = new CommandParams(cmdDet);
162 cmdPending = processSelectItem(cmdDet, ctlvs);
165 cmdPending = processSelectItem(cmdDet, ctlv
312 processDisplayText(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
373 processSetUpIdleModeText(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
415 processGetInkey(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
472 processGetInput(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
548 processRefresh(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
577 processSelectItem(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
674 processEventNotify(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
714 processSetUpEventList(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
764 processLaunchBrowser(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
837 processPlayTone(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
903 processSetupCall(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
955 processProvideLocalInfo(CommandDetails cmdDet, List<ComprehensionTlv> ctlvs) argument
975 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.java529 private void sendTerminalResponse(CommandDetails cmdDet, argument
533 if (cmdDet == null) {
545 if (cmdDet.compRequired) {
550 buf.write(cmdDet.commandNumber);
551 buf.write(cmdDet.typeOfCommand);
552 buf.write(cmdDet.commandQualifier);
569 if (cmdDet.compRequired) {
586 encodeOptionalTags(cmdDet, resultCode, cmdInput, buf);
598 private void encodeOptionalTags(CommandDetails cmdDet, argument
600 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet
[all...]

Completed in 47 milliseconds