Searched defs:getState (Results 1 - 25 of 50) sorted by path

12

/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/libmedia/
H A DIOMX.cpp201 virtual status_t getState( function in class:android::BpOMX
547 status_t err = getState(node, &state);
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp66 virtual status_t getState(
244 status_t MuxOMX::getState( function in class:android::MuxOMX
246 return getOMX(node)->getState(node, state);
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp313 status_t OMX::getState( function in class:android::OMX
315 return findInstance(node)->getState(
H A DOMXNodeInstance.cpp269 status_t OMXNodeInstance::getState(OMX_STATETYPE* state) { function in class:android::OMXNodeInstance
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/bluetooth/
H A DBluetoothAdapter.java463 public int getState() { method in class:BluetoothAdapter
468 int state= mService.getState();
469 if (VDBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state);
476 if (DBG) Log.d(TAG, "" + hashCode() + ": getState() : mService = null. Returning STATE_OFF");
604 if (getState() != STATE_ON) return null;
629 if (getState() != STATE_ON) return false;
655 if (getState() != STATE_ON) return SCAN_MODE_NONE;
693 if (getState() != STATE_ON) return false;
704 if (getState() != STATE_ON) return false;
711 if (getState() !
[all...]
H A DBluetoothPbap.java209 public int getState() { method in class:BluetoothPbap
210 if (VDBG) log("getState()");
213 return mService.getState();
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java325 public State getState() { method in class:NetworkInfo
/frameworks/base/core/java/android/os/
H A DCommonClock.java62 * Value used by {@link #getState()} to indicate that there was an internal error while
68 * Value used by {@link #getState()} to indicate that the common time service is in its initial
77 * Value used by {@link #getState()} to indicate that the common time service is in its client
83 * Value used by {@link #getState()} to indicate that the common time service is in its master
90 * Value used by {@link #getState()} to indicate that the common time service is in its Ronin
103 * Value used by {@link #getState()} to indicate that the common time service is waiting for a
224 public int getState() method in class:CommonClock
H A DSystemService.java80 public static State getState(String service) { method in class:SystemService
94 return State.STOPPED.equals(getState(service));
101 return State.RUNNING.equals(getState(service));
112 final State currentState = getState(service);
137 if (State.STOPPED.equals(getState(service))) {
/frameworks/base/core/java/android/webkit/
H A DWebSettingsClassic.java167 public String getState() { return mState; } method in class:WebSettingsClassic.AutoFillProfile
/frameworks/base/core/java/android/widget/
H A DFastScroller.java227 public int getState() { method in class:FastScroller
848 if (getState() != STATE_EXIT) {
862 if (getState() != STATE_EXIT) {
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java506 public State getState() { method in class:StateMachine.LogRec
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java477 public int[] getState() { method in class:Drawable
/frameworks/base/media/java/android/media/
H A DAudioRecord.java413 public int getState() { method in class:AudioRecord
H A DAudioTrack.java592 public int getState() { method in class:AudioTrack
/frameworks/base/services/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.cpp40 ICommonClock::State CommonTimeServer::getState() { function in class:android::CommonTimeServer
/frameworks/base/services/input/
H A DInputReader.cpp1007 return getState(sourceMask, keyCode, & InputMapper::getKeyCodeState);
1011 return getState(sourceMask, scanCode, & InputMapper::getScanCodeState);
1015 return getState(sourceMask, switchCode, & InputMapper::getSwitchState);
1018 int32_t InputDevice::getState(uint32_t sourceMask, int32_t code, GetStateFunc getStateFunc) { function in class:android::InputDevice
/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());
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java256 public int getState() { method in class:ServiceState
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java247 int state = getState();
340 public int getState() { method in class:SipAudioCall
343 return mSipSession.getState();
914 && (SipSession.State.IN_CALL == getState())) {
H A DSipSession.java304 public int getState() { method in class:SipSession
306 return mSession.getState();
308 Log.e(TAG, "getState(): " + e);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java652 public int getState() { method in class:SipSessionGroup.SipSessionImpl
859 cseq.getSeqNumber(), transaction.getState(),
860 ((dialog == null) ? "-" : dialog.getState()));

Completed in 9225 milliseconds

12