HomeSort by relevance Sort by last modified time
    Searched full:isalive (Results 1 - 25 of 222) 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/lldb/test/pexpect-2.4/examples/
ftp.py 39 if child.isalive():
42 # Print the final state of the child. Normally isalive() should be FALSE.
43 if child.isalive():
python.py 21 print 'is alive:', c.isalive()
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
HandlerThreadTest.java 48 assertTrue(handlerThread.isAlive());
51 assertFalse(handlerThread.isAlive());
63 assertFalse(handlerThread.isAlive());
  /art/test/050-sync-test/
expected.txt 33 interrupting other (isAlive=true)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHandlerThread.java 41 if (!thread.isAlive()) {
47 while (thread.isAlive() && looper == null) {
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 89 childProcess::tryWait(bool& isAlive)
96 isAlive = false;
101 isAlive = true;
osProcessUnix.cpp 167 childProcess::tryWait(bool &isAlive)
170 isAlive = false;
174 isAlive = true;
osProcess.h 40 int tryWait(bool& isAlive);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementRareData.h 109 if (!visitor->isAlive(m_cursorElement))
112 if (!visitor->isAlive(m_cursorImageValue)) {
121 ASSERT(!m_cursorElement || visitor->isAlive(m_cursorElement));
122 ASSERT(!m_cursorImageValue || visitor->isAlive(m_cursorImageValue));
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 309 * will return false in {@link #isAlive()} and should not be used anymore.
386 * @throws IllegalStateException If {@link #isAlive()} returns false
404 * @throws IllegalStateException If {@link #isAlive()} returns false
421 * @throws IllegalStateException If {@link #isAlive()} returns false
439 * @throws IllegalStateException If {@link #isAlive()} returns false
456 * @throws IllegalStateException If {@link #isAlive()} returns false
473 * @throws IllegalStateException If {@link #isAlive()} returns false
491 * @throws IllegalStateException If {@link #isAlive()} returns false
508 * @throws IllegalStateException If {@link #isAlive()} returns false
524 * @throws IllegalStateException If {@link #isAlive()} returns fals
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 200 static bool isAlive(Visitor*, T*);
390 // have all been found. The WeakPointerCallback will normally use isAlive
393 // to objects where isAlive returned false. In the weak callback it is not
394 // allowed to touch other objects (except using isAlive) or to allocate on
401 // callbacks. Since isAlive is used in the callback to determine
432 template<typename T> inline bool isAlive(T* obj)
434 return !!obj && ObjectAliveTrait<T>::isAlive(this, obj);
436 template<typename T> inline bool isAlive(const Member<T>& member)
438 return isAlive(member.get());
440 template<typename T> inline bool isAlive(RawPtr<T> ptr
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 47 assertFalse(th1.isAlive());
52 assertTrue(th1.isAlive());
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java 26 if (mHandlerThread.isAlive()) {
63 if (!mHandlerThread.isAlive()) {
  /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/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...]
  /external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
ContentShellShellManagementTest.java 44 assertFalse(previousActiveShell.getContentViewCore().isAlive());
  /frameworks/base/core/tests/coretests/src/android/view/
RunQueueTest.java 57 assertFalse("The view tree observer is still alive", activity.viewTreeObserver.isAlive());
  /art/test/050-sync-test/src/
Main.java 182 System.out.println("interrupting other (isAlive="
183 + mOther.isAlive() + ")");
  /external/chromium_org/third_party/android_testrunner/
patch.diff 76 - if not t.isAlive():
89 + if t.isAlive():
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 148 virtual bool isAlive(Visitor*) const { return 0; }
218 virtual bool isAlive(Visitor*) const = 0;
  /libcore/jsr166-tests/src/test/java/jsr166/
AtomicMarkableReferenceTest.java 102 assertFalse(t.isAlive());
122 assertFalse(t.isAlive());
AtomicStampedReferenceTest.java 102 assertFalse(t.isAlive());
122 assertFalse(t.isAlive());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java 93 if (!connection.isAlive() || connection.isExpired(keepAliveDurationNs)) {
183 || !connection.isAlive()
225 if (!connection.isAlive()) {
255 if (connection.isAlive()) {
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 125 if not thread.isAlive():
144 for thread in (t for t in self._threads if t.isAlive()):
154 if any([t.isAlive() for t in self._threads]):

Completed in 1823 milliseconds

1 2 3 4 5 6 7 8 9