Lines Matching refs:uint64_t

180 	uint64_t freemem; 	/* (1 sec) += freemem in pages		*/
181 uint64_t swap_resv; /* (1 sec) += reserved swap in pages */
182 uint64_t swap_alloc; /* (1 sec) += allocated swap in pages */
183 uint64_t swap_avail; /* (1 sec) += unreserved swap in pages */
184 uint64_t swap_free; /* (1 sec) += unallocated swap in pages */
185 uint64_t updates; /* (1 sec) ++ */
196 uint64_t cpu_ticks_idle; /* CPU utilization */
197 uint64_t cpu_ticks_user;
198 uint64_t cpu_ticks_kernel;
199 uint64_t cpu_ticks_wait;
200 uint64_t wait_ticks_io; /* CPU wait time breakdown */
201 uint64_t bread; /* physical block reads */
202 uint64_t bwrite; /* physical block writes (sync+async) */
203 uint64_t lread; /* logical block reads */
204 uint64_t lwrite; /* logical block writes */
205 uint64_t phread; /* raw I/O Reads */
206 uint64_t phwrite; /* raw I/O writes */
207 uint64_t pswitch; /* context switches */
208 uint64_t trap; /* traps */
209 uint64_t intr[PIL_MAX]; /* device interrupts per PIL */
210 uint64_t syscall; /* system calls */
211 uint64_t sysread; /* read() + readv() system calls */
212 uint64_t syswrite; /* write() + writev() system calls */
213 uint64_t sysfork; /* forks */
214 uint64_t sysvfork; /* vforks */
215 uint64_t sysexec; /* execs */
216 uint64_t readch; /* bytes read by rdwr() */
217 uint64_t writech; /* bytes written by rdwr() */
218 uint64_t rcvint; /* XXX: unused (mostly) */
219 uint64_t xmtint; /* XXX: unused */
220 uint64_t mdmint; /* XXX: unused */
221 uint64_t rawch; /* terminal input characters */
222 uint64_t canch; /* chars handled in canonical mode */
223 uint64_t outch; /* terminal output characters */
224 uint64_t msg; /* msg count (msgrcv() + msgsnd()) */
225 uint64_t sema; /* semaphore ops count (semop()) */
226 uint64_t namei; /* pathname lookups */
227 uint64_t ufsiget; /* ufs_iget() calls */
228 uint64_t ufsdirblk; /* directory blocks read */
229 uint64_t ufsipage; /* inodes taken with attached pages */
230 uint64_t ufsinopage; /* inodes taken with no attached pgs */
231 uint64_t procovf; /* failed forks */
232 uint64_t intrblk; /* ints blkd/prempted/rel'd (swtch) */
233 uint64_t intrunpin; /* intr thread unpins pinned thread */
234 uint64_t idlethread; /* times idle thread scheduled */
235 uint64_t inv_swtch; /* involuntary context switches */
236 uint64_t nthreads; /* thread_create()s */
237 uint64_t cpumigrate; /* cpu migrations by threads */
238 uint64_t xcalls; /* xcalls to other cpus */
239 uint64_t mutex_adenters; /* failed mutex enters (adaptive) */
240 uint64_t rw_rdfails; /* rw reader failures */
241 uint64_t rw_wrfails; /* rw writer failures */
242 uint64_t modload; /* times loadable module loaded */
243 uint64_t modunload; /* times loadable module unloaded */
244 uint64_t bawrite; /* physical block writes (async) */
245 uint64_t iowait; /* count of waiters for block I/O */
249 uint64_t pgrec; /* page reclaims (includes pageout) */
250 uint64_t pgfrec; /* page reclaims from free list */
251 uint64_t pgin; /* pageins */
252 uint64_t pgpgin; /* pages paged in */
253 uint64_t pgout; /* pageouts */
254 uint64_t pgpgout; /* pages paged out */
255 uint64_t swapin; /* swapins */
256 uint64_t pgswapin; /* pages swapped in */
257 uint64_t swapout; /* swapouts */
258 uint64_t pgswapout; /* pages swapped out */
259 uint64_t zfod; /* pages zero filled on demand */
260 uint64_t dfree; /* pages freed by daemon or auto */
261 uint64_t scan; /* pages examined by pageout daemon */
262 uint64_t rev; /* revolutions of page daemon hand */
263 uint64_t hat_fault; /* minor page faults via hat_fault() */
264 uint64_t as_fault; /* minor page faults via as_fault() */
265 uint64_t maj_fault; /* major page faults */
266 uint64_t cow_fault; /* copy-on-write faults */
267 uint64_t prot_fault; /* protection faults */
268 uint64_t softlock; /* faults due to software locking req */
269 uint64_t kernel_asflt; /* as_fault()s in kernel addr space */
270 uint64_t pgrrun; /* times pager scheduled */
271 uint64_t execpgin; /* executable pages paged in */
272 uint64_t execpgout; /* executable pages paged out */
273 uint64_t execfree; /* executable pages freed */
274 uint64_t anonpgin; /* anon pages paged in */
275 uint64_t anonpgout; /* anon pages paged out */
276 uint64_t anonfree; /* anon pages freed */
277 uint64_t fspgin; /* fs pages paged in */
278 uint64_t fspgout; /* fs pages paged out */
279 uint64_t fsfree; /* fs pages free */