Home
last modified time | relevance | path

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

/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
DBlockingSessionCallback.java85 private final HashMap<CameraCaptureSession, List<Surface> > mPreparedSurfaces = new HashMap<>(); field in BlockingSessionCallback
164 synchronized (mPreparedSurfaces) { in onClosed()
165 mPreparedSurfaces.remove(session); in onClosed()
204 synchronized (mPreparedSurfaces) { in onSurfacePrepared()
205 List<Surface> preparedSurfaces = mPreparedSurfaces.get(session); in onSurfacePrepared()
210 mPreparedSurfaces.put(session, preparedSurfaces); in onSurfacePrepared()
211 mPreparedSurfaces.notifyAll(); in onSurfacePrepared()
234 synchronized (mPreparedSurfaces) { in waitForSurfacePrepared()
235 List<Surface> preparedSurfaces = mPreparedSurfaces.get(session); in waitForSurfacePrepared()
243 mPreparedSurfaces.wait(timeoutMs); in waitForSurfacePrepared()
[all …]