Home | History | Annotate | Download | only in media

Lines Matching refs:Cursor

23 import android.database.Cursor;
226 Cursor cursor = null;
230 cursor = res.query(uri, MEDIA_COLUMNS, mediaSelection, null, null);
231 if (cursor != null && cursor.getCount() == 1) {
232 cursor.moveToFirst();
233 return cursor.getString(2);
235 // missing cursor is handled below
251 if (cursor != null) {
252 cursor.close();
254 cursor = null;