Lines Matching full:session
94 * {@code CONFIGURING} for before a session is returned and {@code NONE} for when there
95 * is no session created.
315 CameraCaptureSession session,
474 public void onConfigured(CameraCaptureSession session) {
475 mCurrentCaptureSession = session;
482 public void onConfigureFailed(CameraCaptureSession session) {
490 public void onReady(CameraCaptureSession session) {
495 * This method is called when the session starts actively processing capture requests.
498 * then the session will start processing those requests immediately after the callback,
501 * <p>If the session runs out of capture requests to process and calls {@link #onReady},
505 public void onActive(CameraCaptureSession session) {
510 * This method is called when the session is closed.
512 * <p>A session is closed when a new session is created by the parent camera device,
516 * <p>Once a session is closed, all methods on it will throw an IllegalStateException, and
518 * However, any in-progress capture requests submitted to the session will be completed
522 public void onClosed(CameraCaptureSession session) {
523 // Ignore closes if the session has been replaced
524 if (mCurrentCaptureSession != null && session != mCurrentCaptureSession) {
531 public void onSurfacePrepared(CameraCaptureSession session, Surface surface) {