Searched defs:CHRE_ASSERT (Results 1 - 6 of 6) sorted by relevance

/system/chre/platform/slpi/include/chre/target_platform/
H A Dassert.h24 #define CHRE_ASSERT(condition) do { \ macro
/system/chre/platform/include/chre/platform/
H A Dassert.h28 * CHRE_ASSERT(scalar expression)
38 #ifndef CHRE_ASSERT
39 #error "CHRE_ASSERT must be defined by the target platform's assert.h"
40 #endif // CHRE_ASSERT
44 #define CHRE_ASSERT(condition) ((void) (condition)) macro
64 CHRE_ASSERT(condition); \
/system/chre/platform/linux/include/chre/target_platform/
H A Dassert.h49 * CHRE_ASSERT and expects it to be called at least once. This allows for
71 #define CHRE_ASSERT(condition) \ macro
83 #define CHRE_ASSERT(condition) assert(condition) macro
/system/chre/util/include/chre/util/
H A Dfixed_size_vector_impl.h60 CHRE_ASSERT(!full());
69 CHRE_ASSERT(!full());
78 CHRE_ASSERT(index < mSize); function
89 CHRE_ASSERT(index < mSize); function
99 CHRE_ASSERT(index < mSize);
113 CHRE_ASSERT(index0 < mSize && index1 < mSize);
162 CHRE_ASSERT(newSize <= kCapacity);
H A Darray_queue_impl.h52 CHRE_ASSERT(mSize > 0);
58 CHRE_ASSERT(mSize > 0);
64 CHRE_ASSERT(index < mSize); function
71 CHRE_ASSERT(index < mSize);
207 CHRE_ASSERT(mSize > 0);
H A Ddynamic_vector_impl.h117 CHRE_ASSERT(index < mSize); function
127 CHRE_ASSERT(index < mSize); function
180 CHRE_ASSERT(index <= mSize);
208 CHRE_ASSERT(owns_data());
223 CHRE_ASSERT(index < mSize);
249 CHRE_ASSERT(index0 < mSize && index1 < mSize);
263 CHRE_ASSERT(array != nullptr || elementCount == 0);
289 CHRE_ASSERT(mSize > 0);
295 CHRE_ASSERT(mSize > 0);
301 CHRE_ASSERT(mSiz
[all...]

Completed in 1736 milliseconds