Searched defs:mSuspended (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/net/http/
H A DHttpsConnection.java127 private boolean mSuspended = false; field in class:HttpsConnection
321 mSuspended = true;
329 if (mSuspended) {
338 if (mSuspended) {
339 // mSuspended is true if we have not had a chance to
342 mSuspended = false;
382 if (mSuspended) {
409 if (mSuspended) {
410 mSuspended = false;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java123 private boolean mSuspended; field in class:GlowPadView.AnimationBundle
126 if (mSuspended) return; // ignore attempts to start animations
153 mSuspended = suspend;
H A DMultiWaveView.java128 private boolean mSuspended; field in class:MultiWaveView.AnimationBundle
131 if (mSuspended) return; // ignore attempts to start animations
158 mSuspended = suspend;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h999 void suspend() { mSuspended++; }
1000 void restore() { if (mSuspended > 0) mSuspended--; }
1001 bool isSuspended() const { return (mSuspended > 0); }
1024 uint32_t mSuspended; // suspend count, > 0 means suspended member in class:android::AudioFlinger::PlaybackThread
1574 bool mSuspended; // effect is suspended: temporarily disabled by framework

Completed in 76 milliseconds