Searched refs:cond (Results 1 - 14 of 14) sorted by relevance

/system/core/include/cutils/
H A Dlog.h84 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
88 #define ALOGV_IF(cond, ...) ((void)0)
90 #define ALOGV_IF(cond, ...) \
91 ( (CONDITION(cond)) \
105 #define ALOGD_IF(cond, ...) \
106 ( (CONDITION(cond)) \
119 #define ALOGI_IF(cond, ...) \
120 ( (CONDITION(cond)) \
133 #define ALOGW_IF(cond,
[all...]
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_rwlock.c97 #define TZERO(cond) \
98 { int _ret = (cond); if (_ret != 0) ERROR(_ret,"%d:%s", __LINE__, #cond); }
100 #define TTRUE(cond) \
101 { if (!(cond)) PANIC("%d:%s", __LINE__, #cond); }
103 #define TFALSE(cond) \
104 { if (!!(cond)) PANIC("%d:%s", __LINE__, #cond); }
106 #define TEXPECT_INT(cond,va
[all...]
H A Dtest_pthread_mutex.c98 #define TZERO(cond) \
99 { int _ret = (cond); if (_ret != 0) ERROR(_ret,"%d:%s", __LINE__, #cond); }
101 #define TTRUE(cond) \
102 { if (!(cond)) PANIC("%d:%s", __LINE__, #cond); }
104 #define TFALSE(cond) \
105 { if (!!(cond)) PANIC("%d:%s", __LINE__, #cond); }
107 #define TEXPECT_INT(cond,va
[all...]
H A Dtest_cpu_set.c37 #define TEST_INT_EQ(cond,exp) \
39 int _cond = (cond); \
43 __FUNCTION__, __LINE__, #cond, _cond, _exp);\
47 #define T(cond) \
49 if (!(cond)) {\
51 __FUNCTION__, __LINE__, #cond);\
56 #define F(cond) \
58 if (!!(cond)) {\
60 __FUNCTION__, __LINE__, #cond);\
/system/core/include/android/
H A Dlog.h116 void __android_log_assert(const char *cond, const char *tag,
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.cpp122 cond.labelnum = 0;
151 sprintf(cond.label[i], "cond_%d", i);
357 if (Rd == cond.r1) {
358 mMips->MOVE(R_cmp, cond.r1);
359 cond.r1 = R_cmp;
361 if (cond.type == CMP_COND && Rd == cond.r2) {
362 mMips->MOVE(R_cmp2, cond.r2);
363 cond.r2 = R_cmp2;
427 ArmToMipsAssembler::B(cc^1, cond
[all...]
H A DMIPSAssembler.h227 } cond; member in class:android::ArmToMipsAssembler
/system/extras/tests/bionic/libc/bionic/
H A Dtest_mutex.c44 #define assert(cond) do { if ( !(cond) ) panic( "%s:%d: assertion failure: %s\n", __FILE__, __LINE__, #cond ); } while (0)
/system/core/sh/
H A Derror.c154 exverror(int cond, const char *msg, va_list ap) argument
161 TRACE(("exverror(%d, \"", cond));
165 TRACE(("exverror(%d, NULL) pid=%d\n", cond, getpid()));
171 exraise(cond);
189 exerror(int cond, const char *msg, ...) argument
194 exverror(cond, msg, ap);
/system/netd/
H A DCommandListener.h109 void sendGenericOkFail(SocketClient *cli, int cond);
134 int sendGenericOkFail(SocketClient *cli, int cond);
H A DCommandListener.cpp863 void CommandListener::BandwidthControlCmd::sendGenericOkFail(SocketClient *cli, int cond) { argument
864 if (!cond) {
1213 int CommandListener::FirewallCmd::sendGenericOkFail(SocketClient *cli, int cond) { argument
1214 if (!cond) {
/system/core/liblog/
H A Dlogd_write.c238 void __android_log_assert(const char *cond, const char *tag, argument
249 /* Msg not provided, log condition. N.B. Do not use cond directly as
253 if (cond)
254 snprintf(buf, LOG_BUF_SIZE, "Assertion failed: %s", cond);
/system/media/audio_utils/
H A Decho_reference.c62 pthread_cond_t cond; // condition signaled when data is ready to read member in struct:echo_reference
279 pthread_cond_signal(&er->cond);
335 pthread_cond_timedwait_relative_np(&er->cond, &er->lock, &ts);
466 pthread_cond_signal(&er->cond);
/system/core/adb/
H A Dsysdeps_win32.c11 #define assert(cond) do { if (!(cond)) fatal( "assertion failed '%s' on %s:%ld\n", #cond, __FILE__, __LINE__ ); } while (0)

Completed in 1173 milliseconds