HomeSort by relevance Sort by last modified time
    Searched defs:mCurrentSession (Results 1 - 4 of 4) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DataCollector.java 65 private SensorLoggerSession mCurrentSession = null;
124 if (isEnabled() && mCurrentSession == null) {
132 if (mCurrentSession != null) {
140 mCurrentSession = new SensorLoggerSession(System.currentTimeMillis(), System.nanoTime());
144 SensorLoggerSession session = mCurrentSession;
145 mCurrentSession = null;
154 if (mCurrentSession == null) {
159 SensorLoggerSession currentSession = mCurrentSession;
209 if (isEnabled() && mCurrentSession != null) {
210 mCurrentSession.addSensorEvent(event, System.nanoTime())
    [all...]
  /frameworks/base/media/java/android/media/
RemoteController.java 82 private MediaController mCurrentSession;
212 if (mCurrentSession != null) {
213 PlaybackState state = mCurrentSession.getPlaybackState();
255 if (mCurrentSession != null) {
256 return mCurrentSession.dispatchMediaButtonEvent(keyEvent);
279 if (mCurrentSession != null) {
280 mCurrentSession.getTransportControls().seekTo(timeMs);
437 if (mCurrentSession != null) {
443 mCurrentSession.getTransportControls().setRating(rating);
595 + mCurrentSession);
    [all...]
  /frameworks/av/camera/ndk/impl/
ACameraDevice.h 213 ACameraCaptureSession* mCurrentSession = nullptr;
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java 119 private CameraCaptureSessionCore mCurrentSession;
622 if (mCurrentSession != null) {
623 mCurrentSession.replaceSessionClose();
659 mCurrentSession = newSession;
665 mSessionStateCallback = mCurrentSession.getDeviceStateCallback();
    [all...]

Completed in 344 milliseconds