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

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapUtils.java 48 * @param cpHandle content provider handle
52 static public String getMapHandle(long cpHandle, TYPE messageType){
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 = getMsgHandleAsLong(mapHandle)
    [all...]
BluetoothMapMessageListingElement.java 38 private long cpHandle = 0; /* The content provider handle - without type information */
58 return cpHandle;
62 this.cpHandle = handle;
63 this.mapHandle = BluetoothMapUtils.getMapHandle(cpHandle, type);

Completed in 508 milliseconds