HomeSort by relevance Sort by last modified time
    Searched refs:CHRE_ASSERT (Results 1 - 25 of 35) sorted by null

1 2

  /system/chre/platform/include/chre/platform/
assert.h 28 * 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))
64 CHRE_ASSERT(condition); \
  /system/chre/platform/slpi/include/chre/target_platform/
assert.h 22 #define CHRE_ASSERT(condition) do { \
  /system/chre/util/include/chre/util/nanoapp/
assert.h 23 * Suppplies a CHRE_ASSERT macro for Nanoapps to use.
31 * Provides the CHRE_ASSERT macro that uses chreAbort to abort the nanoapp upon
37 #define CHRE_ASSERT(condition) do { \
39 chreLog(CHRE_LOG_ERROR, "CHRE_ASSERT at %s:%d", CHRE_FILENAME, \
45 #define CHRE_ASSERT(condition) ((void) (condition))
50 // CHRE_ASSERT.
  /system/chre/apps/spammer/
spammer.cc 47 CHRE_ASSERT(gRunning);
48 CHRE_ASSERT(eventType == kMessageSentEvent);
49 CHRE_ASSERT(data == kMessageSentEventData);
53 CHRE_ASSERT(gRunning);
61 CHRE_ASSERT(gRunning);
62 CHRE_ASSERT(eventType == kRepeatedEvent);
63 CHRE_ASSERT(data == kRepeatedEventData);
90 CHRE_ASSERT(gRunning);
93 CHRE_ASSERT(eventData == kMessageSentEventData);
102 CHRE_ASSERT(eventData == kRepeatedEventData)
    [all...]
  /system/chre/core/include/chre/core/
request_multiplexer_impl.h 28 CHRE_ASSERT(index);
29 CHRE_ASSERT(maximalRequestChanged);
43 CHRE_ASSERT(maximalRequestChanged);
44 CHRE_ASSERT(index < mRequests.size());
55 CHRE_ASSERT(maximalRequestChanged);
56 CHRE_ASSERT(index < mRequests.size());
67 CHRE_ASSERT(maximalRequestChanged);
event.h 48 CHRE_ASSERT(mRefCount != 0);
52 CHRE_ASSERT(mRefCount > 0);
  /system/chre/core/
event_ref_queue.cc 29 CHRE_ASSERT(event != nullptr);
40 CHRE_ASSERT(!mQueue.empty());
sensor_request_manager.cc 94 CHRE_ASSERT(sensorHandle);
112 CHRE_ASSERT(nanoapp);
190 CHRE_ASSERT(info);
264 CHRE_ASSERT(status);
318 CHRE_ASSERT(index);
334 CHRE_ASSERT(requestChanged != nullptr);
335 CHRE_ASSERT(sensor.has_value());
362 CHRE_ASSERT(requestChanged != nullptr);
363 CHRE_ASSERT(sensor.has_value());
376 CHRE_ASSERT(false)
    [all...]
sensor_type.cc 66 CHRE_ASSERT(false);
163 CHRE_ASSERT(false);
214 CHRE_ASSERT(false);
timer_pool.cc 33 CHRE_ASSERT(nanoapp);
64 CHRE_ASSERT(nanoapp);
172 CHRE_ASSERT(insertTimerRequest(cyclicTimerRequest));
wwan_request_manager.cc 36 CHRE_ASSERT(nanoapp);
  /system/chre/apps/unload_tester/
unload_tester.cc 65 CHRE_ASSERT(gotInfo);
66 CHRE_ASSERT(info.appId == chreGetAppId());
67 CHRE_ASSERT(info.appId == kUnloadTesterAppId);
68 CHRE_ASSERT(info.version == kAppVersion);
69 CHRE_ASSERT(info.instanceId == chreGetInstanceId());
  /system/chre/platform/linux/include/chre/target_platform/
assert.h 51 * CHRE_ASSERT and expects it to be called at least once. This allows for
73 #define CHRE_ASSERT(condition) \
85 #define CHRE_ASSERT(condition) assert(condition)
  /system/chre/util/include/chre/util/
heap_impl.h 33 CHRE_ASSERT(index < container.size());
49 CHRE_ASSERT(index < container.size());
79 CHRE_ASSERT(container.size() > 0);
87 CHRE_ASSERT(container.size() > 0);
97 CHRE_ASSERT(index < container.size());
fixed_size_vector_impl.h 34 CHRE_ASSERT(mSize > 0);
40 CHRE_ASSERT(mSize > 0);
46 CHRE_ASSERT(mSize > 0);
52 CHRE_ASSERT(mSize > 0);
89 CHRE_ASSERT(!full());
98 CHRE_ASSERT(!full());
107 CHRE_ASSERT(index < mSize);
118 CHRE_ASSERT(index < mSize);
128 CHRE_ASSERT(index < mSize);
142 CHRE_ASSERT(index0 < mSize && index1 < mSize)
    [all...]
dynamic_vector_impl.h 109 CHRE_ASSERT(!empty());
146 CHRE_ASSERT(index < mSize);
153 CHRE_ASSERT(index < mSize);
177 CHRE_ASSERT(owns_data());
233 CHRE_ASSERT(index <= mSize);
261 CHRE_ASSERT(owns_data());
276 CHRE_ASSERT(index < mSize);
301 CHRE_ASSERT(index0 < mSize && index1 < mSize);
315 CHRE_ASSERT(array != nullptr || elementCount == 0);
341 CHRE_ASSERT(mSize > 0)
    [all...]
array_queue_impl.h 52 CHRE_ASSERT(mSize > 0);
58 CHRE_ASSERT(mSize > 0);
64 CHRE_ASSERT(mSize > 0);
70 CHRE_ASSERT(mSize > 0);
76 CHRE_ASSERT(index < mSize);
83 CHRE_ASSERT(index < mSize);
228 CHRE_ASSERT(mSize > 0);
237 CHRE_ASSERT(mSize > 0);
  /system/chre/platform/linux/
platform_nanoapp.cc 70 CHRE_ASSERT(!isLoaded());
75 CHRE_ASSERT(!isLoaded());
92 CHRE_ASSERT(false);
99 CHRE_ASSERT(!mFilename.empty());
platform_sensor.cc 38 CHRE_ASSERT(sensors);
  /system/chre/platform/shared/
chre_api_sensor.cc 42 CHRE_ASSERT(info);
56 CHRE_ASSERT(status);
platform_sensor_util.cc 29 CHRE_ASSERT(eventData);
  /system/chre/platform/slpi/
platform_nanoapp.cc 74 CHRE_ASSERT(!isLoaded());
98 CHRE_ASSERT(!isLoaded());
115 CHRE_ASSERT(!isLoaded());
121 CHRE_ASSERT(!isLoaded());
154 CHRE_ASSERT(false);
167 CHRE_ASSERT(mAppBinary != nullptr);
205 CHRE_ASSERT(mFilename != nullptr);
host_link.cc 364 CHRE_ASSERT(builder != nullptr);
504 CHRE_ASSERT(buffer != nullptr);
505 CHRE_ASSERT(bufferLen > 0);
506 CHRE_ASSERT(messageLen != nullptr);
570 CHRE_ASSERT(message != nullptr);
571 CHRE_ASSERT(messageLen > 0);
  /system/chre/ash/platform/slpi/smgr/
ash.cc 88 CHRE_ASSERT(calInfo);
89 CHRE_ASSERT(calRequest);
  /system/chre/platform/slpi/see/
see_helper.cc 199 CHRE_ASSERT(msg);
200 CHRE_ASSERT(msgLen);
239 CHRE_ASSERT(msg);
240 CHRE_ASSERT(msgLen);
286 CHRE_ASSERT(msg);
287 CHRE_ASSERT(msgLen);
319 CHRE_ASSERT(msgBuffer);
320 CHRE_ASSERT(msgLen);
345 CHRE_ASSERT(payload || payloadLen == 0);
346 CHRE_ASSERT(msg)
    [all...]

Completed in 296 milliseconds

1 2