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

12345

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DCellTileView.java45 mSignalDrawable.setLevel(((SignalIcon) state.icon).getState());
63 public int getState() { method in class:CellTileView.SignalIcon
72 d.setLevel(getState());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMmiCode.java40 public State getState(); method in interface:MmiCode
/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/telecomm/java/android/telecom/
H A DConferenceParticipant.java155 public int getState() { method in class:ConferenceParticipant
H A DParcelableConference.java95 public int getState() { method in class:ParcelableConference
/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/base/core/java/android/bluetooth/
H A DBluetoothPbap.java213 public int getState() { method in class:BluetoothPbap
214 if (VDBG) log("getState()");
217 return mService.getState();
H A DBluetoothSap.java197 public int getState() { method in class:BluetoothSap
198 if (VDBG) log("getState()");
201 return mService.getState();
418 if (adapter != null && adapter.getState() == BluetoothAdapter.STATE_ON)
H A DBluetoothHeadsetClientCall.java163 public int getState() { method in class:BluetoothHeadsetClientCall
H A DBluetoothMap.java157 public int getState() { method in class:BluetoothMap
158 if (VDBG) log("getState()");
161 return mService.getState();
394 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();
H A Dcommon_time_server_api.cpp42 ICommonClock::State CommonTimeServer::getState() { function in class:android::CommonTimeServer
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileQueryHelper.java94 final QSTile.State state = tile.getState().copy();
129 State state = getState(params, spec);
153 private State getState(Collection<QSTile> tiles, String spec) { method in class:TileQueryHelper
156 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/android/support/graphics/drawable/
H A DVectorDrawableCommon.java151 public int[] getState() { method in class:VectorDrawableCommon
153 return mDelegateDrawable.getState();
155 return super.getState();
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DPlaybackStateCompatApi21.java27 public static int getState(Object stateObj) { method in class:PlaybackStateCompatApi21
28 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.cpp254 return me->getState(state);
322 OMX_ERRORTYPE SoftOMXComponent::getState(OMX_STATETYPE * /* state */) { function in class:android::SoftOMXComponent
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DDocumentLoader.java94 if (task.getState() == LoaderTask.STATE_LOADING) {
121 if (task.getState() == LoaderTask.STATE_LOADING) {
130 Preconditions.checkState(existingTask.getState() != LoaderTask.STATE_LOADING);
199 task.getState() != LoaderTask.STATE_CANCELLED &&
202 task.getState() != LoaderTask.STATE_LOADING);
225 if (get(i).getState() == LoaderTask.STATE_COMPLETED) {
296 switch (getState()) {
415 int getState() { method in class:DocumentLoader.LoaderTask
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java114 public int getState() { method in class:LocalBluetoothAdapter
115 return mAdapter.getState();
207 int currentState = mAdapter.getState();
209 setBluetoothStateInt(mAdapter.getState());
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
H A DVolumeDialogController.java57 void getState(); method in interface:VolumeDialogController

Completed in 1484 milliseconds

12345