Searched defs:requery (Results 1 - 15 of 15) 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 DIBulkCursor.java59 public int requery(IContentObserver observer) throws RemoteException; method in interface:IBulkCursor
H A DBulkCursorNative.java113 int count = requery(observer);
296 public int requery(IContentObserver observer) throws RemoteException { method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java143 public boolean requery() { method in class:BulkCursorToCursorAdaptor
147 mCount = mBulkCursor.requery(getObserver());
152 // super.requery() will call onChanged. Do it here instead of relying on the
155 super.requery();
162 Log.e(TAG, "Unable to requery because the remote process exception " + ex.getMessage());
H A DCursorToBulkCursorAdaptor.java217 public int requery(IContentObserver observer) { method in class:CursorToBulkCursorAdaptor
224 if (!mCursor.requery()) {
H A DMergeCursor.java220 public boolean requery() method in class:MergeCursor
228 if (mCursors[i].requery() == false) {
H A DCursor.java341 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
343 * Calling {@link #requery} will make the cursor active again.
356 * @return true if the requery succeeded, false if not, in which case the
362 boolean requery(); method in interface:Cursor
366 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
379 * Typically the data set won't change until {@link #requery()} is called.
398 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
435 * <p>These values may only change when requery is called.
H A DCursorWrapper.java185 public boolean requery() { method in class:CursorWrapper
186 return mCursor.requery();
H A DAbstractCursor.java96 public boolean requery() { method in class:AbstractCursor
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java169 /* package */ void requery() { method in class:SQLiteQuery
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.java230 public boolean requery() { method in class:SQLiteCursor
249 Log.w(TAG, "requery() failed " + e.getMessage(), e);
259 Log.w(TAG, "requery() failed " + e.getMessage(), e);
268 Log.w(TAG, "requery() failed " + e.getMessage(), e);
278 mQuery.requery();
281 Log.w(TAG, "requery() failed " + e.getMessage(), e);
287 Log.v("DatabaseWindow", "closing window in requery()");
293 result = super.requery();
296 Log.w(TAG, "requery() failed " + e.getMessage(), e);
300 Log.v(TAG, "requery ("
[all...]
/frameworks/base/core/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.java160 public boolean requery() { method in class:MockCursor

Completed in 149 milliseconds