Searched refs:getCurrentState (Results 1 - 24 of 24) sorted by path

/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java1133 private final IState getCurrentState() { method in class:StateMachine.SmHandler
1343 protected final IState getCurrentState() { method in class:StateMachine
1347 return smh.getCurrentState();
1503 smh.mLogRecords.add(this, smh.getCurrentMessage(), string, smh.getCurrentState(),
2021 pw.println("curState=" + getCurrentState().getName());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DTransformableView.java38 TransformState getCurrentState(int fadingView); method in interface:TransformableView
H A DViewTransformationHelper.java58 public TransformState getCurrentState(int fadingView) { method in class:ViewTransformationHelper
106 TransformState ownState = getCurrentState(viewType);
114 TransformState otherState = notification.getCurrentState(viewType);
163 TransformState ownState = getCurrentState(viewType);
171 TransformState otherState = notification.getCurrentState(viewType);
189 TransformState ownState = getCurrentState(viewType);
199 TransformState ownState = getCurrentState(viewType);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DHybridNotificationView.java84 TransformState otherState = notification.getCurrentState(
98 TransformState otherState = notification.getCurrentState(
134 public TransformState getCurrentState(int fadingView) { method in class:HybridNotificationView
135 return mTransformationHelper.getCurrentState(fadingView);
H A DNotificationHeaderViewWrapper.java292 public TransformState getCurrentState(int fadingView) { method in class:NotificationHeaderViewWrapper
293 return mTransformationHelper.getCurrentState(fadingView);
H A DNotificationTemplateViewWrapper.java59 TransformState otherState = notification.getCurrentState(
85 TransformState otherState = notification.getCurrentState(
H A DNotificationViewWrapper.java125 public TransformState getCurrentState(int fadingView) { method in class:NotificationViewWrapper
/frameworks/base/services/net/java/android/net/ip/
H A DIpManager.java1130 mMsgStateLogger.handled(this, getCurrentState());
1163 mMsgStateLogger.handled(this, getCurrentState());
1221 mMsgStateLogger.handled(this, getCurrentState());
1442 mMsgStateLogger.handled(this, getCurrentState());
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp810 const State& s(getCurrentState());
859 const State& s(getCurrentState());
1449 Layer::State c = getCurrentState();
1517 Layer::State& editCurrentState(getCurrentState());
1970 Reject r(mDrawingState, getCurrentState(), recomputeVisibleRegions,
H A DLayer.h399 inline const State& getCurrentState() const { return mCurrentState; } function in class:android::Layer
400 inline State& getCurrentState() { return mCurrentState; } function in class:android::Layer
H A DSurfaceFlinger.cpp3816 uint32_t ls = l->getCurrentState().layerStack;
3817 uint32_t rs = r->getCurrentState().layerStack;
3821 uint32_t lz = l->getCurrentState().z;
3822 uint32_t rz = r->getCurrentState().z;
H A DSurfaceFlinger_hwc1.cpp3703 uint32_t ls = l->getCurrentState().layerStack;
3704 uint32_t rs = r->getCurrentState().layerStack;
3708 uint32_t lz = l->getCurrentState().z;
3709 uint32_t rz = r->getCurrentState().z;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStateTracker.java87 return getCurrentState().getName();
H A DWifiStateMachine.java1489 if (getCurrentState() == mDisconnectedState
1823 return getCurrentState() == mConnectedState;
1827 return getCurrentState() == mDisconnectedState;
2958 + " state " + getCurrentState().getName()
3563 if ((!SSID.equals(currentSSID)) && (getCurrentState() == mConnectedState)) {
4886 if (getCurrentState() != mDisconnectedState) {
4959 && getCurrentState() == mConnectedState) {
5323 if (getCurrentState() == mConnectedState
5811 if (getCurrentState() != mDisconnectedState) {
5826 + " my state " + getCurrentState()
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java573 if (getCurrentState() == mScanningState) {
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiControllerTest.java69 private IState getCurrentState() throws Exception { method in class:WifiControllerTest
70 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
115 assertEquals("StaDisabledWithScanState", getCurrentState().getName());
120 assertEquals("DeviceActiveState", getCurrentState().getName());
125 assertEquals("StaDisabledWithScanState", getCurrentState().getName());
130 assertEquals("DeviceActiveState", getCurrentState().getName());
153 assertEquals("EcmState", getCurrentState().getName());
155 assertEquals("DeviceActiveState", getCurrentState().getName());
169 assertEquals("DeviceActiveState", getCurrentState().getName());
178 assertEquals("DeviceActiveState", getCurrentState()
[all...]
H A DWifiStateMachineTest.java258 private IState getCurrentState() throws method in class:WifiStateMachineTest
260 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
433 assertEquals("InitialState", getCurrentState().getName());
437 assertEquals("InitialState", getCurrentState().getName());
448 assertEquals("SupplicantStartingState", getCurrentState().getName());
464 assertEquals("DisconnectedState", getCurrentState().getName());
475 assertEquals("InitialState", getCurrentState().getName());
480 assertEquals("InitialState", getCurrentState().getName());
485 assertEquals("InitialState", getCurrentState().getName());
499 assertEquals("InitialState", getCurrentState()
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsHandler.java312 " currState=" + getCurrentState().getName();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java265 return getCurrentState() == mInactiveState;
2083 return getName() + ": State=" + getCurrentState().getName()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandlerTest.java90 private IState getCurrentState() { method in class:CdmaInboundSmsHandlerTest
92 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
168 assertEquals("StartupState", getCurrentState().getName());
174 assertEquals("IdleState", getCurrentState().getName());
193 assertEquals("WaitingState", getCurrentState().getName());
201 assertEquals("WaitingState", getCurrentState().getName());
206 assertEquals("IdleState", getCurrentState().getName());
224 assertEquals("IdleState", getCurrentState().getName());
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDataConnectionTest.java167 private IState getCurrentState() throws Exception { method in class:DataConnectionTest
168 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
184 assertEquals("DcInactiveState", getCurrentState().getName());
204 assertEquals("DcActiveState", getCurrentState().getName());
218 assertEquals("DcInactiveState", getCurrentState().getName());
H A DDcControllerTest.java81 private IState getCurrentState() { method in class:DcControllerTest
83 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
118 assertEquals("DccDefaultState", getCurrentState().getName());
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandlerTest.java109 private IState getCurrentState() { method in class:GsmInboundSmsHandlerTest
111 Method method = StateMachine.class.getDeclaredMethod("getCurrentState");
184 assertEquals("StartupState", getCurrentState().getName());
190 assertEquals("IdleState", getCurrentState().getName());
199 assertEquals("WaitingState", getCurrentState().getName());
208 assertEquals("WaitingState", getCurrentState().getName());
213 assertEquals("IdleState", getCurrentState().getName());
234 assertEquals("IdleState", getCurrentState().getName());
251 assertEquals("IdleState", getCurrentState().getName());
260 assertEquals("WaitingState", getCurrentState()
[all...]

Completed in 669 milliseconds