Home
last modified time | relevance | path

Searched refs:BluetoothMapConvoListingElement (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapConvoListing.java42 private List<BluetoothMapConvoListingElement> mList;
45 mList = new ArrayList<BluetoothMapConvoListingElement>(); in BluetoothMapConvoListing()
47 public void add(BluetoothMapConvoListingElement element) { in add()
82 public List<BluetoothMapConvoListingElement> getList(){ in getList()
105 for (BluetoothMapConvoListingElement element : mList) { in encode()
129 mList = new ArrayList<BluetoothMapConvoListingElement>(); // Return an empty list in segment()
133 mList = new ArrayList<BluetoothMapConvoListingElement>(); in segment()
187 if(name.trim().equalsIgnoreCase(BluetoothMapConvoListingElement.XML_TAG_CONVERSATION) in readConversations()
194 add(BluetoothMapConvoListingElement.createFromXml(parser)); in readConversations()
DBluetoothMapConvoListingElement.java35 public class BluetoothMapConvoListingElement class
36 implements Comparable<BluetoothMapConvoListingElement> {
232 public int compareTo(BluetoothMapConvoListingElement e) { in compareTo()
288 public static BluetoothMapConvoListingElement createFromXml(XmlPullParser parser) in createFromXml()
290 BluetoothMapConvoListingElement newElement = new BluetoothMapConvoListingElement(); in createFromXml()
348 BluetoothMapConvoListingElement other = (BluetoothMapConvoListingElement) obj; in equals()
DBluetoothMapMasInstance.java96 private HashMap<Long,BluetoothMapConvoListingElement> mSmsMmsConvoList =
97 new HashMap<Long, BluetoothMapConvoListingElement>();
99 private HashMap<Long,BluetoothMapConvoListingElement> mImEmailConvoList =
100 new HashMap<Long, BluetoothMapConvoListingElement>();
226 HashMap<Long,BluetoothMapConvoListingElement> getSmsMmsConvoList() { in getSmsMmsConvoList()
230 void setSmsMmsConvoList(HashMap<Long,BluetoothMapConvoListingElement> smsMmsConvoList) { in setSmsMmsConvoList()
234 HashMap<Long,BluetoothMapConvoListingElement> getImEmailConvoList() { in getImEmailConvoList()
238 void setImEmailConvoList(HashMap<Long,BluetoothMapConvoListingElement> imEmailConvoList) { in setImEmailConvoList()
DBluetoothMapContent.java558 private void setConvoRead(BluetoothMapConvoListingElement e, Cursor c, in setConvoRead()
1187 private void setLastActivity(BluetoothMapConvoListingElement e, Cursor c, in setLastActivity()
1289 private BluetoothMapConvoListingElement createConvoElement(Cursor c, FilterInfo fi, in createConvoElement()
1291 BluetoothMapConvoListingElement e = new BluetoothMapConvoListingElement(); in createConvoElement()
2549 BluetoothMapConvoListingElement convoElement = null; in convoListing()
2605 BluetoothMapConvoListingElement e = null; in convoListing()
2644 List<BluetoothMapConvoListingElement> list = convoList.getList(); in convoListing()
2650 BluetoothMapConvoListingElement ele = list.get(x); in convoListing()
2713 BluetoothMapConvoListingElement convoElement = null; in refreshSmsMmsConvoVersions()
2717 HashMap<Long,BluetoothMapConvoListingElement> newList = in refreshSmsMmsConvoVersions()
[all …]
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
DMapTestData.java21 import com.android.bluetooth.map.BluetoothMapConvoListingElement;
108 BluetoothMapConvoListingElement element; in getConvoListingReference()
110 element = new BluetoothMapConvoListingElement(); in getConvoListingReference()
DMapStepsConvo.java17 import com.android.bluetooth.map.BluetoothMapConvoListingElement;