Home | History | Annotate | Download | only in m_replacemalloc

Lines Matching refs:soname

200 /* Generate a replacement for 'fnname' in object 'soname', which calls
203 #define ALLOC_or_NULL(soname, fnname, vg_replacement) \
205 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n); \
206 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n) \
218 #define ZONEALLOC_or_NULL(soname, fnname, vg_replacement) \
220 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \
221 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \
234 /* Generate a replacement for 'fnname' in object 'soname', which calls
238 #define ALLOC_or_BOMB(soname, fnname, vg_replacement) \
240 void* VG_REPLACE_FUNCTION_EZU(10030,soname,fnname) (SizeT n); \
241 void* VG_REPLACE_FUNCTION_EZU(10030,soname,fnname) (SizeT n) \
263 // whose only purpose is to be a soname synonym place holder
264 // that can be replaced using --soname-synonyms.
416 /* Generate a replacement for 'fnname' in object 'soname', which calls
419 #define ZONEFREE(soname, fnname, vg_replacement) \
421 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p); \
422 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p) \
431 #define FREE(soname, fnname, vg_replacement) \
433 void VG_REPLACE_FUNCTION_EZU(10050,soname,fnname) (void *p); \
434 void VG_REPLACE_FUNCTION_EZU(10050,soname,fnname) (void *p) \
548 #define ZONECALLOC(soname, fnname) \
550 void* VG_REPLACE_FUNCTION_EZU(10060,soname,fnname) \
552 void* VG_REPLACE_FUNCTION_EZU(10060,soname,fnname) \
565 #define CALLOC(soname, fnname) \
567 void* VG_REPLACE_FUNCTION_EZU(10070,soname,fnname) \
569 void* VG_REPLACE_FUNCTION_EZU(10070,soname,fnname) \
607 #define ZONEREALLOC(soname, fnname) \
609 void* VG_REPLACE_FUNCTION_EZU(10080,soname,fnname) \
611 void* VG_REPLACE_FUNCTION_EZU(10080,soname,fnname) \
634 #define REALLOC(soname, fnname) \
636 void* VG_REPLACE_FUNCTION_EZU(10090,soname,fnname) \
638 void* VG_REPLACE_FUNCTION_EZU(10090,soname,fnname) \
676 #define ZONEMEMALIGN(soname, fnname) \
678 void* VG_REPLACE_FUNCTION_EZU(10100,soname,fnname) \
680 void* VG_REPLACE_FUNCTION_EZU(10100,soname,fnname) \
701 #define MEMALIGN(soname, fnname) \
703 void* VG_REPLACE_FUNCTION_EZU(10110,soname,fnname) \
705 void* VG_REPLACE_FUNCTION_EZU(10110,soname,fnname) \
741 #define VALLOC(soname, fnname) \
743 void* VG_REPLACE_FUNCTION_EZU(10120,soname,fnname) ( SizeT size ); \
744 void* VG_REPLACE_FUNCTION_EZU(10120,soname,fnname) ( SizeT size ) \
753 #define ZONEVALLOC(soname, fnname) \
755 void* VG_REPLACE_FUNCTION_EZU(10130,soname,fnname) \
757 void* VG_REPLACE_FUNCTION_EZU(10130,soname,fnname) \
784 #define MALLOPT(soname, fnname) \
786 int VG_REPLACE_FUNCTION_EZU(10140,soname,fnname) ( int cmd, int value ); \
787 int VG_REPLACE_FUNCTION_EZU(10140,soname,fnname) ( int cmd, int value ) \
827 #define MALLOC_TRIM(soname, fnname) \
829 int VG_REPLACE_FUNCTION_EZU(10150,soname,fnname) ( SizeT pad ); \
830 int VG_REPLACE_FUNCTION_EZU(10150,soname,fnname) ( SizeT pad ) \
849 #define POSIX_MEMALIGN(soname, fnname) \
851 int VG_REPLACE_FUNCTION_EZU(10160,soname,fnname) \
853 int VG_REPLACE_FUNCTION_EZU(10160,soname,fnname) \
887 #define MALLOC_USABLE_SIZE(soname, fnname) \
889 SizeT VG_REPLACE_FUNCTION_EZU(10170,soname,fnname) ( void* p ); \
890 SizeT VG_REPLACE_FUNCTION_EZU(10170,soname,fnname) ( void* p ) \
934 #define PANIC(soname, fnname) \
936 void VG_REPLACE_FUNCTION_EZU(10180,soname,fnname) ( void ); \
937 void VG_REPLACE_FUNCTION_EZU(10180,soname,fnname) ( void ) \
955 #define MALLOC_STATS(soname, fnname) \
957 void VG_REPLACE_FUNCTION_EZU(10190,soname,fnname) ( void ); \
958 void VG_REPLACE_FUNCTION_EZU(10190,soname,fnname) ( void ) \
978 #define MALLINFO(soname, fnname) \
980 struct vg_mallinfo VG_REPLACE_FUNCTION_EZU(10200,soname,fnname) ( void ); \
981 struct vg_mallinfo VG_REPLACE_FUNCTION_EZU(10200,soname,fnname) ( void ) \
1038 #define DEFAULT_ZONE(soname, fnname) \
1040 void *VG_REPLACE_FUNCTION_EZU(10210,soname,fnname) ( void ); \
1041 void *VG_REPLACE_FUNCTION_EZU(10210,soname,fnname) ( void ) \
1050 #define ZONE_FROM_PTR(soname, fnname) \
1052 void *VG_REPLACE_FUNCTION_EZU(10220,soname,fnname) ( void* ptr ); \
1053 void *VG_REPLACE_FUNCTION_EZU(10220,soname,fnname) ( void* ptr ) \
1063 #define ZONE_CHECK(soname, fnname) \
1065 int VG_REPLACE_FUNCTION_EZU(10230,soname,fnname)(void* zone); \
1066 int VG_REPLACE_FUNCTION_EZU(10230,soname,fnname)(void* zone) \