Searched defs:session (Results 1 - 25 of 55) sorted by relevance

123

/packages/apps/Camera2/src/com/android/camera/one/v2/photo/
H A DPictureTaker.java20 import com.android.camera.session.CaptureSession;
26 public void takePicture(OneCamera.PhotoCaptureParameters params, CaptureSession session); argument
H A DPictureTakerImpl.java30 import com.android.camera.session.CaptureSession;
54 CaptureSession session) {
57 mSession = session;
80 public void takePicture(OneCamera.PhotoCaptureParameters params, final CaptureSession session) { argument
94 session);
97 imageExposureCallback, imageSaver, session));
52 PictureTakerCommand(Updatable<Void> imageExposureCallback, ImageSaver imageSaver, CaptureSession session) argument
/packages/apps/Camera2/src/com/android/camera/session/
H A DSessionStorageManager.java17 package com.android.camera.session;
25 * Interface for the session storage manager which handles management of storage
26 * space that can be used for temporary session files.
35 * clean of expired session data.
38 * session space, e.g. "foo".
45 * Initializes the directories for storing the final session output
52 * @param title the title of this session. Will be used to create a unique
H A DCaptureSessionFactory.java17 package com.android.camera.session;
23 * Creates a new capture session.
25 * @param sessionManager the capture session manager.
27 * session.
28 * @param title the title of the new session.
29 * @param sessionStartMillis the start time of the new session (millis since
31 * @param location the location of the new session.
H A DStackSaver.java17 package com.android.camera.session;
H A DStackSaverFactory.java17 package com.android.camera.session;
47 * @param mTitle the title of this stack session.
48 * @param location the GPS location that the media in this session was
H A DTemporarySessionFile.java17 package com.android.camera.session;
25 * Used to create temporary session files to be used by e.g. Photo Sphere to
H A DPlaceholderManager.java17 package com.android.camera.session;
69 * @return A session instance representing the new placeholder.
83 * @return A session instance representing the new placeholder.
115 * @return A session that can be used to update the progress of the new
116 * session.
125 * @param placeholder the session that is being finished.
147 * @param session the session to update
150 public void replacePlaceholder(Placeholder session, Bitmap placeholder) { argument
151 Storage.replacePlaceholder(session
[all...]
H A DCaptureSessionFactoryImpl.java17 package com.android.camera.session;
24 /** Sub-directory for storing temporary session files. */
H A DSessionStorageManagerImpl.java17 package com.android.camera.session;
34 /** Delete temporary session directory remnants after ONE day. */
41 * This is where we used to store temp session data, but it was the wrong
51 * @return A session storage manager.
67 throw new IOException("Could not create session directory: " + sessionDirectory);
91 Log.e(TAG, "Could not get temp session directory", e);
92 throw new IOException("Could not get temp session directory", e);
105 Log.e(TAG, "Could not create temp session file", e);
106 throw new IOException("Could not create temp session file", e);
H A DStackSaverImpl.java17 package com.android.camera.session;
H A DSessionNotifier.java17 package com.android.camera.session;
23 * Internal interface that e.g. a capture session can use to update about the
24 * status of session.
46 /** The underlying session data has been updated. */
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DRequestGetFolderListing.java71 public void execute(ClientSession session) throws IOException { argument
72 executeGet(session);
H A DRequestSetNotificationRegistration.java45 public void execute(ClientSession session) throws IOException { argument
46 executePut(session, FILLER_BYTE);
H A DRequestSetPath.java50 public void execute(ClientSession session) { argument
57 hs = session.setPath(mHeaderSet, false, false);
60 hs = session.setPath(mHeaderSet, true, false);
H A DRequestGetMessage.java111 public void execute(ClientSession session) throws IOException { argument
112 executeGet(session);
H A DRequestPushMessage.java81 public void execute(ClientSession session) throws IOException { argument
82 executePut(session, BmessageBuilder.createBmessage(mMsg).getBytes());
H A DRequestGetMessagesListing.java150 public void execute(ClientSession session) throws IOException { argument
151 executeGet(session);
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DDeferredPictureTaker.java21 import com.android.camera.session.CaptureSession;
39 public void takePicture(OneCamera.PhotoCaptureParameters params, CaptureSession session) { argument
43 taker.takePicture(params, session);
H A DPreviewStarter.java32 * When the preview surface is available, creates a capture session, and then
33 * notifies the listener when the session is available.
37 public void onCameraCaptureSessionCreated(CameraCaptureSessionProxy session, Surface argument
49 * @param sessionListener A callback to be invoked when the capture session
66 // When we have the preview surface, start the capture session.
70 // Need to create a capture session with the single preview stream first
71 // to lock it as the first stream. Then resend the another session with preview
/packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
H A DImageSaver.java24 import com.android.camera.session.CaptureSession;
64 CaptureSession session);
61 build( OneCamera.PictureSaverCallback pictureSaverCallback, OrientationManager.DeviceOrientation orientation, CaptureSession session) argument
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidCameraDeviceProxy.java43 public void onConfigured(CameraCaptureSession session) { argument
44 mStateCallback.onConfigured(new AndroidCameraCaptureSessionProxy(session));
48 public void onConfigureFailed(CameraCaptureSession session) { argument
49 mStateCallback.onConfigureFailed(new AndroidCameraCaptureSessionProxy(session));
53 public void onReady(CameraCaptureSession session) { argument
54 mStateCallback.onReady(new AndroidCameraCaptureSessionProxy(session));
58 public void onActive(CameraCaptureSession session) { argument
59 mStateCallback.onActive(new AndroidCameraCaptureSessionProxy(session));
63 public void onClosed(CameraCaptureSession session) { argument
64 mStateCallback.onClosed(new AndroidCameraCaptureSessionProxy(session));
[all...]
/packages/apps/Camera2/src/com/android/camera/processing/
H A DProcessingTask.java23 import com.android.camera.session.CaptureSession;
38 * @param session the capture session for the processed task.
40 public ProcessingResult(boolean success, CaptureSession session) { argument
42 mSession = session;
64 * @param session the {@code CaptureSession}
68 CaptureSession session);
67 process(Context context, CameraServices services, CaptureSession session) argument
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
H A DImageShadowTask.java27 import com.android.camera.session.CaptureSession;
62 * @param captureSession the capture session associated with this shadow
96 public ProcessingResult process(Context context, CameraServices services, CaptureSession session) { argument
/packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
H A DInstallTask.java54 PackageInstallerImpl.InstallListener callback, PackageInstaller.Session session,
60 mSession = session;
95 mErrorDesc = "Could not close session stream";
108 // 3. Commit the session (this actually installs it.) Session map
52 InstallTask(Context context, String packageName, ParcelFileDescriptor parcelFileDescriptor, PackageInstallerImpl.InstallListener callback, PackageInstaller.Session session, IntentSender commitCallback) argument

Completed in 217 milliseconds

123