/third_party/musl/src/malloc/linux/ |
H A D | stats.c | 28 extern struct mallinfo je_mallinfo(); 43 struct mallinfo info = je_mallinfo(); in mallinfo2() 56 struct mallinfo mallinfo(void) in mallinfo() function 59 return (struct mallinfo) { in mallinfo()
|
/third_party/musl/porting/linux/user/src/malloc/ |
H A D | stats.c | 28 extern struct mallinfo je_mallinfo(); 43 struct mallinfo info = je_mallinfo(); in mallinfo2() 56 struct mallinfo mallinfo(void) in mallinfo() function 59 return (struct mallinfo) { in mallinfo()
|
/third_party/ltp/testcases/kernel/syscalls/mallinfo/ |
H A D | mallinfo01.c | 10 * Basic mallinfo() test. Refer to glibc test mallinfo2 test 18 static struct mallinfo info1; 37 struct mallinfo info2; in test_mallinfo() 43 info2 = mallinfo(); in test_mallinfo() 46 tst_res(TPASS, "mallinfo() uordblks passed"); in test_mallinfo() 48 tst_res(TFAIL, "mallinfo() uordblks failed"); in test_mallinfo() 53 info2 = mallinfo(); in test_mallinfo() 56 tst_res(TPASS, "mallinfo() ordblks passed"); in test_mallinfo() 58 tst_res(TFAIL, "mallinfo() ordblks failed"); in test_mallinfo() 66 tst_res(TFAIL, "The member of mallinfo struc in setup() [all...] |
H A D | mallinfo02.c | 10 * Basic mallinfo() test for malloc() using sbrk or mmap. 20 struct mallinfo info; in test_mallinfo() 26 info = mallinfo(); in test_mallinfo() 35 info = mallinfo(); in test_mallinfo() 39 info = mallinfo(); in test_mallinfo() 62 TST_TEST_TCONF("system doesn't implement non-POSIX mallinfo()");
|
H A D | mallinfo_common.h | 16 static inline void print_mallinfo(const char *msg, struct mallinfo *m) in print_mallinfo()
|
/third_party/musl/porting/linux/user/include/ |
H A D | malloc.h | 37 struct mallinfo { __MALLINFO_BODY }; struct 39 struct mallinfo mallinfo(void);
|
/third_party/musl/include/ |
H A D | malloc.h | 36 struct mallinfo { __MALLINFO_BODY }; struct 38 struct mallinfo mallinfo(void);
|
/third_party/musl/src/malloc/oldmallocng/ |
H A D | mallinfo.c | 77 struct mallinfo mallinfo() { in mallinfo() function 78 struct mallinfo mi = {0}; in mallinfo()
|
/third_party/ltp/testcases/kernel/syscalls/mallopt/ |
H A D | mallopt01.c | 12 * Basic mallinfo() and mallopt() testing. 16 #include "../mallinfo/mallinfo_common.h" 23 struct mallinfo info; 31 info = mallinfo(); in test_mallopt() 34 tst_res(TFAIL, "mallinfo() failed: uordblks < 20K"); in test_mallopt() 38 tst_res(TFAIL, "mallinfo() failed: smblks != 0"); in test_mallopt() 41 tst_res(TPASS, "mallinfo() succeeded"); in test_mallopt()
|
/third_party/musl/porting/linux/user/src/hook/ |
H A D | musl_malloc_dispatch.h | 23 typedef struct mallinfo (*MallinfoType)(void); 49 MallinfoType mallinfo; member
|
/third_party/musl/src/hook/linux/ |
H A D | musl_malloc_dispatch.h | 45 typedef struct mallinfo (*MallinfoType)(void); 71 MallinfoType mallinfo; member
|
/third_party/musl/libc-test/src/functional/ |
H A D | test-mallinfo.c | 26 struct mallinfo info = mallinfo(); in stats_from_mallinfo() 28 t_error("struct mallinfo contains negative numbers\n"); in stats_from_mallinfo() 132 int result = test_and_report(test_main_thread, 0, "Testing mallinfo main thread"); in main() 134 result &= test_and_report(test_different_threads, 0, "Testing mallinfo different threads"); in main()
|
/third_party/eudev/src/shared/ |
H A D | selinux-util.c | 73 struct mallinfo before_mallinfo, after_mallinfo; in mac_selinux_init() 83 before_mallinfo = mallinfo(); in mac_selinux_init() 110 after_mallinfo = mallinfo(); in mac_selinux_init()
|
/third_party/ltp/testcases/kernel/syscalls/mallinfo2/ |
H A D | Makefile | 9 CFLAGS += -I$(abs_srcdir)/../mallinfo
|
/third_party/skia/bench/ |
H A D | SkSLBench.cpp | 508 auto heap_bytes_used = []() { return mallinfo().uordblks; }; in RunSkSLMemoryBenchmarks()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
H A D | mod.rs | 128 pub struct mallinfo { structure names 1300 pub fn mallinfo() -> ::mallinfo; in mallinfo() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 448 pub struct mallinfo { structure names 3088 pub fn mallinfo() -> ::mallinfo; in mallinfo() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 96 pub struct mallinfo { structure names 3145 pub fn mallinfo() -> ::mallinfo; in mallinfo() functions
|
/third_party/eudev/ |
H A D | configure | 19248 # selinux-util.c uses struct mallinfo which is not available for all C libraries (musl). 19249 for ac_func in mallinfo 19251 ac_fn_c_check_func "$LINENO" "mallinfo" "ac_cv_func_mallinfo"
|