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

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapUtils.java 53 String mapHandle = "-1";
57 mapHandle = String.format("%016X",(cpHandle | HANDLE_TYPE_MMS_MASK));
60 mapHandle = String.format("%016X",cpHandle | HANDLE_TYPE_SMS_GSM_MASK);
63 mapHandle = String.format("%016X",cpHandle | HANDLE_TYPE_SMS_CDMA_MASK);
66 mapHandle = String.format("%016X",(cpHandle | HANDLE_TYPE_EMAIL_MASK)); //TODO correct when email support is implemented
71 return mapHandle;
77 * @param mapHandle the handle string
80 static public long getMsgHandleAsLong(String mapHandle){
81 return Long.parseLong(mapHandle, 16);
85 * @param mapHandle handle to convert fro
    [all...]
BluetoothMapMessageListingElement.java 39 private String mapHandle = null; /* The map hex-string handle with type information */
63 this.mapHandle = BluetoothMapUtils.getMapHandle(cpHandle, type);
224 xmlMsgElement.attribute("", "handle", mapHandle);

Completed in 497 milliseconds