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

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiWakeMetrics.java 41 private Session mCurrentSession;
59 mCurrentSession = new Session(numNetworks, SystemClock.elapsedRealtime());
78 mCurrentSession.recordInitializeEvent(numScans, numNetworks,
99 mCurrentSession.recordUnlockEvent(numScans, SystemClock.elapsedRealtime());
118 mCurrentSession.recordWakeupEvent(numScans, SystemClock.elapsedRealtime());
138 mCurrentSession.recordResetEvent(numScans, SystemClock.elapsedRealtime());
141 if (mCurrentSession.hasWakeupTriggered()) {
147 mSessions.add(mCurrentSession);
193 if (mCurrentSession != null) {
195 mCurrentSession.dump(pw)
    [all...]
  /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 230 wp<ACameraCaptureSession> mCurrentSession;
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java 123 private CameraCaptureSessionCore mCurrentSession;
652 if (mCurrentSession != null) {
653 mCurrentSession.replaceSessionClose();
696 mCurrentSession = newSession;
702 mSessionStateCallback = mCurrentSession.getDeviceStateCallback();
    [all...]

Completed in 1731 milliseconds