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

/frameworks/base/core/java/android/content/
H A DContentQueryMap.java47 /** Set when a cursor change notification is received and is cleared on a call to requery(). */
105 requery();
125 if (mDirty) requery();
130 public void requery() { method in class:ContentQueryMap
133 // If mCursor is null then it means there was a requery() in flight
135 // If this happens ignore the requery() since we are closed anyways.
139 if (!cursor.requery()) {
164 if (mDirty) requery();
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java93 int count = requery(observer);
222 public int requery(IContentObserver observer) throws RemoteException { method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java131 public boolean requery() { method in class:BulkCursorToCursorAdaptor
135 mCount = mBulkCursor.requery(getObserver());
140 // super.requery() will call onChanged. Do it here instead of relying on the
143 super.requery();
150 Log.e(TAG, "Unable to requery because the remote process exception " + ex.getMessage());
H A DIBulkCursor.java50 public int requery(IContentObserver observer) throws RemoteException; method in interface:IBulkCursor
H A DCursorToBulkCursorAdaptor.java219 public int requery(IContentObserver observer) { method in class:CursorToBulkCursorAdaptor
226 if (!mCursor.requery()) {
H A DMergeCursor.java220 public boolean requery() method in class:MergeCursor
228 if (mCursors[i].requery() == false) {
H A DCursor.java346 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
348 * Calling {@link #requery} will make the cursor active again.
349 * @deprecated Since {@link #requery()} is deprecated, so too is this.
362 * @return true if the requery succeeded, false if not, in which case the
368 boolean requery(); method in interface:Cursor
372 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
385 * Typically the data set won't change until {@link #requery()} is called.
404 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
458 * <p>These values may only change when requery is called.
H A DCursorWrapper.java227 public boolean requery() { method in class:CursorWrapper
228 return mCursor.requery();
H A DAbstractCursor.java151 public boolean requery() { method in class:AbstractCursor
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java67 public static boolean requery(Context context, Cursor cursor) { method in class:SqliteWrapper
69 return cursor.requery();
71 Log.e(TAG, "Catch a SQLiteException when requery: ", e);
H A DSQLiteCursor.java213 public boolean requery() { method in class:SQLiteCursor
233 return super.requery();
236 Log.w(TAG, "requery() failed " + e.getMessage(), e);
248 * Changes the selection arguments. The new values take effect after a call to requery().
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DSqliteWrapper.java79 public static boolean requery(Context context, Cursor cursor) { method in class:SqliteWrapper
81 return cursor.requery();
83 Log.e(TAG, "Catch a SQLiteException when requery: ", e);
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java295 public boolean requery() method in class:SortCursor
301 if (mCursors[i].requery() == false) {
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java199 public boolean requery() { method in class:MockCursor

Completed in 162 milliseconds