HomeSort by relevance Sort by last modified time
    Searched defs:isRunning (Results 1 - 25 of 372) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/drawable/
Animatable.java 38 boolean isRunning();
  /external/deqp/execserver/
xsPosixFileReader.hpp 44 bool isRunning (void) const { return m_isRunning; }
xsPosixTestProcess.cpp 282 if (m_process->isRunning())
298 bool PosixTestProcess::isRunning (void)
301 return m_process->isRunning();
316 if (!m_logReader.isRunning())
332 DE_ASSERT(m_logReader.isRunning());
  /external/deqp/framework/delibs/decpp/
deProcess.hpp 53 bool isRunning (void) { return deProcess_isRunning(m_process) == DE_TRUE; }
  /system/core/libsysutils/src/
ServiceManager.cpp 54 if (isRunning(name)) {
66 if (isRunning(name))
84 if (!isRunning(name)) {
96 if (!isRunning(name))
109 bool ServiceManager::isRunning(const char *name) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
Request.java 32 boolean isRunning();
  /frameworks/base/services/net/java/android/net/util/
Stopwatch.java 37 public boolean isRunning() {
53 if (isRunning()) {
64 if (isRunning()) {
BlockingSocketReader.java 93 public final boolean isRunning() { return mRunning; }
121 while (isRunning()) {
129 if (isRunning()) logError("Socket closed, exiting", null);
135 if (isRunning()) logError("read error: ", e);
140 if (isRunning()) logError("read error: ", ioe);
  /hardware/qcom/gps/msm8909/utils/
LocThread.h 89 inline bool isRunning() { return NULL != mThread; }
LocThread.cpp 52 inline bool isRunning() { return (NULL != mRunnable); }
116 if (thread && !thread->isRunning()) {
182 if (locThread->isRunning()) {
186 while (locThread->isRunning() && runnable->run());
188 if (locThread->isRunning()) {
  /hardware/qcom/gps/msm8996/utils/
LocThread.h 89 inline bool isRunning() { return NULL != mThread; }
LocThread.cpp 52 inline bool isRunning() { return (NULL != mRunnable); }
116 if (thread && !thread->isRunning()) {
182 if (locThread->isRunning()) {
186 while (locThread->isRunning() && runnable->run());
188 if (locThread->isRunning()) {
  /hardware/qcom/gps/msm8998/utils/
LocThread.h 89 inline bool isRunning() { return NULL != mThread; }
  /packages/apps/TV/src/com/android/tv/analytics/
DurationTimer.java 32 public boolean isRunning() {
48 return isRunning() ? SystemClock.elapsedRealtime() - startTimeMs : TIME_NOT_SET;
  /frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/
FlingTests.java 158 assertTrue(animLowFriction.isRunning());
210 assertTrue(animLowThreshold.isRunning());
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
StopwatchTest.java 41 assertTrue(startedStopwatch.isRunning());
46 assertFalse(unstartedStopwatch.isRunning());
51 assertFalse(stopwatch.isRunning());
57 assertTrue(stopwatch.isRunning());
67 assertTrue(stopwatch.isRunning());
73 assertFalse(stopwatch.isRunning());
82 assertFalse(stopwatch.isRunning());
93 assertFalse(stopwatch.isRunning());
99 assertFalse(stopwatch.isRunning());
114 assertFalse(stopwatch.isRunning());
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
StopwatchTest.java 42 assertTrue(startedStopwatch.isRunning());
47 assertFalse(unstartedStopwatch.isRunning());
52 assertFalse(stopwatch.isRunning());
58 assertTrue(stopwatch.isRunning());
68 assertTrue(stopwatch.isRunning());
74 assertFalse(stopwatch.isRunning());
83 assertFalse(stopwatch.isRunning());
94 assertFalse(stopwatch.isRunning());
100 assertFalse(stopwatch.isRunning());
115 assertFalse(stopwatch.isRunning());
    [all...]
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 126 public boolean isRunning () {
  /external/deqp/executor/
xeTcpIpLink.hpp 81 bool isRunning (void) const { return m_isRunning; }
104 bool isRunning (void) const { return m_isRunning; }
  /external/guava/guava/src/com/google/common/base/
Stopwatch.java 78 private boolean isRunning;
149 public boolean isRunning() {
150 return isRunning;
160 checkState(!isRunning, "This stopwatch is already running.");
161 isRunning = true;
175 checkState(isRunning, "This stopwatch is already stopped.");
176 isRunning = false;
189 isRunning = false;
194 return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 70 boolean isRunning();
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Stopwatch.java 77 private boolean isRunning;
148 public boolean isRunning() {
149 return isRunning;
159 checkState(!isRunning, "This stopwatch is already running.");
160 isRunning = true;
174 checkState(isRunning, "This stopwatch is already stopped.");
175 isRunning = false;
188 isRunning = false;
193 return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
  /external/skia/gm/
SkAnimTimer.h 36 bool isRunning() const { return kRunning_State == fState; }
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/
RemotePrintServicePlugin.java 53 private boolean isRunning;
87 isRunning = false;
98 isRunning = true;
114 isRunning = false;
133 Preconditions.checkState(isRunning);
  /hardware/interfaces/automotive/evs/1.0/vts/functional/
FrameHandler.cpp 105 bool FrameHandler::isRunning() {

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>