Home | History | Annotate | Download | only in smgr

Lines Matching refs:eventSize

274  * @param eventSize A non-null pointer to indicate the memory size allocated.
277 ChreSensorData *allocateLastEvent(SensorType sensorType, size_t *eventSize) {
278 CHRE_ASSERT(eventSize);
280 *eventSize = 0;
286 *eventSize = sizeof(chreSensorThreeAxisData);
289 *eventSize = sizeof(chreSensorFloatData);
292 *eventSize = sizeof(chreSensorByteData);
295 *eventSize = sizeof(chreSensorOccurrenceData);
302 event = static_cast<ChreSensorData *>(memoryAlloc(*eventSize));
304 *eventSize = 0;