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

12

/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/os/
H A DHandlerThreadTest.java47 assertFalse(th1.isAlive());
52 assertTrue(th1.isAlive());
/frameworks/opt/telephony/src/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.java186 * isAlive()
192 isAlive() { method in class:Connection
193 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.java115 if(mID != 0 && mRS.isAlive()) {
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DBaseObj.java77 if(mID != 0 && mRS.isAlive()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java226 && (!getForegroundCall().getState().isAlive()
227 || !getBackgroundCall().getState().isAlive());
240 return (foregroundCallState.isAlive() || backgroundCallState.isAlive()
241 || ringingCallState.isAlive());
H A DSipPhone.java98 if (ringingCall.getState().isAlive()) return false;
102 if (foregroundCall.getState().isAlive()
103 && backgroundCall.getState().isAlive()) {
113 boolean makeCallWait = foregroundCall.getState().isAlive();
193 if (backgroundCall.getState().isAlive()) backgroundCall.hold();
194 if (foregroundCall.getState().isAlive()) foregroundCall.unhold();
247 } else if (foregroundCall.getState().isAlive()) {
314 return (foregroundCall.getState().isAlive()
412 if (state.isAlive()) {
816 if (!mState.isAlive()) retur
[all...]
/frameworks/base/tests/RenderScriptTests/tests_v11/src/com/android/rs/test/
H A DRSTestCore.java119 if (!activeTest.isAlive()) {
/frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/
H A DRSTestCore.java123 if (!activeTest.isAlive()) {
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h97 inline bool isAlive() const { return isValid(); } function in class:android::egl_display_t
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPopupHelper.java142 if (!mTreeObserver.isAlive()) mTreeObserver = mAnchorView.getViewTreeObserver();
213 if (!mTreeObserver.isAlive()) mTreeObserver = v.getViewTreeObserver();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothTetheringDataTracker.java359 if(mDhcpThread != null && mDhcpThread.isAlive()) {
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java341 public boolean isAlive(); method in interface:WindowManagerPolicy.WindowState
H A DViewTreeObserver.java270 * will return false in {@link #isAlive()} and should not be used anymore.
331 * @throws IllegalStateException If {@link #isAlive()} returns false
348 * @throws IllegalStateException If {@link #isAlive()} returns false
366 * @throws IllegalStateException If {@link #isAlive()} returns false
383 * @throws IllegalStateException If {@link #isAlive()} returns false
399 * @throws IllegalStateException If {@link #isAlive()} returns false
416 * @throws IllegalStateException If {@link #isAlive()} returns false
433 * @throws IllegalStateException If {@link #isAlive()} returns false
452 * @throws IllegalStateException If {@link #isAlive()} returns false
471 * @throws IllegalStateException If {@link #isAlive()} return
609 public boolean isAlive() { method in class:ViewTreeObserver
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DViewServer.java156 return mThread != null && mThread.isAlive();
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTestCore.java148 if (!activeTest.isAlive()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java362 && (!foregroundCall.getState().isAlive()
364 || !backgroundCall.getState().isAlive());
372 "&& (!foregroundCall.getState().isAlive()::=%s\n" +
374 " ||!backgroundCall.getState().isAlive())::=%s)",
380 !foregroundCall.getState().isAlive(),
382 !backgroundCall.getState().isAlive()));
H A DCDMAPhone.java399 return (foregroundCallState.isAlive() || backgroundCallState.isAlive() || ringingCallState
400 .isAlive());
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java102 if (mLooperThread.isAlive()) {
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java366 if (viewTreeObserver.isAlive()) {
400 if (viewTreeObserver.isAlive()) {
/frameworks/base/services/java/com/android/server/
H A DWatchdog.java218 if (isAlive()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java689 return (foregroundCallState.isAlive() ||
690 backgroundCallState.isAlive() ||
691 ringingCallState.isAlive());
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java166 if (observer.isAlive()) {

Completed in 6118 milliseconds

12