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