HomeSort by relevance Sort by last modified time
    Searched full:isrunning (Results 1 - 25 of 558) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/update_engine/common/
action_processor_unittest.cc 118 EXPECT_FALSE(action_processor_.IsRunning());
120 EXPECT_FALSE(action_processor_.IsRunning());
121 EXPECT_FALSE(action_.IsRunning());
123 EXPECT_TRUE(action_processor_.IsRunning());
124 EXPECT_TRUE(action_.IsRunning());
127 EXPECT_FALSE(action_processor_.IsRunning());
128 EXPECT_FALSE(action_.IsRunning());
145 EXPECT_FALSE(action_processor_.IsRunning());
158 EXPECT_TRUE(action_processor_.IsRunning());
161 EXPECT_TRUE(action_processor_.IsRunning());
    [all...]
action_unittest.cc 64 EXPECT_FALSE(action.IsRunning());
71 EXPECT_TRUE(action.IsRunning());
73 EXPECT_FALSE(action.IsRunning());
  /external/libchrome/base/timer/
mock_timer_unittest.cc 24 EXPECT_TRUE(timer.IsRunning());
26 EXPECT_FALSE(timer.IsRunning());
38 EXPECT_TRUE(timer.IsRunning());
41 EXPECT_TRUE(timer.IsRunning());
52 EXPECT_TRUE(timer.IsRunning());
54 EXPECT_FALSE(timer.IsRunning());
timer_unittest.cc 425 EXPECT_FALSE(timer.IsRunning());
428 EXPECT_TRUE(timer.IsRunning());
430 EXPECT_FALSE(timer.IsRunning());
437 EXPECT_FALSE(timer.IsRunning());
440 EXPECT_TRUE(timer.IsRunning());
442 EXPECT_FALSE(timer.IsRunning());
445 EXPECT_TRUE(timer.IsRunning());
453 EXPECT_FALSE(timer.IsRunning());
456 EXPECT_TRUE(timer.IsRunning());
458 EXPECT_FALSE(timer.IsRunning());
    [all...]
mock_timer.h 22 bool IsRunning() const override;
  /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...]
  /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);
  /packages/apps/TV/src/com/android/tv/util/
DurationTimer.java 45 public boolean isRunning() {
68 return isRunning() ? SystemClock.elapsedRealtime() - mStartTimeMs : TIME_NOT_SET;
87 if (isRunning() && (!mLogEngOnly || BuildConfig.ENG)) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
ThumbnailRequestCoordinator.java 70 if (!thumb.isRunning()) {
73 if (!full.isRunning()) {
102 public boolean isRunning() {
103 return full.isRunning();
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorTests.java 81 // Test the time between isRunning() and isStarted()
83 assertFalse(a.isRunning());
87 assertFalse(a.isRunning());
182 assertFalse(a1.isRunning());
183 assertFalse(a2.isRunning());
206 assertFalse(a1.isRunning());
216 assertTrue(a1.isRunning());
217 assertTrue(a2.isRunning());
227 assertFalse(a1.isRunning());
229 assertFalse(a2.isRunning());
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturer_unittest.cc 72 EXPECT_FALSE(capturer_->IsRunning());
77 EXPECT_FALSE(capturer_->IsRunning());
88 EXPECT_FALSE(capturer_->IsRunning());
101 EXPECT_TRUE(capturer_->IsRunning());
112 EXPECT_FALSE(capturer_->IsRunning());
128 EXPECT_TRUE(capturer_->IsRunning());
139 EXPECT_FALSE(capturer_->IsRunning());
147 EXPECT_FALSE(capturer_->IsRunning());
  /frameworks/base/services/backup/java/com/android/server/backup/restore/
RestoreEngine.java 36 public boolean isRunning() {
49 while (isRunning()) {
  /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);
  /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/libchrome/base/threading/
thread_unittest.cc 122 EXPECT_FALSE(a.IsRunning());
125 EXPECT_TRUE(a.IsRunning());
128 EXPECT_FALSE(a.IsRunning());
131 EXPECT_TRUE(a.IsRunning());
134 EXPECT_FALSE(a.IsRunning());
137 EXPECT_FALSE(a.IsRunning());
153 EXPECT_TRUE(a.IsRunning());
191 EXPECT_TRUE(a.IsRunning());
196 EXPECT_FALSE(a.IsRunning());
270 EXPECT_TRUE(t.IsRunning());
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BatteryStatsNoteTest.java 202 assertFalse(bi.getOnBatteryTimeBase().isRunning());
204 assertFalse(bi.getOnBatteryTimeBase().isRunning());
206 assertFalse(bi.getOnBatteryTimeBase().isRunning());
209 assertTrue(bi.getOnBatteryTimeBase().isRunning());
210 assertFalse(bi.getOnBatteryScreenOffTimeBase().isRunning());
212 assertTrue(bi.getOnBatteryScreenOffTimeBase().isRunning());
214 assertTrue(bi.getOnBatteryScreenOffTimeBase().isRunning());
226 assertTrue(bi.getOnBatteryScreenOffTimeBase().isRunning());
229 assertFalse(bi.getOnBatteryScreenOffTimeBase().isRunning());
232 assertTrue(bi.getOnBatteryScreenOffTimeBase().isRunning());
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimationDrawableTest.java 104 assertFalse(animationDrawable.isRunning());
112 assertTrue(mAnimationDrawable.isRunning());
119 assertFalse(mAnimationDrawable.isRunning());
125 assertTrue(mAnimationDrawable.isRunning());
133 assertFalse(mAnimationDrawable.isRunning());
136 assertTrue(mAnimationDrawable.isRunning());
145 assertFalse(mAnimationDrawable.isRunning());
150 assertFalse(mAnimationDrawable.isRunning());
156 assertFalse(mAnimationDrawable.isRunning());
159 assertTrue(mAnimationDrawable.isRunning());
    [all...]
  /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-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/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageProcessor.java 71 private boolean isRunning;
116 this.isRunning = true;
126 while (this.isRunning) {
138 if (!this.isRunning)
158 if ( this.isRunning ) {
161 this.isRunning = false;
165 this.isRunning = false;
192 if (!isRunning)
195 isRunning = false;
  /frameworks/base/graphics/java/android/graphics/drawable/
Animatable.java 38 boolean isRunning();
  /system/core/libsysutils/include/sysutils/
ServiceManager.h 27 bool isRunning(const char *name);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmRecyclerView.java 47 return rv.getItemAnimator().isRunning();
62 (getItemAnimator() == null || !getItemAnimator().isRunning())) {

Completed in 1603 milliseconds

1 2 3 4 5 6 7 8 91011>>