Lines Matching refs:niceflag

225 	int		niceflag = ((dispflag & DISP_RAW) == 0);  in dflt_display()  local
258 PRINTSTAT(niceflag, "%5s ", "%lld:", nnewfile, ' ', buf); in dflt_display()
259 PRINTSTAT(niceflag, "%5s ", "%lld:", nnamerm, ' ', buf); in dflt_display()
260 PRINTSTAT(niceflag, "%5s ", "%lld:", nnamechg, ' ', buf); in dflt_display()
261 PRINTSTAT(niceflag, "%5s ", "%lld:", nattrret, ' ', buf); in dflt_display()
262 PRINTSTAT(niceflag, "%5s ", "%lld:", nattrchg, ' ', buf); in dflt_display()
263 PRINTSTAT(niceflag, " %5s ", "%lld:", nlookup, ' ', buf); in dflt_display()
264 PRINTSTAT(niceflag, "%5s ", "%lld:", nreaddir, ' ', buf); in dflt_display()
265 PRINTSTAT(niceflag, "%5s ", "%lld:", ndataread, ' ', buf); in dflt_display()
266 PRINTSTAT(niceflag, "%5s ", "%lld:", readthruput, ' ', buf); in dflt_display()
267 PRINTSTAT(niceflag, "%5s ", "%lld:", ndatawrite, ' ', buf); in dflt_display()
268 PRINTSTAT(niceflag, "%5s ", "%lld:", writethruput, ' ', buf); in dflt_display()
275 int niceflag = ((dispflag & DISP_RAW) == 0); in io_display() local
284 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nread), ' ', buf); in io_display()
285 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(read_bytes), ' ', buf); in io_display()
287 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nwrite), ' ', buf); in io_display()
288 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(write_bytes), ' ', buf); in io_display()
290 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreaddir), ' ', buf); in io_display()
291 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(readdir_bytes), ' ', buf); in io_display()
293 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nrwlock), ' ', buf); in io_display()
294 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrwunlock), ' ', buf); in io_display()
302 int niceflag = ((dispflag & DISP_RAW) == 0); in vm_display() local
309 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nmap), ' ', buf); in vm_display()
310 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(naddmap), ' ', buf); in vm_display()
311 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ndelmap), ' ', buf); in vm_display()
312 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetpage), ' ', buf); in vm_display()
313 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nputpage), ' ', buf); in vm_display()
314 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(npageio), ' ', buf); in vm_display()
321 int niceflag = ((dispflag & DISP_RAW) == 0); in attr_display() local
328 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetattr), ' ', buf); in attr_display()
329 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsetattr), ' ', buf); in attr_display()
330 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(ngetsecattr), ' ', buf); in attr_display()
331 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsetsecattr), ' ', buf); in attr_display()
339 int niceflag = ((dispflag & DISP_RAW) == 0); in naming_display() local
347 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nlookup), ' ', buf); in naming_display()
348 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(ncreate), ' ', buf); in naming_display()
349 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nremove), ' ', buf); in naming_display()
350 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nlink), ' ', buf); in naming_display()
351 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrename), ' ', buf); in naming_display()
352 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nmkdir), ' ', buf); in naming_display()
353 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nrmdir), ' ', buf); in naming_display()
354 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreaddir), ' ', buf); in naming_display()
355 PRINTSTAT(niceflag, " %5s ", "%lld:", DELTA(nsymlink), ' ', buf); in naming_display()
356 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(nreadlink), ' ', buf); in naming_display()
361 #define PRINT_VOPSTAT_CMN(niceflag, vop) \ argument
362 if (niceflag) \
364 PRINTSTAT(niceflag, "%5s ", "%lld:", DELTA(n##vop), ' ', buf);
366 #define PRINT_VOPSTAT(niceflag, vop) \ argument
367 PRINT_VOPSTAT_CMN(niceflag, vop); \
368 if (niceflag) \
371 #define PRINT_VOPSTAT_IO(niceflag, vop) \ argument
372 PRINT_VOPSTAT_CMN(niceflag, vop); \
373 PRINTSTAT(niceflag, " %5s\n", "%lld:", \
379 int niceflag = ((dispflag & DISP_RAW) == 0); in vop_display() local
382 if (niceflag) { in vop_display()
387 PRINT_VOPSTAT(niceflag, open); in vop_display()
388 PRINT_VOPSTAT(niceflag, close); in vop_display()
389 PRINT_VOPSTAT_IO(niceflag, read); in vop_display()
390 PRINT_VOPSTAT_IO(niceflag, write); in vop_display()
391 PRINT_VOPSTAT(niceflag, ioctl); in vop_display()
392 PRINT_VOPSTAT(niceflag, setfl); in vop_display()
393 PRINT_VOPSTAT(niceflag, getattr); in vop_display()
394 PRINT_VOPSTAT(niceflag, setattr); in vop_display()
395 PRINT_VOPSTAT(niceflag, access); in vop_display()
396 PRINT_VOPSTAT(niceflag, lookup); in vop_display()
397 PRINT_VOPSTAT(niceflag, create); in vop_display()
398 PRINT_VOPSTAT(niceflag, remove); in vop_display()
399 PRINT_VOPSTAT(niceflag, link); in vop_display()
400 PRINT_VOPSTAT(niceflag, rename); in vop_display()
401 PRINT_VOPSTAT(niceflag, mkdir); in vop_display()
402 PRINT_VOPSTAT(niceflag, rmdir); in vop_display()
403 PRINT_VOPSTAT_IO(niceflag, readdir); in vop_display()
404 PRINT_VOPSTAT(niceflag, symlink); in vop_display()
405 PRINT_VOPSTAT(niceflag, readlink); in vop_display()
406 PRINT_VOPSTAT(niceflag, fsync); in vop_display()
407 PRINT_VOPSTAT(niceflag, inactive); in vop_display()
408 PRINT_VOPSTAT(niceflag, fid); in vop_display()
409 PRINT_VOPSTAT(niceflag, rwlock); in vop_display()
410 PRINT_VOPSTAT(niceflag, rwunlock); in vop_display()
411 PRINT_VOPSTAT(niceflag, seek); in vop_display()
412 PRINT_VOPSTAT(niceflag, cmp); in vop_display()
413 PRINT_VOPSTAT(niceflag, frlock); in vop_display()
414 PRINT_VOPSTAT(niceflag, space); in vop_display()
415 PRINT_VOPSTAT(niceflag, realvp); in vop_display()
416 PRINT_VOPSTAT(niceflag, getpage); in vop_display()
417 PRINT_VOPSTAT(niceflag, putpage); in vop_display()
418 PRINT_VOPSTAT(niceflag, map); in vop_display()
419 PRINT_VOPSTAT(niceflag, addmap); in vop_display()
420 PRINT_VOPSTAT(niceflag, delmap); in vop_display()
421 PRINT_VOPSTAT(niceflag, poll); in vop_display()
422 PRINT_VOPSTAT(niceflag, dump); in vop_display()
423 PRINT_VOPSTAT(niceflag, pathconf); in vop_display()
424 PRINT_VOPSTAT(niceflag, pageio); in vop_display()
425 PRINT_VOPSTAT(niceflag, dumpctl); in vop_display()
426 PRINT_VOPSTAT(niceflag, dispose); in vop_display()
427 PRINT_VOPSTAT(niceflag, getsecattr); in vop_display()
428 PRINT_VOPSTAT(niceflag, setsecattr); in vop_display()
429 PRINT_VOPSTAT(niceflag, shrlock); in vop_display()
430 PRINT_VOPSTAT(niceflag, vnevent); in vop_display()
431 PRINT_VOPSTAT(niceflag, reqzcbuf); in vop_display()
432 PRINT_VOPSTAT(niceflag, retzcbuf); in vop_display()
434 if (niceflag) { in vop_display()