HomeSort by relevance Sort by last modified time
    Searched refs:isAlive (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 24 private boolean isAlive;
36 isAlive = true;
45 if (!isAlive) {
56 if (!isAlive) {
66 if (isAlive) {
67 isAlive = false;
75 isAlive = false;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementRareData.cpp 53 if (!visitor->isAlive(m_cursorElement))
56 if (!visitor->isAlive(m_cursorImageValue)) {
65 ASSERT(!m_cursorElement || visitor->isAlive(m_cursorElement));
66 ASSERT(!m_cursorImageValue || visitor->isAlive(m_cursorImageValue));
  /frameworks/base/core/java/android/os/
HandlerThread.java 67 * or for any reason is isAlive() returns false, this method will return null. If this thread
72 if (!isAlive()) {
78 while (isAlive() && mLooper == null) {
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcess.h 40 int tryWait(bool& isAlive);
osProcessWin.cpp 89 childProcess::tryWait(bool& isAlive)
96 isAlive = false;
101 isAlive = true;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
HandlerThreadTest.java 48 assertTrue(handlerThread.isAlive());
51 assertFalse(handlerThread.isAlive());
63 assertFalse(handlerThread.isAlive());
  /cts/libs/deviceutil/src/android/cts/util/
TestThread.java 76 if (this.isAlive()) {
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 195 static bool isAlive(Visitor*, T*);
351 // have all been found. The WeakPointerCallback will normally use isAlive
354 // to objects where isAlive returned false. In the weak callback it is not
355 // allowed to touch other objects (except using isAlive) or to allocate on
362 // callbacks. Since isAlive is used in the callback to determine
398 template<typename T> inline bool isAlive(T* obj)
409 return ObjectAliveTrait<T>::isAlive(this, obj);
411 template<typename T> inline bool isAlive(const Member<T>& member)
413 return isAlive(member.get());
415 template<typename T> inline bool isAlive(RawPtr<T> ptr
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHandlerThread.java 41 if (!thread.isAlive()) {
47 while (thread.isAlive() && looper == null) {
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 47 assertFalse(th1.isAlive());
52 assertTrue(th1.isAlive());
  /libcore/luni/src/main/java/java/io/
PipedReader.java 248 if (!first && lastWriter != null && !lastWriter.isAlive()) {
340 if (lastReader != null && !lastReader.isAlive()) {
353 if (lastReader != null && !lastReader.isAlive()) {
388 if (lastReader != null && !lastReader.isAlive()) {
402 if (lastReader != null && !lastReader.isAlive()) {
PipedInputStream.java 231 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
309 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
390 if (lastReader != null && !lastReader.isAlive()) {
406 if (lastReader != null && !lastReader.isAlive()) {
  /frameworks/base/core/tests/coretests/src/android/view/
RunQueueTest.java 57 assertFalse("The view tree observer is still alive", activity.viewTreeObserver.isAlive());
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java 26 if (mHandlerThread.isAlive()) {
63 if (!mHandlerThread.isAlive()) {
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 81 if (m_sampleRegister[regSampleNdx].isAlive)
86 m_sampleRegister[regSampleNdx].isAlive = false;
96 if (m_sampleRegister[regSampleNdx].isAlive) \
134 if (m_sampleRegister[regSampleNdx].isAlive && !m_sampleRegister[regSampleNdx].stencilPassed) \
141 m_sampleRegister[regSampleNdx].isAlive = false; \
169 if (m_sampleRegister[regSampleNdx].isAlive) \
187 if (m_sampleRegister[regSampleNdx].isAlive) \
254 if (m_sampleRegister[regSampleNdx].isAlive && m_sampleRegister[regSampleNdx].depthPassed)
270 if (m_sampleRegister[regSampleNdx].isAlive && (CONDITION)) \
309 if (m_sampleRegister[regSampleNdx].isAlive) \
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 442 while (t.isAlive())
521 * java.lang.Thread#isAlive()
524 // Test for method boolean java.lang.Thread.isAlive()
527 assertFalse("A thread that wasn't started is alive.", st.isAlive());
535 assertTrue("Started thread returned false", st.isAlive());
541 assertTrue("Stopped thread returned true", !st.isAlive());
597 // cause isAlive() to be compiled by the JIT, as it must be called
599 assertTrue("Thread is alive", !st.isAlive());
608 assertTrue("Joined thread is still alive", !st.isAlive());
628 // cause isAlive() to be compiled by the JIT, as it must be calle
    [all...]
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 124 if not thread.isAlive():
143 for thread in (t for t in self._threads if t.isAlive()):
153 if any([t.isAlive() for t in self._threads]):
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 35 public boolean isAlive() {
130 return !getState().isAlive();
265 if (getState().isAlive()) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Debuggee.java 118 while ( ThreadGroup002DebuggeeThreads[i].isAlive() ) {
137 while ( ThreadGroup002DebuggeeThreads[i].isAlive() ) {
CurrentContendedMonitorDebuggee.java 69 if (thrd.isAlive()) {
Status002Debuggee.java 74 while ( status002DebuggeeThread.isAlive() ) {
Status003Debuggee.java 74 while ( status003DebuggeeThread.isAlive() ) {
Status004Debuggee.java 74 while ( status004DebuggeeThread.isAlive() ) {
Status005Debuggee.java 77 while ( status005DebuggeeThread.isAlive() ) {
Status006Debuggee.java 64 while ( status006DebuggeeThread.isAlive() ) {

Completed in 1704 milliseconds

1 2 3 4 5 6 7 8 9