Lines Matching refs:mCursor
42 private Cursor mCursor; field in DownloadTouchIcon
95 mCursor = Bookmarks.queryCombinedForUrl(mContentResolver, in doInBackground()
99 boolean inDatabase = mCursor != null && mCursor.getCount() > 0; in doInBackground()
138 if (mCursor != null) { in doInBackground()
139 mCursor.close(); in doInBackground()
151 if (mCursor != null) { in onCancelled()
152 mCursor.close(); in onCancelled()
163 if (icon == null || mCursor == null || isCancelled()) { in storeIcon()
167 if (mCursor.moveToFirst()) { in storeIcon()
175 values.put(Images.URL, mCursor.getString(0)); in storeIcon()
177 } while (mCursor.moveToNext()); in storeIcon()