Home | History | Annotate | Download | only in m_replacemalloc

Lines Matching refs:soname

197 /* Generate a replacement for 'fnname' in object 'soname', which calls
200 #define ALLOC_or_NULL(soname, fnname, vg_replacement) \
202 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n); \
203 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n) \
215 #define ZONEALLOC_or_NULL(soname, fnname, vg_replacement) \
217 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \
218 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \
231 /* Generate a replacement for 'fnname' in object 'soname', which calls
235 #define ALLOC_or_BOMB(soname, fnname, vg_replacement) \
237 void* VG_REPLACE_FUNCTION_EZU(10030,soname,fnname) (SizeT n); \
238 void* VG_REPLACE_FUNCTION_EZU(10030,soname,fnname) (SizeT n) \
397 /* Generate a replacement for 'fnname' in object 'soname', which calls
400 #define ZONEFREE(soname, fnname, vg_replacement) \
402 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p); \
403 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p) \
412 #define FREE(soname, fnname, vg_replacement) \
414 void VG_REPLACE_FUNCTION_EZU(10050,soname,fnname) (void *p); \
415 void VG_REPLACE_FUNCTION_EZU(10050,soname,fnname) (void *p) \
520 #define ZONECALLOC(soname, fnname) \
522 void* VG_REPLACE_FUNCTION_EZU(10060,soname,fnname) \
524 void* VG_REPLACE_FUNCTION_EZU(10060,soname,fnname) \
537 #define CALLOC(soname, fnname) \
539 void* VG_REPLACE_FUNCTION_EZU(10070,soname,fnname) \
541 void* VG_REPLACE_FUNCTION_EZU(10070,soname,fnname) \
576 #define ZONEREALLOC(soname, fnname) \
578 void* VG_REPLACE_FUNCTION_EZU(10080,soname,fnname) \
580 void* VG_REPLACE_FUNCTION_EZU(10080,soname,fnname) \
603 #define REALLOC(soname, fnname) \
605 void* VG_REPLACE_FUNCTION_EZU(10090,soname,fnname) \
607 void* VG_REPLACE_FUNCTION_EZU(10090,soname,fnname) \
642 #define ZONEMEMALIGN(soname, fnname) \
644 void* VG_REPLACE_FUNCTION_EZU(10100,soname,fnname) \
646 void* VG_REPLACE_FUNCTION_EZU(10100,soname,fnname) \
667 #define MEMALIGN(soname, fnname) \
669 void* VG_REPLACE_FUNCTION_EZU(10110,soname,fnname) \
671 void* VG_REPLACE_FUNCTION_EZU(10110,soname,fnname) \
704 #define VALLOC(soname, fnname) \
706 void* VG_REPLACE_FUNCTION_EZU(10120,soname,fnname) ( SizeT size ); \
707 void* VG_REPLACE_FUNCTION_EZU(10120,soname,fnname) ( SizeT size ) \
716 #define ZONEVALLOC(soname, fnname) \
718 void* VG_REPLACE_FUNCTION_EZU(10130,soname,fnname) \
720 void* VG_REPLACE_FUNCTION_EZU(10130,soname,fnname) \
744 #define MALLOPT(soname, fnname) \
746 int VG_REPLACE_FUNCTION_EZU(10140,soname,fnname) ( int cmd, int value ); \
747 int VG_REPLACE_FUNCTION_EZU(10140,soname,fnname) ( int cmd, int value ) \
786 #define MALLOC_TRIM(soname, fnname) \
788 int VG_REPLACE_FUNCTION_EZU(10150,soname,fnname) ( SizeT pad ); \
789 int VG_REPLACE_FUNCTION_EZU(10150,soname,fnname) ( SizeT pad ) \
807 #define POSIX_MEMALIGN(soname, fnname) \
809 int VG_REPLACE_FUNCTION_EZU(10160,soname,fnname) \
811 int VG_REPLACE_FUNCTION_EZU(10160,soname,fnname) \
847 #define MALLOC_USABLE_SIZE(soname, fnname) \
849 SizeT VG_REPLACE_FUNCTION_EZU(10170,soname,fnname) ( void* p ); \
850 SizeT VG_REPLACE_FUNCTION_EZU(10170,soname,fnname) ( void* p ) \
887 #define PANIC(soname, fnname) \
889 void VG_REPLACE_FUNCTION_EZU(10180,soname,fnname) ( void ); \
890 void VG_REPLACE_FUNCTION_EZU(10180,soname,fnname) ( void ) \
908 #define MALLOC_STATS(soname, fnname) \
910 void VG_REPLACE_FUNCTION_EZU(10190,soname,fnname) ( void ); \
911 void VG_REPLACE_FUNCTION_EZU(10190,soname,fnname) ( void ) \
930 #define MALLINFO(soname, fnname) \
932 struct vg_mallinfo VG_REPLACE_FUNCTION_EZU(10200,soname,fnname) ( void ); \
933 struct vg_mallinfo VG_REPLACE_FUNCTION_EZU(10200,soname,fnname) ( void ) \
976 #define DEFAULT_ZONE(soname, fnname) \
978 void *VG_REPLACE_FUNCTION_EZU(10210,soname,fnname) ( void ); \
979 void *VG_REPLACE_FUNCTION_EZU(10210,soname,fnname) ( void ) \
986 #define ZONE_FROM_PTR(soname, fnname) \
988 void *VG_REPLACE_FUNCTION_EZU(10220,soname,fnname) ( void* ptr ); \
989 void *VG_REPLACE_FUNCTION_EZU(10220,soname,fnname) ( void* ptr ) \
998 #define ZONE_CHECK(soname, fnname) \
1000 int VG_REPLACE_FUNCTION_EZU(10230,soname,fnname)(void* zone); \
1001 int VG_REPLACE_FUNCTION_EZU(10230,soname,fnname)(void* zone) \