OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isAlive
(Results
1 - 25
of
135
) sorted by null
1
2
3
4
5
6
/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;
/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) {
/device/generic/goldfish/opengl/shared/OpenglOsUtils/
osProcess.h
40
int tryWait(bool&
isAlive
);
osProcessWin.cpp
89
childProcess::tryWait(bool&
isAlive
)
96
isAlive
= false;
101
isAlive
= true;
/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/tests/src/android/os/cts/
TestThread.java
76
if (this.
isAlive
()) {
/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
()) {
/frameworks/base/core/tests/coretests/src/android/view/
RunQueueTest.java
57
assertFalse("The view tree observer is still alive", activity.viewTreeObserver.
isAlive
());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
Connection.java
187
*
isAlive
()
193
isAlive
() {
194
return getState().
isAlive
();
Call.java
35
public boolean
isAlive
() {
114
return !getState().
isAlive
();
249
if (getState().
isAlive
()) {
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java
26
if (mHandlerThread.
isAlive
()) {
63
if (!mHandlerThread.
isAlive
()) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java
447
while (t.
isAlive
())
526
* @tests java.lang.Thread#
isAlive
()
529
// Test for method boolean java.lang.Thread.
isAlive
()
532
assertFalse("A thread that wasn't started is alive.", st.
isAlive
());
540
assertTrue("Started thread returned false", st.
isAlive
());
546
assertTrue("Stopped thread returned true", !st.
isAlive
());
602
// cause
isAlive
() to be compiled by the JIT, as it must be called
604
assertTrue("Thread is alive", !st.
isAlive
());
613
assertTrue("Joined thread is still alive", !st.
isAlive
());
633
// cause
isAlive
() to be compiled by the JIT, as it must be calle
[
all
...]
/external/chromium_org/build/android/pylib/utils/
reraiser_thread.py
113
if not thread.
isAlive
():
132
for thread in (t for t in self._threads if t.
isAlive
()):
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ZoomManager.java
69
if (!mPinchEventSent || !mContentViewCore.
isAlive
()) return;
97
!mContentViewCore.
isAlive
();
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorTestOperation.java
73
if(mThread.
isAlive
()) {
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
StreamForwarder.java
86
while (sibling.
isAlive
())
/external/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java
94
if (!connection.
isAlive
() || connection.isExpired(keepAliveDurationNs)) {
185
|| !connection.
isAlive
()
223
if (!connection.
isAlive
()) {
255
if (connection.
isAlive
()) {
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
BaseObj.java
87
if(mID != 0 && mRS.
isAlive
()) {
/libcore/libart/src/main/java/java/lang/
Thread.java
686
public final boolean
isAlive
() {
722
while (
isAlive
()) {
769
if (!
isAlive
()) {
780
if (!
isAlive
()) {
910
if (
isAlive
()) {
944
if (
isAlive
()) {
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedWriterTest.java
360
while (readThread.
isAlive
()) {
365
while (writeThread.
isAlive
()) {
424
while (readThread.
isAlive
()) {
429
while (writeThread.
isAlive
()) {
Completed in 2187 milliseconds
1
2
3
4
5
6