Home
last modified time | relevance | path

Searched defs:atString (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/hfp/
DHeadsetStateMachineTest.java1030 String atString = "1"; in testAtBindWithDriverSafetyEventWhenConnecting() local
1055 String atString = "2"; in testAtBindEventWithBatteryLevelEventWhenConnecting() local
1080 String atString = "err,A,123,,1"; in testAtBindEventWithErrorEventWhenConnecting() local
1176 String atString = "\"command\""; in testParseUnknownAt() local
1183 String atString = "\"command"; in testParseUnknownAt_withUnmatchingQuotes() local
1190 String atString = "a\"command\""; in testParseUnknownAt_withCharOutsideQuotes() local
1278 String atString = "command=ERR"; in testProcessAtCpbr() local
1289 String atString = "command=ERR"; in testProcessAtCpbs() local
1300 String atString = "command=GSM"; in testProcessAtCscs() local
1353 String atString = "+CSCS=invalid"; in testProcessUnknownAt() local
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/hfpclient/
DVendorCommandResponseProcessorTest.java125 String atString = "+XAPL="; in processEvent_withNullDevice() local
139 String atString = "+XAPL="; in processEvent_withEqualSign() local
146 String atString = "+APLSIRI:"; in processEvent_withColonSign() local
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hfp/
DHeadsetStateMachine.java1572 String parseUnknownAt(String atString) { in parseUnknownAt()
1596 String atString = null; in getAtCommandType() local
1816 void processAtCscs(String atString, int type, BluetoothDevice device) { in processAtCscs()
1827 void processAtCpbs(String atString, int type, BluetoothDevice device) { in processAtCpbs()
1838 void processAtCpbr(String atString, int type, BluetoothDevice device) { in processAtCpbr()
1900 void processVendorSpecificAt(String atString, BluetoothDevice device) { in processVendorSpecificAt()
1941 private void processAndroidAt(String atString, BluetoothDevice device) { in processAndroidAt()
2085 void processUnknownAt(String atString, BluetoothDevice device) { in processUnknownAt()
2157 private void processAtBind(String atString, BluetoothDevice device) { in processAtBind()
DAtPhonebook.java168 public void handleCscsCommand(String atString, int type, BluetoothDevice device) { in handleCscsCommand()
213 public void handleCpbsCommand(String atString, int type, BluetoothDevice device) { in handleCpbsCommand()
282 void handleCpbrCommand(String atString, int type, BluetoothDevice remoteDevice) { in handleCpbrCommand()
DHeadsetNativeInterface.java184 private void onUnknownAt(String atString, byte[] address) { in onUnknownAt()
197 private void onATBind(String atString, byte[] address) { in onATBind()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hfpclient/
DVendorCommandResponseProcessor.java129 public boolean processEvent(String atString, BluetoothDevice device) { in processEvent()