Home
last modified time | relevance | path

Searched refs:mManagedCursors (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
DActivity.java773 private final ArrayList<ManagedCursor> mManagedCursors = field in Activity
1622 synchronized (mManagedCursors) { in onDestroy()
1623 int numCursors = mManagedCursors.size(); in onDestroy()
1625 ManagedCursor c = mManagedCursors.get(i); in onDestroy()
1630 mManagedCursors.clear(); in onDestroy()
2020 synchronized (mManagedCursors) { in startManagingCursor()
2021 mManagedCursors.add(new ManagedCursor(c)); in startManagingCursor()
2044 synchronized (mManagedCursors) { in stopManagingCursor()
2045 final int N = mManagedCursors.size(); in stopManagingCursor()
2047 ManagedCursor mc = mManagedCursors.get(i); in stopManagingCursor()
[all …]