HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 526 - 550 of 7248) sorted by null

<<21222324252627282930>>

  /external/valgrind/drd/tests/
pth_cond_race.c 1 /* Unit test for drd that triggers a race on the use of a POSIX condition
65 // Signal the condition variable.
pth_cond_race.stderr.exp 3 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
pth_cond_destroy_busy.stderr.exp-solaris 2 destruction of condition variable being waited upon: cond 0x........
9 Destroying condition variable that is being waited upon: cond 0x........, mutex 0x........ locked by thread 1
17 condition variable has not been initialized: cond 0x........
22 condition variable has been destroyed while being waited upon: cond 0x........, mutex 0x........ locked by thread 0
29 not a condition variable: cond 0x........
  /external/vogar/src/junit/framework/
Assert.java 136 public static void assertTrue(String message, boolean condition) {
137 if (!condition) {
142 public static void assertTrue(boolean condition) {
143 assertTrue("", condition);
146 public static void assertFalse(String message, boolean condition) {
147 if (condition) {
152 public static void assertFalse(boolean condition) {
153 assertFalse("", condition);
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 22 #include <utils/Condition.h>
30 Condition mContentAvailableCondition;
  /frameworks/base/libs/hwui/thread/
Future.h 30 Future(Condition::WakeUpType type = Condition::WAKE_UP_ONE): mBarrier(type), mResult() { }
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
ZenModeController.java 21 import android.service.notification.Condition;
42 public void onConditionsChanged(Condition[] conditions) {}
  /frameworks/base/services/core/java/com/android/server/notification/
CountdownConditionProvider.java 27 import android.service.notification.Condition;
38 /** Built-in zen condition provider for simple time-based conditions */
126 notifyCondition(newCondition(mTime, Condition.STATE_FALSE));
149 if (DEBUG) Slog.d(TAG, "Countdown condition fired: " + conditionId);
151 notifyCondition(newCondition(time, Condition.STATE_FALSE));
157 private static final Condition newCondition(long time, int state) {
158 return new Condition(ZenModeConfig.toCountdownConditionId(time),
159 "", "", "", 0, state,Condition.FLAG_RELEVANT_NOW);
ConditionProviders.java 32 import android.service.notification.Condition;
58 "system.condition.providers",
83 c.caption = "condition provider";
191 private Condition[] removeDuplicateConditions(String pkg, Condition[] conditions) {
194 final ArrayMap<Uri, Condition> valid = new ArrayMap<Uri, Condition>(N);
198 Slog.w(TAG, "Ignoring condition from " + pkg + " for duplicate id: " + id);
205 final Condition[] rt = new Condition[valid.size()]
388 public Condition condition; field in class:ConditionProviders.ConditionRecord
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
HdcpControl.h 72 Condition mStoppedCondition;
73 Condition mCompletedCondition;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
HdcpControl.h 72 Condition mStoppedCondition;
73 Condition mCompletedCondition;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arc/
branch.s 5 # Condition tests
44 # Condition tests and delay slots
  /art/compiler/utils/arm/
assembler_thumb2.cc 325 inline int16_t Thumb2Assembler::BEncoding16(int32_t offset, Condition cond) {
338 inline int32_t Thumb2Assembler::BEncoding32(int32_t offset, Condition cond) {
361 inline int16_t Thumb2Assembler::CbxzEncoding16(Register rn, int32_t offset, Condition cond) {
526 // Less than (or equal to) 12 bits can be done if we don't need to set condition codes.
543 Condition cond, SetCc set_cc) {
549 Condition cond, SetCc set_cc) {
555 Condition cond, SetCc set_cc) {
561 Condition cond, SetCc set_cc) {
567 Condition cond, SetCc set_cc) {
573 Condition cond, SetCc set_cc)
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
log.h 144 #ifndef CONDITION
145 #define CONDITION(cond) ((cond) != 0)
154 ((CONDITION(cond)) \
169 ((CONDITION(cond)) \
187 ((CONDITION(cond)) \
205 ((CONDITION(cond)) \
223 ((CONDITION(cond)) \
231 * Log a fatal error. If the given condition fails, this stops program
233 * It is NOT stripped from release builds. Note that the condition test
237 ((CONDITION(cond))
    [all...]
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
  /external/autotest/frontend/client/src/autotest/tko/
TkoUtils.java 48 protected static JSONObject getConditionParams(String condition) {
50 params.put("extra_where", new JSONString(condition));
59 final JSONValue condition = args.get("extra_where"); local
60 if (condition == null) {
63 return condition.isString().stringValue();
  /external/deqp/framework/common/
tcuResultCollector.cpp 87 bool ResultCollector::checkResult (bool condition, qpTestResult result, const std::string& msg)
89 if (!condition)
91 return condition;
99 bool ResultCollector::check (bool condition, const std::string& msg)
101 return checkResult(condition, QP_TEST_RESULT_FAIL, msg);
  /external/eigen/bench/btl/generic_bench/utils/
utilities.h 63 # define ASSERT(condition) if (!(condition)){ HERE ; cerr << "CONDITION " << #condition << " NOT VERIFIED"<< endl ; INTERRUPTION(1) ;}
80 # define ASSERT(condition)
  /external/emma/core/java12/com/vladium/util/asserts/
$assert.java 30 * @param condition
33 public static void ASSERT (final boolean condition, final String msg)
37 if (! condition) throw new RuntimeException (msg);
41 public static void ASSERT (final boolean condition)
45 if (! condition) throw new RuntimeException ("ASSERTION FAILURE");
  /external/libopus/win32/VS2010/
silk_common.vcxproj 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
44 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
53 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
54 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
57 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
59 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /external/libpng/projects/vstudio/pngstest/
pngstest.vcxproj 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
32 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="Configuration">
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Library|Win32'" Label="Configuration">
47 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
50 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Library|Win32'" Label="PropertySheets">
51 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
53 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
54 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /external/skia/include/gpu/
GrConfig.h 171 * it may print the message in the compiler log. Obviously, the condition must
178 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
182 #define GR_STATIC_ASSERT(CONDITION) \
184 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/raid/
md_k.h 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/raid/
md_k.h 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/raid/
md_k.h 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)

Completed in 1202 milliseconds

<<21222324252627282930>>