Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DObjectTracker.java31 private LinkedList<AutoCloseable> mAutoCloseables; field in ObjectTracker
58 if (mAutoCloseables == null) { in manage()
59 mAutoCloseables = new LinkedList<>(); in manage()
61 mAutoCloseables.add(autoCloseable); in manage()
70 if (mAutoCloseables == null) { in close()
73 mAutoCloseables.remove(autoCloseable); in close()
96 if (mAutoCloseables != null) { in tearDown()
97 while (!mAutoCloseables.isEmpty()) { in tearDown()
98 final AutoCloseable autoCloseable = mAutoCloseables.removeLast(); in tearDown()