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

1 2 3 4

  /external/lldb/include/lldb/Host/
Condition.h 1 //===-- Condition.h ---------------------------------------------*- C++ -*-===//
23 /// @class Condition Condition.h "lldb/Host/Condition.h"
24 /// @brief A C++ wrapper class for pthread condition variables.
26 /// A class that wraps up a pthread condition (pthread_cond_t). The
27 /// class will create a pthread condition when an instance is
29 /// access to the standard pthread condition calls.
31 class Condition
38 /// The default constructor will initialize a new pthread condition
    [all...]
  /external/lldb/source/Host/common/
Condition.cpp 1 //===-- Condition.cpp -------------------------------------------*- C++ -*-===//
12 #include "lldb/Host/Condition.h"
21 // The default constructor will initialize a new pthread condition
22 // and maintain the condition in the object state.
24 Condition::Condition () :
33 // Destroys the pthread condition that the object owns.
35 Condition::~Condition ()
41 // Unblock all threads waiting for a condition variabl
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h 29 class Condition
36 Condition() {
40 ~Condition() {
  /hardware/qcom/wlan/qcwcn/wifi_hal/
sync.h 44 class Condition
51 Condition() {
55 ~Condition() {
  /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 <condition> task.
27 public interface Condition {
29 * Is this condition true?
30 * @return true if the condition is true
  /external/lldb/tools/debugserver/source/
PThreadCondition.h 33 pthread_cond_t *Condition()
  /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...]
  /external/chromium_org/chrome/installer/util/
work_item.h 66 class Condition {
68 virtual ~Condition() {}
177 // condition->ShouldRun() returns true. The WorkItemList instance
178 // assumes ownership of condition.
179 static WorkItemList* CreateConditionalWorkItemList(Condition* condition);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 12 * {@code Condition} factors out the {@code Object} monitor
18 * and statements, a {@code Condition} replaces the use of the Object
21 * <p>Conditions (also known as <em>condition queues</em> or
22 * <em>condition variables</em>) provide a means for one thread to
24 * thread that some state condition may now be true. Because access
27 * condition. The key property that waiting for a condition provides
31 * <p>A {@code Condition} instance is intrinsically bound to a lock.
32 * To obtain a {@code Condition} instance for a particular {@link Lock}
44 * {@link Condition} instances
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
TestUtils.java 38 public interface Condition {
107 * Wait until a {@code Condition} is met.
109 public static void waitUntil(Condition condition, int timeoutSeconds) {
110 waitUntil("", condition, timeoutSeconds);
114 * Wait until a {@code Condition} is met.
116 public static void waitUntil(String message, Condition condition, int timeoutSeconds) {
120 if (condition.isMet()) {
133 waitUntil("message", new Condition() {
    [all...]
  /frameworks/base/core/java/android/service/notification/
Condition.java 28 * Condition information from condition providers.
33 public class Condition implements Parcelable {
35 public static final String SCHEME = "condition";
53 public Condition(Uri id, String summary, String line1, String line2, int icon,
69 private Condition(Parcel source) {
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
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
queues.py 48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition
88 self._notempty = threading.Condition(threading.Lock())
300 self._cond = Condition()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
88 class Condition(threading._Condition):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
queues.py 48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition
88 self._notempty = threading.Condition(threading.Lock())
300 self._cond = Condition()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
88 class Condition(threading._Condition):
  /art/compiler/utils/arm64/
assembler_arm64.h 37 #define COND_OP(x) static_cast<vixl::Condition>(x)
39 enum Condition {
228 void LoadImmediate(Register dest, int32_t value, Condition cond = AL);
235 void AddConstant(Register rd, int32_t value, Condition cond = AL);
236 void AddConstant(Register rd, Register rn, int32_t value, Condition cond = AL);
  /art/compiler/utils/x86_64/
constants_x86_64.h 86 enum Condition {
  /external/chromium_org/tools/traceline/traceline/
assembler.h 66 enum Condition {
410 void jcc(Condition cc, Label* l) {
  /external/llvm/include/llvm/Support/
ARMWinEH.h 260 /// Condition : 4-bit field providing the condition under which the epilogue is
302 uint8_t Condition() const {
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 108 static PassRefPtr<ConditionEventListener> create(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
110 return adoptRef(new ConditionEventListener(animation, condition));
128 ConditionEventListener(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
131 , m_condition(condition)
138 SVGSMILElement::Condition* m_condition;
155 void SVGSMILElement::Condition::setEventListener(PassRefPtr<ConditionEventListener> eventListener)
160 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int r (…)
596 Condition* condition = m_conditions[n].get(); local
617 Condition* condition = m_conditions[n].get(); local
630 Condition* condition = m_conditions[n].get(); local
650 Condition* condition = m_conditions[n].get(); local
1259 Condition* condition = m_conditions[n].get(); local
    [all...]
  /art/compiler/utils/x86/
constants_x86.h 78 enum Condition {

Completed in 667 milliseconds

1 2 3 4