Symbol: vmem
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2464
kgrep_walk_vmem(uintptr_t addr, const vmem_t *vmem, kgrep_walk_data_t *kg)
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2468
if (strcmp(vmem->vm_name, "heap") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2469
strcmp(vmem->vm_name, "heap32") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2470
strcmp(vmem->vm_name, "heap_core") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2471
strcmp(vmem->vm_name, "heap_lp") != 0)
usr/src/cmd/mdb/common/modules/genunix/genunix.c
2474
if (strcmp(vmem->vm_name, "heap_lp") == 0)
usr/src/cmd/mdb/common/modules/genunix/genunix.c
4330
{ "vmem", "?", "print a vmem_t", vmem },
usr/src/cmd/mdb/common/modules/genunix/kmem.c
2293
whatis_walk_vmem(uintptr_t addr, const vmem_t *vmem, whatis_info_t *wi)
usr/src/cmd/mdb/common/modules/genunix/kmem.c
2296
const char *nm = vmem->vm_name;
usr/src/cmd/mdb/common/modules/genunix/kmem.c
2298
int identifier = ((vmem->vm_cflags & VMC_IDENTIFIER) != 0);
usr/src/cmd/mdb/common/modules/genunix/kmem.c
2304
wi->wi_vmem = vmem;
usr/src/cmd/mdb/common/modules/genunix/kmem.h
97
extern int vmem(uintptr_t, uint_t, int, const mdb_arg_t *);
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
104
leaky_vmem_interested(const vmem_t *vmem)
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
106
if (strcmp(vmem->vm_name, "kmem_oversize") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
107
strcmp(vmem->vm_name, "static_alloc") != 0)
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
113
leaky_vmem(uintptr_t addr, const vmem_t *vmem, leak_mtab_t **lmp)
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
115
if (!leaky_vmem_interested(vmem))
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
126
leaky_estimate_vmem(uintptr_t addr, const vmem_t *vmem, size_t *est)
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
128
if (!leaky_vmem_interested(vmem))
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
131
*est += (int)(vmem->vm_kstat.vk_alloc.value.ui64 -
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
132
vmem->vm_kstat.vk_free.value.ui64);
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
140
vmem_t vmem;
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
150
if (mdb_vread(&vmem, sizeof (vmem), (uintptr_t)c->cache_arena) == -1) {
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
160
if (strcmp(vmem.vm_name, "kmem_default") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
161
strcmp(vmem.vm_name, "kmem_firewall") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/leaky_subr.c
162
strcmp(vmem.vm_name, "static") != 0)
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1033
typegraph_estimate_vmem(uintptr_t addr, const vmem_t *vmem, size_t *est)
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1035
if (strcmp(vmem->vm_name, "kmem_oversize") != 0)
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1038
*est += (size_t)(vmem->vm_kstat.vk_alloc.value.ui64 -
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1039
vmem->vm_kstat.vk_free.value.ui64);
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1200
typegraph_vmem(uintptr_t addr, const vmem_t *vmem, tg_node_t **tgp)
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
1202
if (strcmp(vmem->vm_name, "kmem_oversize") != 0)
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
982
vmem_t vmem;
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
984
if (mdb_vread(&vmem, sizeof (vmem), (uintptr_t)c->cache_arena) == -1) {
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
994
if (strcmp(vmem.vm_name, "kmem_default") != 0 &&
usr/src/cmd/mdb/common/modules/genunix/typegraph.c
995
strcmp(vmem.vm_name, "kmem_firewall") != 0)
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
128
leaky_vmem(uintptr_t addr, const vmem_t *vmem, leak_mtab_t **lmp)
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
130
if (strcmp(vmem->vm_name, "umem_oversize") != 0 &&
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
131
strcmp(vmem->vm_name, "umem_memalign") != 0)
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
135
mdb_warn("can't walk vmem_alloc for %s (%p)", vmem->vm_name,
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
143
leaky_estimate_vmem(uintptr_t addr, const vmem_t *vmem, size_t *est)
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
145
if (strcmp(vmem->vm_name, "umem_oversize") != 0 &&
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
146
strcmp(vmem->vm_name, "umem_memalign") != 0)
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
149
*est += (int)(vmem->vm_kstat.vk_alloc - vmem->vm_kstat.vk_free);
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
353
vmem_t vmem;
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
376
for (vm_next = heap_arena; vm_next != NULL; vm_next = vmem.vm_source) {
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
377
if (mdb_vread(&vmem, sizeof (vmem), (uintptr_t)vm_next) == -1) {
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
429
vmem_t vmem;
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
431
if (mdb_vread(&vmem, sizeof (vmem), (uintptr_t)c->cache_arena) == -1) {
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
441
if (strcmp(vmem.vm_name, "umem_default") != 0 &&
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
442
strcmp(vmem.vm_name, "umem_firewall") != 0) {
usr/src/cmd/mdb/common/modules/libumem/leaky_subr.c
444
c->cache_name, vmem.vm_name));
usr/src/cmd/mdb/common/modules/libumem/libumem.c
520
{ "vmem", "?", "print a vmem_t", vmem },
usr/src/cmd/mdb/common/modules/libumem/umem.c
2128
whatis_walk_vmem(uintptr_t addr, const vmem_t *vmem, whatis_info_t *wi)
usr/src/cmd/mdb/common/modules/libumem/umem.c
2131
const char *nm = vmem->vm_name;
usr/src/cmd/mdb/common/modules/libumem/umem.c
2132
wi->wi_vmem = vmem;
usr/src/cmd/mdb/common/modules/libumem/umem.h
118
extern int vmem(uintptr_t, uint_t, int, const mdb_arg_t *);
usr/src/lib/libfakekernel/common/kmem.c
149
vmem_qcache_reap(struct vmem *vmp)
usr/src/lib/libsmbfs/smb/mbuf.c
299
mb_put_mem(mbchain_t *mbp, const void *vmem, int size, int type)
usr/src/lib/libsmbfs/smb/mbuf.c
310
src = vmem;
usr/src/lib/libsmbfs/smb/mbuf.c
516
md_get_mem(mdchain_t *mbp, void *vmem, int size, int type)
usr/src/lib/libsmbfs/smb/mbuf.c
519
char *dst = vmem;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
862
smb_mbc_put_mem(mbuf_chain_t *mbc, void *vmem, int mem_len)
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
864
caddr_t mem = vmem;
usr/src/uts/common/io/i40e/core/i40e_nvm.c
697
struct i40e_virt_mem vmem;
usr/src/uts/common/io/i40e/core/i40e_nvm.c
706
ret_code = i40e_allocate_virt_mem(hw, &vmem,
usr/src/uts/common/io/i40e/core/i40e_nvm.c
710
data = (u16 *)vmem.va;
usr/src/uts/common/io/i40e/core/i40e_nvm.c
764
i40e_free_virt_mem(hw, &vmem);
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3460
void *vmem;
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3463
vmem = ixgbe_calloc(hw, words, sizeof(u16));
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3464
if (!vmem)
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3466
data_local = (__le16 *)vmem;
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3480
ixgbe_free(hw, vmem, words * sizeof(u16));
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
5260
void *vmem;
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
5271
vmem = ixgbe_calloc(hw, IXGBE_SR_SECTOR_SIZE_IN_WORDS, sizeof(u16));
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
5272
if (!vmem)
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
5274
data = (u16 *)vmem;
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
5324
ixgbe_free(hw, vmem, IXGBE_SR_SECTOR_SIZE_IN_WORDS * sizeof(u16));
usr/src/uts/common/os/kmem.c
3623
spgcnt_t vmem = btop(vmem_size(heap_arena, VMEM_FREE));
usr/src/uts/common/os/kmem.c
3625
return ((size_t)ptob(MAX(MIN(pmem, vmem), 0)));
usr/src/uts/common/sys/vmem.h
114
typedef struct vmem vmem_t;