/bionic/libc/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/development/ndk/platforms/android-3/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/ |
malloc.h | 48 struct mallinfo { struct 61 extern struct mallinfo mallinfo(void); 97 More information can be obtained by calling mallinfo.
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
MemoryUsage.cpp | 59 struct mallinfo minfo = mallinfo();
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
malloc.h | 91 /* SVID2/XPG mallinfo structure */ 93 struct mallinfo { struct 106 /* Returns a copy of the updated current mallinfo. */ 107 extern struct mallinfo mallinfo __MALLOC_P ((void));
|
/bionic/libc/bionic/ |
dlmalloc.h | 17 your system defines a struct mallinfo that is incompatible with the 48 #define dlmallinfo mallinfo 173 value. Unlike mallinfo, this function returns only a precomputed 217 by malloc, realloc etc., is less than this value. Unlike mallinfo, 227 mallinfo() 253 struct mallinfo { struct 268 struct mallinfo dlmallinfo(void); 476 More information can be obtained by calling mallinfo. 626 mspace_mallinfo behaves as mallinfo, but reports properties of 629 struct mallinfo mspace_mallinfo(mspace msp) [all...] |
malloc_debug_common.c | 193 struct mallinfo mallinfo() function
|
dlmalloc.c | 178 All operations (except malloc_stats and mallinfo) have execution 300 execution noticeably. Calling malloc_stats or mallinfo with DEBUG 383 If defined, don't compile "mallinfo". This can be a simple way 388 The type of the fields in the mallinfo struct. This was originally 616 /* ------------------------ Mallinfo declarations ------------------------ */ 620 This version of malloc supports the standard SVID/XPG mallinfo 623 /usr/include/malloc.h defining struct mallinfo. The main 624 declaration needed is the mallinfo struct that is returned (by-copy) 625 by mallinfo(). The malloinfo struct contains a bunch of fields that 627 are instead filled by mallinfo() with other numbers that might be o 648 struct mallinfo { struct [all...] |
/external/valgrind/main/coregrind/ |
pub_core_replacemalloc.h | 53 void (*mallinfo) (ThreadId tid, struct vg_mallinfo* mi); member in struct:vg_mallocfunc_info
|
pub_core_mallocfree.h | 90 /* SVID2/XPG mallinfo structure */ 117 extern void VG_(mallinfo) ( ThreadId tid, struct vg_mallinfo* mi );
|
/frameworks/base/core/jni/ |
android_database_SQLiteDebug.cpp | 59 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace()); 60 struct mallinfo info = dlmallinfo(); 77 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace()); 87 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace());
|
android_os_Debug.cpp | 90 struct mallinfo info = mallinfo(); 100 struct mallinfo info = mallinfo(); 110 struct mallinfo info = mallinfo();
|
/external/valgrind/main/memcheck/tests/ |
mallinfo.c | 14 struct mallinfo mi; 17 mi = mallinfo(); 78 printf("mallinfo() is not supported on this platform.\n");
|
/external/skia/src/core/ |
SkUtils.cpp | 423 struct mallinfo mi = mallinfo(); 431 struct mallinfo mi = mallinfo();
|
/external/chromium/webkit/glue/ |
webkitclient_impl.cc | 530 struct mallinfo minfo = mallinfo();
|
/external/e2fsprogs/e2fsck/ |
util.c | 323 struct mallinfo malloc_info; 340 malloc_info = mallinfo();
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
vg_replace_malloc.c | 91 memcpy() is used by gcc for a struct assignment in mallinfo() 779 /*---------------------- mallinfo ----------------------*/ 783 // doesn't know that the call to mallinfo fills in mi. 784 #define MALLINFO(soname, fnname) \ 791 MALLOC_TRACE("mallinfo()\n"); \ 792 (void)VALGRIND_NON_SIMD_CALL1( info.mallinfo, &mi ); \ 796 MALLINFO(VG_Z_LIBC_SONAME, mallinfo); 891 MALLINFO(NONE,tc_mallinfo); [all...] |