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

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapUtilsTest.java 13 import com.android.bluetooth.map.BluetoothMapUtils;
48 assertTrue(BluetoothMapUtils.stripEncoding(encText1).equals(decText1));
49 assertTrue(BluetoothMapUtils.stripEncoding(encText2).equals(decText2));
50 assertTrue(BluetoothMapUtils.stripEncoding(encText3).equals(decText3));
51 assertTrue(BluetoothMapUtils.stripEncoding(encText4).equals(decText4));
52 assertTrue(BluetoothMapUtils.stripEncoding(encText5).equals(decText5));
53 assertTrue(BluetoothMapUtils.stripEncoding(encText6).equals(decText6));
55 BluetoothMapUtils.stripEncoding(encText7));
56 assertTrue(BluetoothMapUtils.stripEncoding(encText7).equals(decText7));
57 assertTrue(BluetoothMapUtils.stripEncoding(encText8).equals(decText8))
    [all...]
BluetoothMapbMessageTest.java 16 import com.android.bluetooth.map.BluetoothMapUtils;
17 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
543 output = new String(BluetoothMapUtils.quotedPrintableToUtf8(input, charset));
566 output = new String(BluetoothMapUtils.quotedPrintableToUtf8(input, charset));
BluetoothMapContentTest.java 37 import com.android.bluetooth.map.BluetoothMapUtils;
38 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
450 String handle = BluetoothMapUtils.getMapHandle(id, TYPE.EMAIL);
583 handleStr = BluetoothMapUtils.getLongAsString(i | HANDLE_TYPE_SMS_CDMA_MASK);
    [all...]
MapObexTestServer.java 21 import com.android.bluetooth.map.BluetoothMapUtils;
43 // BluetoothMapUtils.TYPE.IM,
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 21 import com.android.bluetooth.map.BluetoothMapUtils;
61 msb = BluetoothMapUtils.getLongFromString(msbStr);
63 lsb = BluetoothMapUtils.getLongFromString(lsbStr);
94 return BluetoothMapUtils.getLongLongAsString(mLeastSigBits, mMostSigBits);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
MapContact.java 46 return BluetoothMapUtils.getLongLongAsString(mId, 0);
BluetoothMapMessageListingElement.java 29 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
240 this.mThreadId = BluetoothMapUtils.getMapConvoHandle(threadId, type);
278 BluetoothMapUtils.getMapHandle(mCpHandle, mType));
280 String stripped = BluetoothMapUtils.stripInvalidChars(mSubject);
296 BluetoothMapUtils.stripInvalidChars(mSenderName));
303 BluetoothMapUtils.stripInvalidChars(mRecipientName));
BluetoothMapAccountItem.java 38 private final BluetoothMapUtils.TYPE mType;
45 Drawable icon, BluetoothMapUtils.TYPE appType, String uci, String uciPrefix) {
59 String authority, Drawable icon, BluetoothMapUtils.TYPE appType) {
65 String authority, Drawable icon, BluetoothMapUtils.TYPE appType, String uci,
200 public BluetoothMapUtils.TYPE getType() {
BluetoothMapAccountLoader.java 23 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
91 BluetoothMapUtils.TYPE msgType = (searchIntent.getAction().toString() ==
93 BluetoothMapUtils.TYPE.EMAIL : BluetoothMapUtils.TYPE.IM;
133 BluetoothMapUtils.TYPE type) {
BluetoothMapObexServer.java 32 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
107 private int mRemoteFeatureMask = BluetoothMapUtils.MAP_FEATURE_DEFAULT_BITMASK;
111 private String mMessageVersion = BluetoothMapUtils.MAP_V10_STR;
310 mMessageVersion = BluetoothMapUtils.MAP_V10_STR;//always assume version 1.0 to start with
357 if((mRemoteFeatureMask & BluetoothMapUtils.MAP_FEATURE_MESSAGE_LISTING_FORMAT_V11_BIT)
358 == BluetoothMapUtils.MAP_FEATURE_MESSAGE_LISTING_FORMAT_V11_BIT) {
362 if((mRemoteFeatureMask & BluetoothMapUtils.MAP_FEATURE_MESSAGE_FORMAT_V11_BIT)
363 == BluetoothMapUtils.MAP_FEATURE_MESSAGE_FORMAT_V11_BIT){
364 mMessageVersion = BluetoothMapUtils.MAP_V11_STR;
629 String handleStr = BluetoothMapUtils.getMapHandle(handle, message.getType())
    [all...]
BluetoothMapbMessageMime.java 106 text = BluetoothMapUtils.encodeQuotedPrintable(mData);
125 text = BluetoothMapUtils.encodeQuotedPrintable(mData);
524 headerValue = BluetoothMapUtils.stripEncoding(headerValue);
528 headerValue = BluetoothMapUtils.stripEncoding(headerValue);
532 headerValue = BluetoothMapUtils.stripEncoding(headerValue);
536 headerValue = BluetoothMapUtils.stripEncoding(headerValue);
540 headerValue = BluetoothMapUtils.stripEncoding(headerValue);
544 subject = BluetoothMapUtils.stripEncoding(headerValue);
660 return BluetoothMapUtils.quotedPrintableToUtf8(body, charset);
BluetoothMapContentObserver.java 58 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
133 private int mMapSupportedFeatures = BluetoothMapUtils.MAP_FEATURE_DEFAULT_BITMASK;
135 private int mMapEventReportVersion = BluetoothMapUtils.MAP_EVENT_REPORT_V10;
272 if((BluetoothMapUtils.MAP_FEATURE_EXTENDED_EVENT_REPORT_11_BIT
274 mMapEventReportVersion = BluetoothMapUtils.MAP_EVENT_REPORT_V11;
277 if((BluetoothMapUtils.MAP_FEATURE_EVENT_REPORT_V12_BIT
279 mMapEventReportVersion = BluetoothMapUtils.MAP_EVENT_REPORT_V12;
338 if ((BluetoothMapUtils.MAP_FEATURE_EXTENDED_EVENT_REPORT_11_BIT
340 mMapEventReportVersion = BluetoothMapUtils.MAP_EVENT_REPORT_V11;
343 if ((BluetoothMapUtils.MAP_FEATURE_EVENT_REPORT_V12_BI
    [all...]
BluetoothMapAppObserver.java 224 BluetoothMapUtils.TYPE msgType = BluetoothMapUtils.TYPE.NONE;
248 msgType = BluetoothMapUtils.TYPE.EMAIL;
251 msgType = BluetoothMapUtils.TYPE.IM;
BluetoothMapbMessageSms.java 23 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
BluetoothMapConvoListingElement.java 32 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
214 return new String(BluetoothMapUtils.truncateUtf8StringToBytearray(mSummary, 256),
254 BluetoothMapUtils.stripInvalidChars(mName));
BluetoothMapConvoContactElement.java 206 BluetoothMapUtils.stripInvalidChars(mDisplayName));
210 BluetoothMapUtils.stripInvalidChars(mName));
BluetoothMapMasInstance.java 29 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
102 private int mRemoteFeatureMask = BluetoothMapUtils.MAP_FEATURE_DEFAULT_BITMASK;
BluetoothMapAppParams.java 527 "MSB=" + BluetoothMapUtils.getLongAsString(appParamBuf.getLong(i)) +
528 ", LSB(+8)=" + BluetoothMapUtils.getLongAsString(appParamBuf.getLong(i+8)));
    [all...]
BluetoothMapContent.java 43 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
159 private String mMessageVersion = BluetoothMapUtils.MAP_V10_STR;
161 private int mRemoteFeatureMask = BluetoothMapUtils.MAP_FEATURE_DEFAULT_BITMASK;
162 private int mMsgListingVersion = BluetoothMapUtils.MAP_MESSAGE_LISTING_FORMAT_V10;
641 if( (mMsgListingVersion > BluetoothMapUtils.MAP_MESSAGE_LISTING_FORMAT_V10)
    [all...]
BluetoothMapFolderElement.java 272 xmlMsgElement.attribute(null, "version", BluetoothMapUtils.MAP_V10_STR);
BluetoothMapUtils.java 38 public class BluetoothMapUtils {
40 private static final String TAG = "BluetoothMapUtils";
BluetoothMapbMessage.java 31 import com.android.bluetooth.map.BluetoothMapUtils.TYPE;
    [all...]

Completed in 889 milliseconds