Searched defs:getState (Results 1 - 25 of 124) sorted by relevance

12345

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DCellTileView.java51 mSignalDrawable.setLevel(((SignalIcon) state.icon).getState());
65 public int getState() { method in class:CellTileView.SignalIcon
75 d.setLevel(getState());
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DPendingUi.java72 public int getState() { method in class:PendingUi
/frameworks/support/work/workmanager/src/main/java/androidx/work/
H A DWorkStatus.java54 public @NonNull State getState() { method in class:WorkStatus
/frameworks/base/core/java/android/os/
H A DSystemService.java78 public static State getState(String service) { method in class:SystemService
92 return State.STOPPED.equals(getState(service));
99 return State.RUNNING.equals(getState(service));
110 final State currentState = getState(service);
135 if (State.STOPPED.equals(getState(service))) {
H A DCommonClock.java53 * Value used by {@link #getState()} to indicate that there was an internal error while
59 * Value used by {@link #getState()} to indicate that the common time service is in its initial
68 * Value used by {@link #getState()} to indicate that the common time service is in its client
74 * Value used by {@link #getState()} to indicate that the common time service is in its master
81 * Value used by {@link #getState()} to indicate that the common time service is in its Ronin
94 * Value used by {@link #getState()} to indicate that the common time service is waiting for a
215 public int getState() method in class:CommonClock
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingTextMessage.java66 public MessagingMessageState getState() { method in class:MessagingTextMessage
H A DMessagingMessage.java60 getState().setMessage(message);
65 return getState().getMessage();
104 getState().setGroup(group);
108 getState().setIsHistoric(isHistoric);
112 return getState().getGroup();
116 getState().setIsHidingAnimated(isHiding);
121 return getState().isHidingAnimated();
135 getState().recycle();
144 MessagingMessageState getState(); method in interface:MessagingMessage
/frameworks/base/telecomm/java/android/telecom/
H A DConferenceParticipant.java155 public int getState() { method in class:ConferenceParticipant
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraStateHolder.java57 public synchronized int getState() { method in class:CameraStateHolder
126 return (states | getState()) == states;
144 return (states & getState()) == 0;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMmiCode.java41 public State getState(); method in interface:MmiCode
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
H A DAddress.java40 public String getState() { method in class:Address
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSap.java203 public int getState() { method in class:BluetoothSap
204 if (VDBG) log("getState()");
208 return service.getState();
437 if (adapter != null && adapter.getState() == BluetoothAdapter.STATE_ON) {
H A DBluetoothHeadsetClientCall.java165 public int getState() { method in class:BluetoothHeadsetClientCall
H A DBluetoothMap.java162 public int getState() { method in class:BluetoothMap
163 if (VDBG) log("getState()");
167 return service.getState();
411 if (adapter != null && adapter.getState() == BluetoothAdapter.STATE_ON) return true;
/frameworks/base/core/java/android/service/quicksettings/
H A DTile.java99 public int getState() { method in class:Tile
/frameworks/base/libs/common_time/
H A Dcommon_clock_service.cpp85 status_t CommonClockService::getState(State* state) { function in class:android::CommonClockService
86 *state = mTimeServer.getState();
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileQueryHelper.java107 final QSTile.State state = tile.getState().copy();
136 State state = getState(params, spec);
169 private State getState(Collection<QSTile> tiles, String spec) { method in class:TileQueryHelper
172 return tile.getState().copy();
/frameworks/base/services/core/java/com/android/server/pm/
H A DIntentFilterVerificationState.java61 public int getState() { method in class:IntentFilterVerificationState
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DOperatorInfo.java56 getState() { method in class:OperatorInfo
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java182 public State getState() { method in class:NetworkConnectivityListener
/frameworks/support/graphics/drawable/static/src/main/java/androidx/vectordrawable/graphics/drawable/
H A DVectorDrawableCommon.java152 public int[] getState() { method in class:VectorDrawableCommon
154 return mDelegateDrawable.getState();
156 return super.getState();
/frameworks/support/media/api21/android/support/v4/media/session/
H A DPlaybackStateCompatApi21.java28 public static int getState(Object stateObj) { method in class:PlaybackStateCompatApi21
29 return ((PlaybackState)stateObj).getState();
/frameworks/av/media/common_time/
H A DICommonClock.cpp180 virtual status_t getState(State* state) { function in class:android::BpCommonClock
348 status_t status = getState(&state);
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXComponent.cpp253 return me->getState(state);
321 OMX_ERRORTYPE SoftOMXComponent::getState(OMX_STATETYPE * /* state */) { function in class:android::SoftOMXComponent
/frameworks/av/services/oboeservice/
H A DAAudioServiceStreamBase.h187 aaudio_stream_state_t getState() const { function in class:aaudio::AAudioServiceStreamBase

Completed in 1414 milliseconds

12345