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

/freebsd-9.3-release/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-9.3-release/sys/kern/
H A Dkern_malloc.c119 static struct malloc_type *kmemstatistics; variable in typeref:struct:malloc_type
214 * The malloc_mtx protects the kmemstatistics linked list.
809 mtp->ks_next = kmemstatistics;
810 kmemstatistics = mtp;
833 if (mtp != kmemstatistics) {
834 for (temp = kmemstatistics; temp != NULL;
844 kmemstatistics = mtp->ks_next;
875 for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
910 for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
964 for (mtp = kmemstatistics,
[all...]

Completed in 45 milliseconds