Searched refs:mapHandle (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapUtils.java53 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){ argument
81 return Long.parseLong(mapHandle, 16);
85 * @param mapHandle handl
88 getCpHandle(String mapHandle) argument
101 getMsgTypeFromHandle(String mapHandle) argument
[all...]
H A DBluetoothMapMessageListingElement.java39 private String mapHandle = null; /* The map hex-string handle with type information */ field in class:BluetoothMapMessageListingElement
63 this.mapHandle = BluetoothMapUtils.getMapHandle(cpHandle, type);
224 xmlMsgElement.attribute("", "handle", mapHandle);

Completed in 65 milliseconds