Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/voicemail/impl/
DVvmPhoneStateListener.java36 private int previousState = -1; field in VvmPhoneStateListener
58 if (state == previousState in onServiceStateChanged()
60 && previousState != ServiceState.STATE_IN_SERVICE)) { in onServiceStateChanged()
63 previousState = state; in onServiceStateChanged()
101 previousState = state; in onServiceStateChanged()
/packages/apps/Camera2/src/com/android/camera/captureintent/state/
DStateFatal.java38 State previousState, RefCountBase<ResourceConstructed> resourceConstructed) { in from() argument
39 return new StateFatal(previousState, resourceConstructed); in from()
42 private StateFatal(State previousState, RefCountBase<ResourceConstructed> resourceConstructed) { in StateFatal() argument
43 super(previousState); in StateFatal()
DStateIntentCompleted.java45 State previousState, in from() argument
48 previousState, resourceConstructed, Optional.<Intent>absent()); in from()
52 State previousState, in StateIntentCompleted() argument
55 super(previousState); in StateIntentCompleted()
DStateForegroundWithSurfaceTexture.java40 State previousState, in from() argument
44 previousState, in from()
50 State previousState, in StateForegroundWithSurfaceTexture() argument
53 super(previousState); in StateForegroundWithSurfaceTexture()
DStateBackgroundWithSurfaceTexture.java47 State previousState, in from() argument
51 previousState, resourceConstructed, resourceSurfaceTexture); in from()
55 State previousState, in StateBackgroundWithSurfaceTexture() argument
58 super(previousState); in StateBackgroundWithSurfaceTexture()
DStateForeground.java42 State previousState, in from() argument
44 return new StateForeground(previousState, resourceConstructed); in from()
48 State previousState, in StateForeground() argument
50 super(previousState); in StateForeground()
DStateBackground.java48 State previousState, in from() argument
50 return new StateBackground(previousState, resourceConstructed); in from()
62 private StateBackground(State previousState, in StateBackground() argument
64 super(previousState); in StateBackground()
DStateStartingPreview.java56 State previousState, in from() argument
66 previousState, in from()
78 State previousState, in StateStartingPreview() argument
87 super(previousState); in StateStartingPreview()
DStateOpeningCamera.java92 State previousState, in from() argument
98 return new StateOpeningCamera(previousState, resourceConstructed, in from()
102 private StateOpeningCamera(State previousState, in StateOpeningCamera() argument
108 super(previousState); in StateOpeningCamera()
DStateSavingPicture.java55 State previousState, in StateSavingPicture() argument
58 super(previousState); in StateSavingPicture()
DStateReadyForCapture.java107 State previousState, in StateReadyForCapture() argument
111 super(previousState); in StateReadyForCapture()
122 State previousState, in StateReadyForCapture() argument
124 super(previousState); in StateReadyForCapture()
DStateReviewingPicture.java72 State previousState, in StateReviewingPicture() argument
76 super(previousState); in StateReviewingPicture()
/packages/apps/Car/Messenger/src/com/android/car/messenger/bluetooth/
DBluetoothMonitor.java216 int previousState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, in onReceive() local
221 if (state == STATE_NOT_FOUND || previousState == STATE_NOT_FOUND || device == null) { in onReceive()
226 if (previousState == BluetoothProfile.STATE_CONNECTED in onReceive()
233 if (previousState == BluetoothProfile.STATE_CONNECTING in onReceive()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothA2dpConnector.java52 int previousState = intent.getIntExtra(
59 Log.d(TAG, "Connection states: old = " + previousState + ", new = " + state);
62 if (previousState == BluetoothA2dp.STATE_CONNECTING) {
/packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
DStateImpl.java39 protected StateImpl(State previousState) { in StateImpl() argument
40 this(previousState.getStateMachine()); in StateImpl()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/
DAllAppsState.java94 public LauncherState getHistoryForState(LauncherState previousState) { in getHistoryForState() argument
95 return previousState == OVERVIEW ? OVERVIEW : NORMAL; in getHistoryForState()
/packages/apps/Dialer/java/com/android/dialer/voicemail/settings/
DVoicemailChangePinActivity.java460 State previousState = uiState; in updateState() local
462 if (previousState != state) { in updateState()
463 previousState.onLeave(this); in updateState()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFocusManagerTest.java212 int previousState = activeCall.getState(); in testCallStateChangedAffectCallFocus() local
215 (Call) activeCall, previousState, activeCall.getState()); in testCallStateChangedAffectCallFocus() local
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherState.java267 public LauncherState getHistoryForState(LauncherState previousState) {