Searched defs:mTransferCursor (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransferHistory.java69 private Cursor mTransferCursor; field in class:BluetoothOppTransferHistory
121 mTransferCursor = managedQuery(BluetoothShare.CONTENT_URI, new String[] {
129 if (mTransferCursor != null) {
130 mIdColumnId = mTransferCursor.getColumnIndexOrThrow(BluetoothShare._ID);
133 R.layout.bluetooth_transfer_item, mTransferCursor);
146 if (mTransferCursor != null && !mShowAllIncoming) {
174 if (mTransferCursor.getCount() == 0) {
178 mTransferCursor.moveToPosition(mContextMenuPosition);
186 int sessionId = mTransferCursor.getInt(mIdColumnId);
197 if (mTransferCursor !
[all...]

Completed in 73 milliseconds