Searched refs:isAlive (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/core/java/android/os/
H A DHandlerThread.java66 * or for any reason is isAlive() returns false, this method will return null. If this thread
71 if (!isAlive()) {
77 while (isAlive() && mLooper == null) {
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
H A DSQLiteGeneralTest.java89 while (t1.isAlive() || t2.isAlive()) {
131 while (t1.isAlive() || t2.isAlive()) {
/frameworks/base/core/tests/coretests/src/android/os/
H A DHandlerThreadTest.java47 assertFalse(th1.isAlive());
52 assertTrue(th1.isAlive());
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCall.java32 public boolean isAlive() { method in class:Call.State
112 return !getState().isAlive();
247 if (getState().isAlive()) {
H A DConnection.java187 * isAlive()
193 isAlive() { method in class:Connection
194 return getState().isAlive();
/frameworks/base/core/tests/coretests/src/android/view/
H A DRunQueueTest.java57 assertFalse("The view tree observer is still alive", activity.viewTreeObserver.isAlive());
/frameworks/base/graphics/java/android/renderscript/
H A DBaseObj.java64 if(mID != 0 && mRS.isAlive()) {
H A DRenderScript.java322 boolean isAlive() { method in class:RenderScript
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java207 && (!getForegroundCall().getState().isAlive()
208 || !getBackgroundCall().getState().isAlive());
221 return (foregroundCallState.isAlive() || backgroundCallState.isAlive()
222 || ringingCallState.isAlive());
H A DSipPhone.java89 if (ringingCall.getState().isAlive()) return false;
93 if (foregroundCall.getState().isAlive()
94 && backgroundCall.getState().isAlive()) {
104 boolean makeCallWait = foregroundCall.getState().isAlive();
188 if (backgroundCall.getState().isAlive()) backgroundCall.hold();
189 if (foregroundCall.getState().isAlive()) foregroundCall.unhold();
242 } else if (foregroundCall.getState().isAlive()) {
309 return (foregroundCall.getState().isAlive()
407 if (state.isAlive()) {
811 if (!mState.isAlive()) retur
[all...]
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java229 * will return false in {@link #isAlive()} and should not be used anymore.
282 * @throws IllegalStateException If {@link #isAlive()} returns false
299 * @throws IllegalStateException If {@link #isAlive()} returns false
317 * @throws IllegalStateException If {@link #isAlive()} returns false
334 * @throws IllegalStateException If {@link #isAlive()} returns false
351 * @throws IllegalStateException If {@link #isAlive()} returns false
368 * @throws IllegalStateException If {@link #isAlive()} returns false
385 * @throws IllegalStateException If {@link #isAlive()} returns false
402 * @throws IllegalStateException If {@link #isAlive()} returns false
419 * @throws IllegalStateException If {@link #isAlive()} return
506 public boolean isAlive() { method in class:ViewTreeObserver
[all...]
/frameworks/base/services/java/com/android/server/
H A DViewServer.java168 return mThread != null && mThread.isAlive();
H A DWatchdog.java214 if (isAlive()) {
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp83 inline bool isAlive() const { return !terminated; } function in class:android::egl_object_t
194 inline bool isAlive() const { return isValid(); } function in struct:android::egl_display_t
514 if (!get_display(dpy)->isAlive())
516 if (!get_context(ctx)->isAlive())
525 if (!get_display(dpy)->isAlive())
527 if (!get_surface(surface)->isAlive())
542 if (!c->isAlive())
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java388 return (foregroundCallState.isAlive() || backgroundCallState.isAlive() || ringingCallState
389 .isAlive());
H A DCdmaCallTracker.java353 && (!foregroundCall.getState().isAlive()
355 || !backgroundCall.getState().isAlive());
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java705 return (foregroundCallState.isAlive() ||
706 backgroundCallState.isAlive() ||
707 ringingCallState.isAlive());
H A DGsmCallTracker.java319 && (!foregroundCall.getState().isAlive()
320 || !backgroundCall.getState().isAlive());
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java102 if (mLooperThread.isAlive()) {
/frameworks/base/core/java/android/server/
H A DBluetoothService.java341 if (mEnableThread != null && mEnableThread.isAlive()) {
423 if (mEnableThread != null && mEnableThread.isAlive()) {

Completed in 670 milliseconds