Searched refs:isAlive (Results 1 - 16 of 16) 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.java180 * isAlive()
186 isAlive() { method in class:Connection
187 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/services/java/com/android/server/
H A DViewServer.java148 return mThread != null && mThread.isAlive();
H A DWatchdog.java443 if (isAlive()) {
/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/opengl/libs/EGL/
H A Degl.cpp81 inline bool isAlive() const { return !terminated; } function in class:android::egl_object_t
175 inline bool isAlive() const { return isValid(); } function in struct:android::egl_display_t
504 if (!get_display(dpy)->isAlive())
506 if (!get_context(ctx)->isAlive())
515 if (!get_display(dpy)->isAlive())
517 if (!get_surface(surface)->isAlive())
532 if (!c->isAlive())
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java309 && (!foregroundCall.getState().isAlive()
310 || !backgroundCall.getState().isAlive());
H A DGSMPhone.java708 return (foregroundCallState.isAlive() ||
709 backgroundCallState.isAlive() ||
710 ringingCallState.isAlive());
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java353 && (!foregroundCall.getState().isAlive()
355 || !backgroundCall.getState().isAlive());
/frameworks/base/core/java/android/server/
H A DBluetoothService.java310 if (mEnableThread != null && mEnableThread.isAlive()) {
392 if (mEnableThread != null && mEnableThread.isAlive()) {

Completed in 344 milliseconds