OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pmalloc
(Results
1 - 9
of
9
) sorted by null
/external/srec/portable/include/
pmemory.h
101
#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.
pmalloc.h
2
*
pmalloc
.h *
/external/srec/portable/
Android.mk
22
src/
pmalloc
.c \
/external/srec/portable/src/
pmemory.c
568
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);
pmemory_ext.c
27
#include "
pmalloc
.h"
339
* There is another function of the same name in
pmalloc
.c, for tracking
pmalloc.c
2
*
pmalloc
.c *
29
#include "
pmalloc
.h"
53
* at by the
pmalloc
initializer.
pmemblock.c
531
* There is another function of the same name in
pmalloc
.c, for tracking
/external/valgrind/main/include/
pub_tool_tooliface.h
448
void* (*
pmalloc
) ( ThreadId tid, SizeT n ),
[
all
...]
/external/srec/doc/
srec.doxygen
539
*/portable/include/
pmalloc
.h \
[
all
...]
Completed in 241 milliseconds