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
132 mCursor.requery();
154 if (mDirty) requery();
/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 DSQLiteQuery.java36 /** Args to bind on requery */
143 /* package */ void requery() { method in class:SQLiteQuery
H A DSQLiteCursor.java345 * thread is holding the database lock. requery() and moveTo() are also
360 requery();
511 public boolean requery() { method in class:SQLiteCursor
521 * results of mQuery.requery().
535 mQuery.requery();
544 Log.v("DatabaseWindow", "closing window in requery()");
548 boolean result = super.requery();
551 Log.v(TAG, "requery (" + (timeEnd - timeStart) + " ms): " + mDriver.toString());
572 * Changes the selection arguments. The new values take effect after a call to requery().
/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/android/database/
H A DBulkCursorNative.java116 int count = requery(observer, window);
319 public int requery(IContentObserver observer, CursorWindow window) throws RemoteException { method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java151 public boolean requery() { method in class:BulkCursorToCursorAdaptor
155 mCount = mBulkCursor.requery(getObserver(), new CursorWindow(
161 // super.requery() will call onChanged. Do it here instead of relying on the
164 super.requery();
171 Log.e(TAG, "Unable to requery because the remote process exception " + ex.getMessage());
H A DIBulkCursor.java65 public int requery(IContentObserver observer, CursorWindow window) throws RemoteException; method in interface:IBulkCursor
H A DMergeCursor.java241 public boolean requery() method in class:MergeCursor
249 if (mCursors[i].requery() == false) {
H A DCursorToBulkCursorAdaptor.java149 public int requery(IContentObserver observer, CursorWindow window) { method in class:CursorToBulkCursorAdaptor
154 if (!mCursor.requery()) {
H A DCursor.java449 * {@link #requery} before reading data from the cursor again.
463 * {@link #requery} before reading data from the cursor again.
488 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
490 * Calling {@link #requery} will make the cursor active again.
499 * @return true if the requery succeeded, false if not, in which case the
502 boolean requery(); method in interface:Cursor
506 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
519 * Typically the data set won't change until {@link #requery()} is called.
538 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
575 * <p>These values may only change when requery i
[all...]
H A DCursorWrapper.java210 public boolean requery() { method in class:CursorWrapper
211 return mCursor.requery();
H A DAbstractCursor.java92 public boolean requery() { method in class:AbstractCursor
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java308 public boolean requery() method in class:SortCursor
314 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 119 milliseconds