Home
last modified time | relevance | path

Searched refs:ALOG_ASSERT (Results 1 – 6 of 6) sorted by relevance

/system/core/libutils/
DRefBase.cpp325 ALOG_ASSERT(c > 0, "incStrong() called on %p after last strong ref", refs); in incStrong()
345 ALOG_ASSERT(c >= 1, "decStrong() called on %p too many times", refs); in decStrong()
362 ALOG_ASSERT(c >= 0, "forceIncStrong called on %p after ref count underflow", in forceIncStrong()
392 ALOG_ASSERT(c >= 0, "incWeak called on %p after last weak ref", this); in incWeak()
401 ALOG_ASSERT(c >= 1, "decWeak called on %p too many times", this); in decWeak()
435 ALOG_ASSERT(curCount >= 0, in attemptIncStrong()
517 ALOG_ASSERT(curCount > INITIAL_STRONG_VALUE, in attemptIncStrong()
537 ALOG_ASSERT(curCount >= 0, "attemptIncWeak called on %p after underflow", in attemptIncWeak()
DVectorImpl.cpp251 ALOG_ASSERT(index<size(), in replaceAt()
274 ALOG_ASSERT((index+count)<=size(), in removeItemsAt()
298 ALOG_ASSERT(index<capacity(), in editItemLocation()
313 ALOG_ASSERT(index<capacity(), in itemLocation()
372 ALOG_ASSERT(where <= mCount, in _grow()
425 ALOG_ASSERT(where + amount <= mCount, in _shrink()
DString8.cpp82 ALOG_ASSERT(buf, "Unable to allocate shared buffer"); in allocFromUTF8()
105 ALOG_ASSERT(buf, "Unable to allocate shared buffer"); in allocFromUTF16()
127 ALOG_ASSERT(buf, "Unable to allocate shared buffer"); in allocFromUTF32()
DString16.cpp125 ALOG_ASSERT(buf, "Unable to allocate shared buffer"); in String16()
139 ALOG_ASSERT(buf, "Unable to allocate shared buffer"); in String16()
/system/core/libpixelflinger/codeflinger/tinyutils/
DVectorImpl.cpp62 ALOG_ASSERT(!mCount, in ~VectorImpl()
72 ALOG_ASSERT(mItemSize == rhs.mItemSize, in operator =()
181 ALOG_ASSERT(index<size(), in replaceAt()
198 ALOG_ASSERT((index+count)<=size(), in removeItemsAt()
222 ALOG_ASSERT(index<capacity(), in editItemLocation()
234 ALOG_ASSERT(index<capacity(), in itemLocation()
/system/core/include/log/
Dlog.h413 #ifndef ALOG_ASSERT
414 #define ALOG_ASSERT(cond, ...) LOG_FATAL_IF(!(cond), ## __VA_ARGS__) macro