Lines Matching refs:niceflag

164 	int		niceflag = ((dispflag & DISP_RAW) == 0);  in dflt_display()  local
197 PRINTSTAT(niceflag, "%5s ", "%lld:", nnewfile, buf); in dflt_display()
198 PRINTSTAT(niceflag, "%5s ", "%lld:", nnamerm, buf); in dflt_display()
199 PRINTSTAT(niceflag, "%5s ", "%lld:", nnamechg, buf); in dflt_display()
200 PRINTSTAT(niceflag, "%5s ", "%lld:", nattrret, buf); in dflt_display()
201 PRINTSTAT(niceflag, "%5s ", "%lld:", nattrchg, buf); in dflt_display()
202 PRINTSTAT(niceflag, " %5s ", "%lld:", nlookup, buf); in dflt_display()
203 PRINTSTAT(niceflag, "%5s ", "%lld:", nreaddir, buf); in dflt_display()
204 PRINTSTAT(niceflag, "%5s ", "%lld:", ndataread, buf); in dflt_display()
205 PRINTSTAT(niceflag, "%5s ", "%lld:", readthruput, buf); in dflt_display()
206 PRINTSTAT(niceflag, "%5s ", "%lld:", ndatawrite, buf); in dflt_display()
207 PRINTSTAT(niceflag, "%5s ", "%lld:", writethruput, buf); in dflt_display()
214 int niceflag = ((dispflag & DISP_RAW) == 0); in io_display() local
223 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nread), buf); in io_display()
224 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(read_bytes), buf); in io_display()
226 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nwrite), buf); in io_display()
227 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(write_bytes), buf); in io_display()
229 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreaddir), buf); in io_display()
230 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(readdir_bytes), buf); in io_display()
232 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nrwlock), buf); in io_display()
233 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrwunlock), buf); in io_display()
241 int niceflag = ((dispflag & DISP_RAW) == 0); in vm_display() local
248 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nmap), buf); in vm_display()
249 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(naddmap), buf); in vm_display()
250 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ndelmap), buf); in vm_display()
251 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetpage), buf); in vm_display()
252 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nputpage), buf); in vm_display()
253 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(npageio), buf); in vm_display()
260 int niceflag = ((dispflag & DISP_RAW) == 0); in attr_display() local
267 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetattr), buf); in attr_display()
268 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsetattr), buf); in attr_display()
269 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetsecattr), buf); in attr_display()
270 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsetsecattr), buf); in attr_display()
278 int niceflag = ((dispflag & DISP_RAW) == 0); in naming_display() local
286 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nlookup), buf); in naming_display()
287 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(ncreate), buf); in naming_display()
288 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nremove), buf); in naming_display()
289 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nlink), buf); in naming_display()
290 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrename), buf); in naming_display()
291 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nmkdir), buf); in naming_display()
292 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrmdir), buf); in naming_display()
293 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreaddir), buf); in naming_display()
294 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsymlink), buf); in naming_display()
295 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreadlink), buf); in naming_display()
300 #define PRINT_VOPSTAT_CMN(niceflag, vop) \ argument
301 if (niceflag) \
303 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(n##vop), buf);
305 #define PRINT_VOPSTAT(niceflag, vop) \ argument
306 PRINT_VOPSTAT_CMN(niceflag, vop); \
307 if (niceflag) \
310 #define PRINT_VOPSTAT_IO(niceflag, vop) \ argument
311 PRINT_VOPSTAT_CMN(niceflag, vop); \
312 PRINTSTAT(niceflag, " %5s\n", "%lld:", \
318 int niceflag = ((dispflag & DISP_RAW) == 0); in vop_display() local
321 if (niceflag) { in vop_display()
326 PRINT_VOPSTAT(niceflag, open); in vop_display()
327 PRINT_VOPSTAT(niceflag, close); in vop_display()
328 PRINT_VOPSTAT_IO(niceflag, read); in vop_display()
329 PRINT_VOPSTAT_IO(niceflag, write); in vop_display()
330 PRINT_VOPSTAT(niceflag, ioctl); in vop_display()
331 PRINT_VOPSTAT(niceflag, setfl); in vop_display()
332 PRINT_VOPSTAT(niceflag, getattr); in vop_display()
333 PRINT_VOPSTAT(niceflag, setattr); in vop_display()
334 PRINT_VOPSTAT(niceflag, access); in vop_display()
335 PRINT_VOPSTAT(niceflag, lookup); in vop_display()
336 PRINT_VOPSTAT(niceflag, create); in vop_display()
337 PRINT_VOPSTAT(niceflag, remove); in vop_display()
338 PRINT_VOPSTAT(niceflag, link); in vop_display()
339 PRINT_VOPSTAT(niceflag, rename); in vop_display()
340 PRINT_VOPSTAT(niceflag, mkdir); in vop_display()
341 PRINT_VOPSTAT(niceflag, rmdir); in vop_display()
342 PRINT_VOPSTAT_IO(niceflag, readdir); in vop_display()
343 PRINT_VOPSTAT(niceflag, symlink); in vop_display()
344 PRINT_VOPSTAT(niceflag, readlink); in vop_display()
345 PRINT_VOPSTAT(niceflag, fsync); in vop_display()
346 PRINT_VOPSTAT(niceflag, inactive); in vop_display()
347 PRINT_VOPSTAT(niceflag, fid); in vop_display()
348 PRINT_VOPSTAT(niceflag, rwlock); in vop_display()
349 PRINT_VOPSTAT(niceflag, rwunlock); in vop_display()
350 PRINT_VOPSTAT(niceflag, seek); in vop_display()
351 PRINT_VOPSTAT(niceflag, cmp); in vop_display()
352 PRINT_VOPSTAT(niceflag, frlock); in vop_display()
353 PRINT_VOPSTAT(niceflag, space); in vop_display()
354 PRINT_VOPSTAT(niceflag, realvp); in vop_display()
355 PRINT_VOPSTAT(niceflag, getpage); in vop_display()
356 PRINT_VOPSTAT(niceflag, putpage); in vop_display()
357 PRINT_VOPSTAT(niceflag, map); in vop_display()
358 PRINT_VOPSTAT(niceflag, addmap); in vop_display()
359 PRINT_VOPSTAT(niceflag, delmap); in vop_display()
360 PRINT_VOPSTAT(niceflag, poll); in vop_display()
361 PRINT_VOPSTAT(niceflag, dump); in vop_display()
362 PRINT_VOPSTAT(niceflag, pathconf); in vop_display()
363 PRINT_VOPSTAT(niceflag, pageio); in vop_display()
364 PRINT_VOPSTAT(niceflag, dumpctl); in vop_display()
365 PRINT_VOPSTAT(niceflag, dispose); in vop_display()
366 PRINT_VOPSTAT(niceflag, getsecattr); in vop_display()
367 PRINT_VOPSTAT(niceflag, setsecattr); in vop_display()
368 PRINT_VOPSTAT(niceflag, shrlock); in vop_display()
369 PRINT_VOPSTAT(niceflag, vnevent); in vop_display()
370 PRINT_VOPSTAT(niceflag, reqzcbuf); in vop_display()
371 PRINT_VOPSTAT(niceflag, retzcbuf); in vop_display()
373 if (niceflag) { in vop_display()