HomeSort by relevance Sort by last modified time
    Searched refs:Condition (Results 1 - 25 of 551) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/service/notification/
Condition.aidl 19 parcelable Condition;
IConditionListener.aidl 20 import android.service.notification.Condition;
24 void onConditionsReceived(in Condition[] conditions);
Condition.java 32 * The current condition of an {@link android.app.AutomaticZenRule}, provided by the
36 public final class Condition implements Parcelable {
39 public static final String SCHEME = "condition";
75 * if the state of the condition is {@link #STATE_TRUE}.
85 * The state of this condition. {@link #STATE_TRUE} will enable Do Not Disturb mode.
102 public Condition(Uri id, String summary, int state) {
107 public Condition(Uri id, String summary, String line1, String line2, int icon,
121 public Condition(Parcel source) {
122 this((Uri)source.readParcelable(Condition.class.getClassLoader()),
148 return new StringBuilder(Condition.class.getSimpleName()).append('['
    [all...]
IConditionProvider.aidl 20 import android.service.notification.Condition;
  /cts/tests/app/src/android/app/cts/
ConditionTest.java 21 import android.service.notification.Condition;
32 private final int mState = Condition.STATE_FALSE;
41 Condition condition = new Condition(mConditionId, mSummary, mState); local
42 assertEquals(expected, condition.describeContents());
46 Condition condition = new Condition(mConditionId, mSummary, mState); local
47 assertEquals(mConditionId, condition.id)
57 Condition condition = new Condition(mConditionId, mSummary, mState); local
    [all...]
  /frameworks/base/libs/hwui/thread/
Barrier.h 20 #include <utils/Condition.h>
27 Barrier(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mOpened(false) { }
44 Condition::WakeUpType mType;
47 mutable Condition mCondition;
Signal.h 29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
49 Condition::WakeUpType mType;
52 mutable Condition mCondition;
Future.h 30 Future(Condition::WakeUpType type = Condition::WAKE_UP_ONE): mBarrier(type), mResult() { }
  /system/core/include/utils/
Condition.h 37 * Condition variable class. The implementation is system-dependent.
39 * Condition variables are paired up with mutexes. Lock the mutex,
42 * use the same mutex for a given Condition.
44 class Condition {
56 Condition();
57 Condition(int type);
58 ~Condition();
59 // Wait on the condition variable. Lock the mutex before calling.
63 // Signal the condition variable, allowing exactly one thread to continue.
65 // Signal the condition variable, allowing one or all threads to continue
    [all...]
threads.h 31 #include <utils/Condition.h>
  /art/compiler/utils/arm/
assembler_arm32.h 42 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
45 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
48 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
51 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
54 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
57 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
60 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
63 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
65 void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
67 void teq(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE
    [all...]
assembler_thumb2.h 72 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
75 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
78 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
81 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
84 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
87 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
90 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
93 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE;
95 void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
97 void teq(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE
    [all...]
assembler_arm.h 353 S = 1 << 20, // set condition code (or leave unchanged)
420 // Set condition codes request.
445 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0;
447 virtual void ands(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) {
452 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0;
454 virtual void eors(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) {
459 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0;
461 virtual void subs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) {
466 Condition cond = AL, SetCc set_cc = kCcDontCare) = 0;
468 virtual void rsbs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL)
    [all...]
  /external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
Condition.java 19 package org.apache.tools.ant.taskdefs.condition;
24 * Interface for conditions to use inside the &lt;condition&gt; task.
27 public interface Condition {
29 * Is this condition true?
30 * @return true if the condition is true
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h 29 class Condition
36 Condition() {
40 ~Condition() {
  /frameworks/base/libs/hwui/renderthread/
RenderTask.cpp 19 #include <utils/Condition.h>
  /external/v8/src/arm/
assembler-arm.h 744 void b(int branch_offset, Condition cond = al);
745 void bl(int branch_offset, Condition cond = al);
747 void blx(Register target, Condition cond = al); // v5 and above
748 void bx(Register target, Condition cond = al); // v5 and above, plus v4t
751 void b(Label* L, Condition cond = al);
752 void b(Condition cond, Label* L) { b(L, cond); }
753 void bl(Label* L, Condition cond = al);
754 void bl(Condition cond, Label* L) { bl(L, cond); }
760 SBit s = LeaveCC, Condition cond = al);
763 SBit s = LeaveCC, Condition cond = al)
    [all...]
  /frameworks/native/libs/gui/tests/
DisconnectWaiter.h 22 #include <utils/Condition.h>
72 Condition mDisconnectCondition;
75 Condition mFrameCondition;
  /packages/apps/Settings/src/com/android/settings/dashboard/conditional/
ConditionManager.java 52 private final ArrayList<Condition> mConditions;
75 private void readFromXml(File xmlFile, ArrayList<Condition> conditions) {
90 Condition condition = createCondition(Class.forName(clz)); local
93 condition.restoreState(bundle);
94 conditions.add(condition);
137 private void addMissingConditions(ArrayList<Condition> conditions) {
148 private void addIfMissing(Class<? extends Condition> clz, ArrayList<Condition> conditions) {
155 private Condition createCondition(Class<?> clz)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 35 import java.util.concurrent.locks.Condition;
44 * All methods assume external synchronization on the condition
57 /** The condition on which the thread is waiting. */
58 private final Condition cond;
74 * @param cond the condition for which to wait
78 public WaitingThread(Condition cond, RouteSpecificPool pool) {
81 throw new IllegalArgumentException("Condition must not be null.");
90 * Obtains the condition.
92 * @return the condition on which to wait, never <code>null</code>
94 public final Condition getCondition()
    [all...]
  /frameworks/native/services/surfaceflinger/
EventControlThread.h 43 Condition mCond;
  /frameworks/wilhelm/src/android/
CallbackProtector.h 60 Condition mCbExitedCondition;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 13 * {@code Condition} factors out the {@code Object} monitor
19 * and statements, a {@code Condition} replaces the use of the Object
22 * <p>Conditions (also known as <em>condition queues</em> or
23 * <em>condition variables</em>) provide a means for one thread to
25 * thread that some state condition may now be true. Because access
28 * condition. The key property that waiting for a condition provides
32 * <p>A {@code Condition} instance is intrinsically bound to a lock.
33 * To obtain a {@code Condition} instance for a particular {@link Lock}
45 * {@link Condition} instances
    [all...]
Lock.java 16 * {@link Condition} objects.
134 * @see Condition
311 * Returns a new {@link Condition} instance that is bound to this
314 * <p>Before waiting on the condition the lock must be held by the
316 * A call to {@link Condition#await()} will atomically release the lock
321 * <p>The exact operation of the {@link Condition} instance depends on
325 * @return A new {@link Condition} instance for this {@code Lock} instance
329 Condition newCondition();
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.h 25 #include <utils/Condition.h>
84 Condition mStartCaptureSignal;
89 Condition mNewNotifySignal;
94 Condition mNewFrameSignal;
100 Condition mNewCaptureSignal;
105 Condition mShutterNotifySignal;
136 Condition mStateChanged;

Completed in 1213 milliseconds

1 2 3 4 5 6 7 8 91011>>