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

/frameworks/base/libs/hwui/thread/
H A DBarrier.h20 #include <utils/Condition.h>
27 Barrier(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mOpened(false) { } argument
49 Condition::WakeUpType mType;
52 mutable Condition mCondition;
H A DFuture.h30 Future(Condition::WakeUpType type = Condition::WAKE_UP_ONE): mBarrier(type), mResult() { } argument
H A DSignal.h29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { } argument
47 Condition::WakeUpType mType;
50 mutable Condition mCondition;
/frameworks/base/core/java/android/service/notification/
H A DCondition.java28 * Condition information from condition providers.
33 public class Condition implements Parcelable { class in inherits:Parcelable
53 public Condition(Uri id, String summary, String line1, String line2, int icon, method in class:Condition
69 private Condition(Parcel source) { method in class:Condition
70 this((Uri)source.readParcelable(Condition.class.getClassLoader()),
96 return new StringBuilder(Condition.class.getSimpleName()).append('[')
125 if (!(o instanceof Condition)) return false;
127 final Condition other = (Condition) o;
147 public Condition cop
[all...]

Completed in 460 milliseconds