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

1234

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMmiCode.java38 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.java90 public int getState() { method in class:ParcelableConference
H A DParcelableConnection.java93 public int getState() { method in class:ParcelableConnection
H A DRemoteConference.java50 * {@link #getState()}.
310 public final int getState() { method in class:RemoteConference
/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 DBluetoothHeadsetClientCall.java141 public int getState() { method in class:BluetoothHeadsetClientCall
H A DBluetoothPbap.java213 public int getState() { method in class:BluetoothPbap
214 if (VDBG) log("getState()");
217 return mService.getState();
H A DBluetoothSap.java196 public int getState() { method in class:BluetoothSap
197 if (VDBG) log("getState()");
200 return mService.getState();
417 if (adapter != null && adapter.getState() == BluetoothAdapter.STATE_ON)
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/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/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/v4/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/core/java/android/os/storage/
H A DStorageVolume.java217 public String getState() { method in class:StorageVolume
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java109 public int getState() { method in class:LocalBluetoothAdapter
110 return mAdapter.getState();
194 int currentState = mAdapter.getState();
196 setBluetoothStateInt(mAdapter.getState());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockIcon.java103 int state = getState();
228 private int getState() { method in class:LockIcon
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java248 public void getState(StackScrollState resultState, StackViewState parentState) { method in class:NotificationChildrenContainer
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java83 public int getState() { method in class:MountServiceTests.ObbObserver
158 assertEquals(expectedState, observer.getState());
183 assertEquals(expectedState, observer.getState());
204 assertEquals(expectedState, observer.getState());

Completed in 656 milliseconds

1234