Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-ifelse.exp1 make: "varmod-ifelse.mk" line 28: Bad condition
2 while evaluating condition "bare words == "literal""
3 make: "varmod-ifelse.mk" line 39: Bad condition
4 while evaluating condition " == """
5 make: "varmod-ifelse.mk" line 47: Bad condition
6 while evaluating condition " == """
7 make: "varmod-ifelse.mk" line 70: Bad condition
8 while evaluating condition "1 == == 2"
12 make: "varmod-ifelse.mk" line 94: Bad condition
13 while evaluating condition "1 == == 2"
[all …]
H A Dcond-late.exp1 make: "cond-late.mk" line 38: Bad condition
2 while evaluating condition " != "no""
H A Dmoderrs.exp105 while evaluating then-branch of condition "FIB"
108 while evaluating then-branch of condition "FIB"
111 while evaluating else-branch of condition "FIB"
114 while evaluating else-branch of condition "FIB"
H A Ddirective-ifmake.mk14 . info ok: positive condition works
16 . warning positive condition fails
/freebsd/crypto/openssl/doc/man3/
H A DBIO_should_retry.pod30 BIO_should_retry() is true if the call that produced this condition
33 If BIO_should_retry() is false then the cause is an error condition.
35 BIO_should_read() is true if the cause of the condition is that the BIO
39 BIO_should_write() is true if the cause of the condition is that the BIO
43 BIO_should_io_special() is true if some "special" condition, that is a
44 reason other than reading or writing is the cause of the condition.
46 BIO_retry_type() returns a mask of the cause of a retry condition
52 condition, it returns the BIO that caused this condition and if
55 the type of BIO that resulted in this condition.
57 BIO_get_retry_reason() returns the reason for a special condition if
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp40 // detect if the condition doesn't pass. If this is the case it means we in OverrideStopInfo()
83 // and the condition doesn't pass. This can happen if you set a breakpoint on in OverrideStopInfo()
91 // ARM mode: check for condition on instruction in OverrideStopInfo()
99 const uint32_t condition = Bits32((uint32_t)opcode, 31, 28); in OverrideStopInfo()
100 if (!ARMConditionPassed(condition, cpsr)) in OverrideStopInfo()
102 // We ARE stopped on an ARM instruction whose condition doesn't in OverrideStopInfo()
113 const uint32_t condition = Bits32(ITSTATE, 7, 4); in OverrideStopInfo() local
114 if (!ARMConditionPassed(condition, cpsr)) { in OverrideStopInfo()
116 // condition doesn't pass so this instruction won't get executed. in OverrideStopInfo()
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h243 inline void Assert(bool condition, const char* file, int line, in Assert() argument
245 if (!condition) { in Assert()
250 inline void Assert(bool condition, const char* file, int line) { in Assert() argument
251 Assert(condition, file, line, "Assertion failed."); in Assert()
256 inline void Expect(bool condition, const char* file, int line, in Expect() argument
258 if (!condition) { in Expect()
263 inline void Expect(bool condition, const char* file, int line) { in Expect() argument
264 Expect(condition, file, line, "Expectation failed."); in Expect()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcondition_variable.cppm
/freebsd/contrib/ntp/sntp/unity/
H A Dunity.h68 …define TEST_ASSERT(condition) … argument
69 …fine TEST_ASSERT_TRUE(condition) UN… argument
70 …ine TEST_ASSERT_UNLESS(condition) UNI… argument
71 …ine TEST_ASSERT_FALSE(condition) UNI… argument
172 …ne TEST_ASSERT_MESSAGE(condition, message) UNIT… argument
173 … TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_… argument
174 …TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_T… argument
175 …TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_T… argument
/freebsd/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.h265 #define WARN(condition, msg) \ argument
267 int __ret_warn_on = !!(condition); \
275 #define WARN_ON(condition) \ argument
277 int __ret_warn_on = !!(condition); \
279 printf("WARN_ON: " #condition "\n"); \
283 #define WARN_ON_ONCE(condition) ({ \ argument
285 int __ret_warn_once = !!(condition); \
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1807 #define GTEST_EXPECT_TRUE(condition) \ argument
1808 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
1810 #define GTEST_EXPECT_FALSE(condition) \ argument
1811 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
1813 #define GTEST_ASSERT_TRUE(condition) \ argument
1814 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, GTEST_FATAL_FAILURE_)
1815 #define GTEST_ASSERT_FALSE(condition) \ argument
1816 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
1823 #define EXPECT_TRUE(condition) GTEST_EXPECT_TRUE(condition) argument
1827 #define EXPECT_FALSE(condition) GTEST_EXPECT_FALSE(condition) argument
[all …]
/freebsd/tools/regression/security/cap_test/
H A Dcap_test.h60 #define CHECK(condition) do { \ argument
61 if (!(condition)) \
63 __func__, __LINE__, #condition); \
/freebsd/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt37 - st,irq{1,2}-ff-wu-1: raise IRQ 1/2 on FF_WU_1 condition
38 - st,irq{1,2}-ff-wu-2: raise IRQ 1/2 on FF_WU_2 condition
39 - st,irq{1,2}-data-ready: raise IRQ 1/2 on data ready condition
40 - st,irq{1,2}-click: raise IRQ 1/2 on click condition
47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
/freebsd/contrib/llvm-project/libcxx/src/
H A Dsystem_error.cpp
/freebsd/contrib/ntp/scripts/stats/
H A DREADME.timecodes44 Note: alarm condition is indicated by other than <SP> at A, which
66 Note: alarm condition is indicated by other than <SP> at A, which
68 been lost for about ten hours; unlock condition is indicated by
85 Note: alarm condition is indicated by ? at A, which occurs during
87 extended period; unlock condition is indicated by other than <SP>
138 Note: The alarm condition is indicated by other than ? at A, which
140 lost for an extended period. A receiver unlock condition is
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-invalid-name1-test.py39 def Assert(condition): argument
40 if not condition:
H A Dgoogletest-param-test-invalid-name2-test.py39 def Assert(condition): argument
40 if not condition:
H A Dgoogletest-uninitialized-test.py41 def Assert(condition): argument
42 if not condition:
H A Dgtest_testbridge_test.py41 def Assert(condition): argument
42 if not condition:
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp115 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled, in BreakpointOptions() argument
123 if (condition && *condition != '\0') { in BreakpointOptions()
124 SetCondition(condition); in BreakpointOptions()
461 void BreakpointOptions::SetCondition(const char *condition) { in SetCondition() argument
462 if (!condition || condition[0] == '\0') { in SetCondition()
463 condition = ""; in SetCondition()
469 m_condition_text.assign(condition); in SetCondition()
/freebsd/contrib/netbsd-tests/kernel/
H A Dt_pty.c109 condition(int fd) in condition() function
138 condition(fd); in pty_open()
144 condition(fd); in pty_open()
169 condition(fd); in tty_open()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dcs35l36.txt78 Configures the threshold at which the overtemperature warning condition occurs.
115 condition is present and the VP brownout condition is in an attacking state.
124 - cirrus,vpbr-wait : Configures the delay time between a brownout condition
129 between consecutive volume attenuation release steps when a brownout condition
133 is reached, the error condition still remains, and this bit is set, the audio
/freebsd/cddl/usr.sbin/dwatch/libexec/
H A Derrno10 # Print when syscall returns with non-zero errno (default) or other condition.
11 # To override the default test condition, use (for example) `-t errno==2' to
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dkernel.h249 #define WARN(condition, ...) ({ \ argument
250 bool __ret_warn_on = (condition); \
258 #define WARN_ONCE(condition, ...) ({ \ argument
259 bool __ret_warn_on = (condition); \
/freebsd/contrib/ntp/libntp/
H A DMakefile.am60 lib/isc/win32/include/isc/condition.h \
127 lib/isc/pthreads/condition.c \
130 lib/isc/nothreads/condition.c \
136 lib/isc/pthreads/condition.c \
142 lib/isc/nothreads/condition.c \
248 lib/isc/win32/condition.c \

12345678910>>...16