Lines Matching refs:Cursor
22 import android.database.Cursor;
844 Cursor cursor = null;
846 cursor = mContext.getContentResolver().query(uri, projection, null,
848 if (null == cursor || 0 == cursor.getCount() || !cursor.moveToFirst()) {
852 int pathIndex = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA);
853 path = cursor.getString(pathIndex);
858 if (null != cursor) {
859 cursor.close();