Searched refs:pmalloc (Results 1 - 4 of 4) sorted by relevance

/external/srec/portable/include/
H A Dpmemory.h101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes))
176 PORTABLE_API void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line);
178 PORTABLE_API void *pmalloc(size_t nbBytes);
206 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
226 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
/external/srec/portable/
H A DAndroid.mk22 src/pmalloc.c \
/external/srec/portable/src/
H A Dpmemory.c568 void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line) function
570 void *pmalloc(size_t nbBytes)
600 pfprintf(PSTDERR, L("ESR_INVALID_STATE: pmalloc() ran out of slots"));
711 result = (MemoryData *)pmalloc(nbItems * itemSize, tag, file, line);
713 result = (MemoryData *)pmalloc(nbItems * itemSize);
769 return pmalloc(newSize, NULL, file, line);
771 return pmalloc(newSize);
/external/valgrind/main/include/
H A Dpub_tool_tooliface.h476 void* (*pmalloc) ( ThreadId tid, SizeT n ),

Completed in 93 milliseconds