Searched refs:kmemstatistics (Results 1 - 2 of 2) sorted by path

/freebsd-11-stable/lib/libmemstat/
H A Dmemstat_malloc.c284 void *kmemstatistics; local
314 ret = kread_symbol(kvm, X_KMEMSTATISTICS, &kmemstatistics,
315 sizeof(kmemstatistics), 0);
327 for (typep = kmemstatistics; typep != NULL; typep = type.ks_next) {
/freebsd-11-stable/sys/kern/
H A Dkern_malloc.c114 static struct malloc_type *kmemstatistics; variable in typeref:struct:malloc_type
200 * The malloc_mtx protects the kmemstatistics linked list.
850 mtp->ks_next = kmemstatistics;
851 kmemstatistics = mtp;
874 if (mtp != kmemstatistics) {
875 for (temp = kmemstatistics; temp != NULL;
885 kmemstatistics = mtp->ks_next;
916 for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
952 for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
1006 for (mtp = kmemstatistics,
[all...]

Completed in 291 milliseconds