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

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapUtils.java48 * @param cpHandle content provider handle
52 static public String getMapHandle(long cpHandle, TYPE messageType){ argument
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
90 long cpHandle = getMsgHandleAsLong(mapHandle);
92 cpHandle &= ~HANDLE_TYPE_MASK;
93 return cpHandle;
102 long cpHandle
[all...]
H A DBluetoothMapMessageListingElement.java38 private long cpHandle = 0; /* The content provider handle - without type information */ field in class:BluetoothMapMessageListingElement
58 return cpHandle;
62 this.cpHandle = handle;
63 this.mapHandle = BluetoothMapUtils.getMapHandle(cpHandle, type);

Completed in 50 milliseconds