HomeSort by relevance Sort by last modified time
    Searched defs:memoryAlloc (Results 1 - 5 of 5) sorted by null

  /system/chre/util/include/chre/util/
container_support.h 35 * Provides the memoryAlloc function that is normally provided by the CHRE
41 inline void *memoryAlloc(size_t size) {
memory_impl.h 113 inline T *memoryAlloc(Args&&... args) {
114 auto *storage = static_cast<T *>(memoryAlloc(sizeof(T)));
  /system/chre/platform/linux/
memory.cc 23 void *memoryAlloc(size_t size) {
  /system/chre/platform/slpi/
memory.cc 40 void *memoryAlloc(size_t size) {
89 // Must exclude nullptr as it's excluded in memoryAlloc() as well.
  /system/chre/pal/include/chre/pal/
system.h 93 void *(*memoryAlloc)(size_t size);
96 * Return memory allocated via memoryAlloc to the system. Semantics are the
99 * @param pointer A pointer previously returned by memoryAlloc

Completed in 76 milliseconds