HomeSort by relevance Sort by last modified time
    Searched refs:offsetChars (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 132 char[] offsetChars = offsetString.toCharArray();
133 scTime.write((offsetChars[1]-0x30) << 4 | 0x40 | (offsetChars[0]-0x30));
137 char[] offsetChars = offsetString.toCharArray();
138 scTime.write((offsetChars[1]-0x30) << 4 | (offsetChars[0]-0x30));
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 373 char[] offsetChars = offsetString.toCharArray();
374 header.write((offsetChars[1]-0x30) << 4 | 0x40 | (offsetChars[0]-0x30));
378 char[] offsetChars = offsetString.toCharArray();
379 header.write((offsetChars[1]-0x30) << 4 | (offsetChars[0]-0x30));
    [all...]

Completed in 187 milliseconds