Home
last modified time | relevance | path

Searched refs:outList (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java1146 BluetoothMapMessageListing outList; in sendMessageListingRsp() local
1192 outList = mOutContent.msgListing(folderToList, appParams); in sendMessageListingRsp()
1194 outAppParams.setMessageListingSize(outList.getCount()); in sendMessageListingRsp()
1204 outBytes = outList.encode(mThreadIdSupport, version); in sendMessageListingRsp()
1205 hasUnread = outList.hasUnread(); in sendMessageListingRsp()
1361 BluetoothMapConvoListing outList; in sendConvoListingRsp() local
1382 outList = mOutContent.convoListing(appParams, false); in sendConvoListingRsp()
1383 outAppParams.setConvoListingSize(outList.getCount()); in sendConvoListingRsp()
1385 outBytes = outList.encode(); // Include thread ID for clients that supports it. in sendConvoListingRsp()
1390 outList = mOutContent.convoListing(appParams, true); in sendConvoListingRsp()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/views/
DBaseDragLayer.java254 protected void addAccessibleChildToList(View child, ArrayList<View> outList) { in addAccessibleChildToList() argument
256 outList.add(child); in addAccessibleChildToList()
258 child.addChildrenForAccessibility(outList); in addAccessibleChildToList()