Searched defs:atString (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DAtPhonebook.java156 public void handleCscsCommand(String atString, int type, BluetoothDevice device) argument
158 log("handleCscsCommand - atString = " +atString);
176 String[] args = atString.split("=");
182 String characterSet = ((atString.split("="))[1]);
203 public void handleCpbsCommand(String atString, int type, BluetoothDevice device) { argument
205 log("handleCpbsCommand - atString = " +atString);
236 String[] args = atString.split("=");
264 public void handleCpbrCommand(String atString, in argument
[all...]
H A DHeadsetStateMachine.java2368 private String parseUnknownAt(String atString) argument
2370 StringBuilder atCommand = new StringBuilder(atString.length());
2373 for (int i = 0; i < atString.length(); i++) {
2374 char c = atString.charAt(i);
2376 int j = atString.indexOf('"', i + 1 ); // search for closing "
2378 atCommand.append(atString.substring(i, atString.length()));
2382 atCommand.append(atString.substring(i, j + 1));
2395 String atString = null;
2399 atString
2809 processAtCscs(String atString, int type, BluetoothDevice device) argument
2820 processAtCpbs(String atString, int type, BluetoothDevice device) argument
2831 processAtCpbr(String atString, int type, BluetoothDevice device) argument
2888 processVendorSpecificAt(String atString) argument
2921 processUnknownAt(String atString, BluetoothDevice device) argument
3087 onUnknownAt(String atString, byte[] address) argument
[all...]

Completed in 144 milliseconds