Home
last modified time | relevance | path

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

/system/extras/perfprofd/quipper/base/
Dlogging.h175 #define LAZY_STREAM(stream, condition) \ argument
176 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream)
189 #define LOG_IF(severity, condition) \ argument
190 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
199 #define VLOG_IF(verbose_level, condition) \ argument
201 VLOG_IS_ON(verbose_level) && (condition))
205 #define LOG_ASSERT(condition) \ argument
206 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
207 #define SYSLOG_ASSERT(condition) \ argument
208 SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
[all …]
/system/bt/embdrv/sbc/decoder/include/
Doi_assert.h50 #define OI_ASSERT(condition) \ argument
51 { if (!(condition)) OI_AssertFail(__FILE__, __LINE__, #condition); }
59 #define OI_ASSERT(condition)
/system/bt/osi/src/
Dnon_repeating_timer.c63 void non_repeating_timer_restart_if(non_repeating_timer_t *timer, bool condition) { in non_repeating_timer_restart_if() argument
65 if (condition) in non_repeating_timer_restart_if()
/system/bt/osi/include/
Dnon_repeating_timer.h44 void non_repeating_timer_restart_if(non_repeating_timer_t *timer, bool condition);
/system/core/liblog/
DREADME97 based on a condition being true. IF_ALOG[VDIWE] calls are true if the
101 release builds. ALOG_ASSERT is used to ALOG a message if the condition
102 is false; the condition is part of the logged message.