Lines Matching +full:proc +full:- +full:id
5 p (char *)curproc->p_comm
16 if $bp->b_io.bio_dev
19 $bp->b_io.bio_dev->si_udev, \
20 $bp->b_io.bio_data, \
21 $bp->b_io.bio_bcount, \
22 $bp->b_io.bio_blkno, \
23 $bp->b_io.bio_resid
27 $bp->b_io.bio_data, \
28 $bp->b_io.bio_bcount, \
29 $bp->b_io.bio_blkno, \
30 $bp->b_io.bio_resid
32 printf " flags 0x%x: ", $bp->b_flags
33 if $bp->b_flags & 0x10
36 if $bp->b_flags & 0x40
39 if $bp->b_flags & 0x200
42 if $bp->b_flags & 0x800
45 if $bp->b_flags & 0x40000
48 if $bp->b_flags & 0x100000
63 output $bp->b_proc
65 output $bp->b_flags
67 output $bp->b_qindex
69 output $bp->b_usecount
71 output $bp->b_error
73 output $bp->b_bufsize
75 output $bp->b_io.bio_bcount
77 output $bp->b_io.bio_resid
79 output $bp->b_io.bio_dev
81 output $bp->b_io.bio_data
83 output $bp->b_kvasize
85 output $bp->b_lblkno
87 output $bp->b_io.bio_blkno
89 output $bp->b_iodone
91 output $bp->b_vp
93 output $bp->b_dirtyoff
95 output $bp->b_dirtyend
97 output $bp->b_generation
99 output $bp->b_rcred
101 output $bp->b_wcred
103 output $bp->b_validoff
105 output $bp->b_validend
107 output $bp->b_pblkno
109 output $bp->b_saveaddr
111 output $bp->b_savekva
113 output $bp->b_driver1
115 output $bp->b_driver2
117 output $bp->b_spc
119 output $bp->b_npages
136 printf "Buffer data:\n%s", (char *) bp->b_io.bio_data
139 Show the contents (char*) of bp->data in the current frame.
146 output/x bp->b_vnbufs
148 output/x bp->b_freelist
150 output/x bp->b_act
152 output/x bp->b_flags
154 output/x bp->b_qindex
156 output/x bp->b_usecount
158 output/x bp->b_error
160 output/x bp->b_bufsize
162 output/x bp->b_io.bio_bcount
164 output/x bp->b_io.bio_resid
166 output/x bp->b_io.bio_dev
168 output/x bp->b_io.bio_data
170 output/x bp->b_kvasize
172 output/x bp->b_io.bio_blkno
174 output/x bp->b_iodone_chain
176 output/x bp->b_vp
178 output/x bp->b_dirtyoff
180 output/x bp->b_validoff
200 set $proc = allproc.lh_first
202 printf "pid/ID ppid/tid uid pgrp flag st comm/name proc/thread\n"
203 while (--$nproc >= 0)
204 set $pptr = $proc.p_pptr
206 set $pptr = $proc
208 if ($proc.p_state)
209 printf " %5d %6d %4d %5d %8x %2d %-10s %p\n", \
210 $proc.p_pid, $pptr->p_pid, \
211 $proc.p_ucred->cr_ruid, \
212 $proc.p_pgrp->pg_id, $proc.p_flag, $proc.p_state, \
213 &$proc.p_comm[0], $aproc
214 set $thread = $proc->p_threads.tqh_first
216 printf "(%5d) %6d %-10s %p", \
217 $tid, $thread->td_tid, $thread->td_name, $thread
222 set $thread = $thread->td_plist.tqe_next
226 set $aproc = $proc.p_list.le_next
230 set $proc = $aproc
238 # Most are machine-dependent.
242 set $proc = allproc.lh_first
243 while (--$nproc >= 0)
244 if ($proc->p_pid == $arg0)
245 set $pptr = $proc.p_pptr
247 set $pptr = $proc
249 set $myvectorproc = $proc
250 if ($proc.p_state)
251 set $thread = $proc->p_threads.tqh_first
253 printf "%5d %08x %08x %4d %5d %5d %06x %d %-10s ", \
254 $proc.p_pid, $aproc, \
255 $proc.p_uarea, $proc.p_ucred->cr_ruid, $pptr->p_pid, \
256 $proc.p_pgrp->pg_id, $proc.p_flag, $proc.p_state, \
257 &$proc.p_comm[0]
265 set $thread = $thread->td_plist.tqe_next
271 set $proc = $proc.p_list.le_next
280 if (vp->v_type == VBLK)
281 p *vp->v_un.vu_spec.vu_specinfo
282 printf "numoutput: %d\n", vp->v_numoutput
301 Kludge for writing macros This is a no-op except for printing a message See gdb(4) for more det…
306 printf "%s", msgbufp->msg_ptr
321 set $length = $arg1 / 4 - 1
336 exec-file kernel.$arg0
337 symbol-file symbols.$arg0
338 core-file vmcore.$arg0
343 printf "Id Refs Address Size Name\n"
345 printf "%2d %4d 0x%08x %-8x %s\n", \
346 $kld->id, $kld->refs, $kld->address, $kld->size, $kld->filename
347 set $kld = $kld->link.tqe_next
355 define kldstat-v
357 printf "Id Refs Address Size Name\n"
359 printf "%2d %4d 0x%08x %-8x %s\n", \
360 $kld->id, $kld->refs, $kld->address, $kld->size, $kld->filename
362 printf " Id Name\n"
363 set $module = $kld->modules.tqh_first
365 printf " %2d %s\n", $module->id, $module->name
366 set $module = $module->link.tqe_next
368 set $kld = $kld->link.tqe_next