Home
last modified time | relevance | path

Searched refs:SignedLongLong (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/
DSignedLongLong.java29 public class SignedLongLong implements Comparable<SignedLongLong> { class
34 public SignedLongLong(long leastSigBits, long mostSigBits) { in SignedLongLong() method in SignedLongLong
45 public static SignedLongLong fromString(String value) throws UnsupportedEncodingException { in fromString()
66 return new SignedLongLong(lsb, msb); in fromString()
70 public int compareTo(SignedLongLong another) { in compareTo()
110 SignedLongLong other = (SignedLongLong) obj; in equals()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapConvoContactElement.java19 import com.android.bluetooth.SignedLongLong;
59 private SignedLongLong mBtUid = null;
67 newElement.mBtUid = new SignedLongLong(contact.getId(), 0); in createFromMapContact()
86 this.mBtUid = SignedLongLong.fromString(btUid); in BluetoothMapConvoContactElement()
141 public void setBtUid(SignedLongLong btUid) { in setBtUid()
265 newElement.setBtUid(SignedLongLong.fromString(attributeValue)); in createFromXml()
DMapContact.java17 import com.android.bluetooth.SignedLongLong;
51 public SignedLongLong getXBtUid() { in getXBtUid()
53 return new SignedLongLong(mId, 0); in getXBtUid()
DBluetoothMapConvoListingElement.java19 import com.android.bluetooth.SignedLongLong;
49 private SignedLongLong mId = null;
203 this.mId = new SignedLongLong(threadId, type); in setConvoId()
311 newElement.mId = SignedLongLong.fromString(attributeValue); in createFromXml()
DBluetoothMapAppParams.java19 import com.android.bluetooth.SignedLongLong;
173 private SignedLongLong mFilterConvoId = null;
176 private SignedLongLong mChatStateConvoId = null;
1021 public SignedLongLong getChatStateConvoId() { in getChatStateConvoId()
1043 mChatStateConvoId = new SignedLongLong(idLow, idHigh); in setChatStateConvoId()
1082 public SignedLongLong getFilterConvoId() { in getFilterConvoId()
1102 mFilterConvoId = SignedLongLong.fromString(id); in setFilterConvoId()
DBluetoothMapObexServer.java32 import com.android.bluetooth.SignedLongLong;
1048 SignedLongLong tmpLongLong = appParams.getFilterConvoId(); in onGet()
DBluetoothMapContent.java41 import com.android.bluetooth.SignedLongLong;
3349 c.setBtUid(new SignedLongLong(tmpCursor.getLong(fi.mContactColBtUid), 0)); in populateImEmailConvoElement()