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

/system/core/include/cutils/
H A Dlog.h84 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
88 #define LOGV_IF(cond, ...) ((void)0)
90 #define LOGV_IF(cond, ...) \
91 ( (CONDITION(cond)) \
105 #define LOGD_IF(cond, ...) \
106 ( (CONDITION(cond)) \
119 #define LOGI_IF(cond, ...) \
120 ( (CONDITION(cond)) \
133 #define LOGW_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/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/core/liblog/
H A Dlogd_write.c223 void __android_log_assert(const char *cond, const char *tag, argument
234 /* Msg not provided, log condition. N.B. Do not use cond directly as
238 if (cond)
239 snprintf(buf, LOG_BUF_SIZE, "Assertion failed: %s", cond);
/system/media/wilhelm/tests/mimeUri/
H A DslesTestLoopUri.cpp40 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
95 ok = pthread_cond_signal(&cond);
243 pthread_cond_wait(&cond, &mutex);
H A DslesTestSlowDownUri.cpp42 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
140 ok = pthread_cond_signal(&cond);
343 pthread_cond_wait(&cond, &mutex);
/system/media/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp59 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
94 ok = pthread_cond_signal(&cond);
312 pthread_cond_wait(&cond, &mutex);
/system/media/audio_utils/
H A Decho_reference.c58 pthread_cond_t cond; // condition signaled when data is ready to read member in struct:echo_reference
252 pthread_cond_signal(&er->cond);
304 pthread_cond_timedwait_relative_np(&er->cond, &er->lock, &ts);
414 pthread_cond_signal(&er->cond);
/system/netd/
H A DCommandListener.h114 void sendGenericOkFail(SocketClient *cli, int cond);
H A DCommandListener.cpp899 void CommandListener::BandwidthControlCmd::sendGenericOkFail(SocketClient *cli, int cond) { argument
900 if (!cond) {
/system/media/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c77 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
126 ok = pthread_cond_signal(&cond);
545 ok = pthread_cond_wait(&cond, &mutex);
/system/media/wilhelm/tests/sandbox/
H A Dxaplay.c62 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
120 ok = pthread_cond_signal(&cond);
470 pthread_cond_wait(&cond, &mutex);
H A Dreverb.c179 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
214 ok = pthread_cond_signal(&cond);
614 pthread_cond_wait(&cond, &mutex);
/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 267 milliseconds