Lines Matching defs:vmspace
370 struct vmspace { struct
371 struct vm_map vm_map; /* VM address map */
372 struct pmap vm_pmap; /* private physical map */
373 int vm_flags;
374 caddr_t vm_shm; /* SYS5 shared memory private data XXX */
377 segsz_t vm_rssize; /* current resident set size in pages */
378 segsz_t vm_swrss; /* resident set size before last swap */
379 segsz_t vm_tsize; /* text size (bytes) */
380 segsz_t vm_dsize; /* data size (bytes) */
381 segsz_t vm_ssize; /* stack size (bytes) */
382 caddr_t vm_taddr; /* user virtual address of text XXX */
383 caddr_t vm_daddr; /* user virtual address of data XXX */
407 * of the resident vmspace instead of running the binary from scratch, argument
539 vmspace_pmap(struct vmspace *vmspace) in vmspace_pmap()
548 vmspace_resident_count(struct vmspace *vmspace) in vmspace_resident_count()