Lines Matching refs:mtlp
1341 struct memory_type_list *mtlp; in domemstat_malloc() local
1346 mtlp = memstat_mtl_alloc(); in domemstat_malloc()
1347 if (mtlp == NULL) { in domemstat_malloc()
1352 if (memstat_sysctl_malloc(mtlp, 0) < 0) { in domemstat_malloc()
1354 memstat_strerror(memstat_mtl_geterror(mtlp))); in domemstat_malloc()
1358 if (memstat_kvm_malloc(mtlp, kd) < 0) { in domemstat_malloc()
1359 error = memstat_mtl_geterror(mtlp); in domemstat_malloc()
1373 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_malloc()
1402 memstat_mtl_free(mtlp); in domemstat_malloc()
1408 struct memory_type_list *mtlp; in domemstat_zone() local
1412 mtlp = memstat_mtl_alloc(); in domemstat_zone()
1413 if (mtlp == NULL) { in domemstat_zone()
1418 if (memstat_sysctl_uma(mtlp, 0) < 0) { in domemstat_zone()
1420 memstat_strerror(memstat_mtl_geterror(mtlp))); in domemstat_zone()
1424 if (memstat_kvm_uma(mtlp, kd) < 0) { in domemstat_zone()
1425 error = memstat_mtl_geterror(mtlp); in domemstat_zone()
1439 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_zone()
1459 memstat_mtl_free(mtlp); in domemstat_zone()