OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:underlyingcursor
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java
268
Cursor
underlyingCursor
= getOneRowCursor();
269
Cursor cachedCursor1 = new CachedCursor(
underlyingCursor
, cache, "1");
270
Cursor cachedCursor2 = new CachedCursor(
underlyingCursor
, cache, "1");
271
assertEquals(2, ContentCache.sActiveCursors.getCount(
underlyingCursor
));
275
assertFalse(
underlyingCursor
.isClosed());
278
assertEquals(0, ContentCache.sActiveCursors.getCount(
underlyingCursor
));
280
assertTrue(
underlyingCursor
.isClosed());
282
underlyingCursor
= getOneRowCursor();
284
underlyingCursor
, "2", SIMPLE_PROJECTION, cache.getCacheToken("2"));
285
cachedCursor2 = new CachedCursor(
underlyingCursor
, cache, "2")
[
all
...]
/frameworks/base/core/java/android/app/
DownloadManager.java
[
all
...]
Completed in 219 milliseconds