Searched refs:memoryAlloc (Results 1 – 19 of 19) sorted by relevance
28 void *memoryAlloc(size_t size);
24 return chre::memoryAlloc(bytes); in doAlloc()
23 void *memoryAlloc(size_t size) { in memoryAlloc() function
93 void *(*memoryAlloc)(size_t size); member
99 return UniquePtr<ObjectType>(memoryAlloc<ObjectType>( in MakeUnique()112 auto ptr = UniquePtr<ObjectType>(memoryAlloc<ObjectType>()); in MakeUniqueZeroFill()
69 inline void *memoryAlloc(size_t size) { in memoryAlloc() function
113 inline T *memoryAlloc(Args&&... args) { in memoryAlloc() function114 auto *storage = static_cast<T *>(memoryAlloc(sizeof(T))); in memoryAlloc()
58 T *memoryAlloc(Args&&... args);
170 memoryAlloc(newCapacity * sizeof(ElementType))); in reserve()
26 return chre::memoryAlloc(bytes); in doAlloc()
29 void *memoryAlloc(size_t size) { in memoryAlloc() function
292 event = static_cast<ChreSensorData *>(memoryAlloc(*eventSize)); in allocateLastEvent()462 static_cast<chreSensorThreeAxisData *>(memoryAlloc(memorySize)); in allocateAndPopulateEvent()473 static_cast<chreSensorFloatData *>(memoryAlloc(memorySize)); in allocateAndPopulateEvent()484 static_cast<chreSensorByteData *>(memoryAlloc(memorySize)); in allocateAndPopulateEvent()495 static_cast<chreSensorOccurrenceData *>(memoryAlloc(memorySize)); in allocateAndPopulateEvent()545 auto *callbackData = memoryAlloc<CallbackData>(); in updateLastEvent()824 auto *event = memoryAlloc<struct chreSensorSamplingStatusEvent>(); in postSamplingStatusEvent()892 memoryAlloc<sns_smgr_sensor_status_monitor_ind_msg_v02>(); in handleSensorStatusMonitorIndication()
666 auto *cbData = memoryAlloc<UnloadNanoappCallbackData>(); in handleUnloadNanoappRequest()689 auto *cbData = memoryAlloc<DebugDumpCallbackData>(); in handleDebugDumpRequest()
118 auto *cbState = memoryAlloc<CallbackState>(); in handleScanMonitorStateChange()147 auto *cbState = memoryAlloc<CallbackState>(); in handleScanResponse()304 chreAsyncResult *event = memoryAlloc<chreAsyncResult>(); in postScanMonitorAsyncResultEvent()340 chreAsyncResult *event = memoryAlloc<chreAsyncResult>(); in postScanRequestAsyncResultEvent()
39 char *debugStr = static_cast<char *>(memoryAlloc(kDebugStringSize)); in debugDump()
65 auto *cbState = memoryAlloc<CallbackState>(); in handleLocationSessionStatusChange()311 chreAsyncResult *event = memoryAlloc<chreAsyncResult>(); in postLocationSessionAsyncResultEvent()
403 auto *info = memoryAlloc<chreNanoappInfo>(); in notifyAppStatusChange()
37 using chre::memoryAlloc;
524 return static_cast<uint8_t *>(chre::memoryAlloc(size));