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

  /system/chre/platform/linux/
memory.cc 23 void *memoryAlloc(size_t size) {
  /system/chre/platform/slpi/
memory.cc 29 void *memoryAlloc(size_t size) {
  /system/chre/util/include/chre/util/
container_support.h 63 * Provides the memoryAlloc function that is normally provided by the CHRE
69 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/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 81 milliseconds