Searched defs:malloc_info (Results 1 - 4 of 4) sorted by relevance

/external/e2fsprogs/resize/
H A Dresource_track.c66 struct mallinfo malloc_info; local
81 malloc_info = mallinfo();
83 kbytes(malloc_info.arena), kbytes(malloc_info.hblkhd),
84 kbytes(malloc_info.uordblks), kbytes(malloc_info.fordblks));
/external/e2fsprogs/e2fsck/
H A Dmtrace.h145 } malloc_info; typedef in typeref:union:__anon20447
151 extern malloc_info *_heapinfo;
H A Dutil.c377 struct mallinfo malloc_info; local
394 malloc_info = mallinfo();
396 kbytes(malloc_info.arena), kbytes(malloc_info.hblkhd),
397 kbytes(malloc_info.uordblks), kbytes(malloc_info.fordblks));
/external/lldb/examples/darwin/heap_find/
H A Dheap.py774 parser = optparse.OptionParser(description=description, prog='malloc_info',usage=usage)
778 def malloc_info(debugger, command, result, dict): function
789 options.type = 'malloc_info'
1116 # if clients in LLDB type "help malloc_info", they will see the exact same
1117 # output as typing "malloc_info --help".
1120 malloc_info.__doc__ = get_malloc_info_options().format_help()
1124 lldb.debugger.HandleCommand('command script add -f %s.malloc_info malloc_info' % __name__)
1129 print '"malloc_info", "ptr_refs", "cstr_refs", and "objc_refs" commands have been installed, use the "--help" options on these commands for detailed help.'

Completed in 428 milliseconds