Lines Matching defs:t

262 		    "usage:\t%s [-rslF] [-A start[,end]] { pid | core } ...\n",
265 "\t\t(report process address maps)\n");
267 "\t%s -L [-rslF] [-A start[,end]] pid ...\n", command);
269 "\t\t(report process address maps lgroups mappings)\n");
271 "\t%s -x [-aslF] [-A start[,end]] pid ...\n", command);
273 "\t\t(show resident/anon/locked mapping details)\n");
275 "\t%s -S [-alF] [-A start[,end]] { pid | core } ...\n",
278 "\t\t(show swap reservations)\n\n");
280 "\t-a: include shared mappings in -[xS] summary\n");
282 "\t-r: show reserved address maps\n");
284 "\t-s: show hardware page sizes\n");
286 "\t-l: show unresolved dynamic linker map names\n");
288 "\t-F: force grabbing of the target process\n");
290 "\t-L: show lgroup mappings\n");
292 "\t-A start,end: limit output to the specified range\n");
379 (void) printf("core '%s' of %d:\t%.70s\n",
393 (void) printf("%d:\t%.70s\n",
398 struct totals t;
402 * to make sure the address space doesn't change during
434 (void) memset(&t, 0, sizeof (t));
497 look_xmap_nopgsz, &t);
506 printK(t.total_size, size_width);
507 printK(t.total_rss, size_width);
508 printK(t.total_anon, size_width);
509 printK(t.total_locked, size_width);
520 rc += iter_xmap(look_xmap_nopgsz, &t);
529 printK(t.total_size, size_width);
530 printK(t.total_swap, size_width);
537 rc += iter_map(look_map, &t);
546 rc += iter_xmap(look_smap, &t);
554 rc += iter_xmap(look_smap, &t);
557 rc += iter_map(look_map, &t);
563 size_width, t.total_size);
684 struct totals *t = data;
697 * for it. We don't want to report the heap as a.out's data.
733 t->total_size += size;
775 t->total_size += ROUNDUP_KB(size);
821 struct totals *t = data;
835 * for it. We don't want to report the heap as a.out's data.
873 t->total_size += size;
917 t->total_size += ROUNDUP_KB(size);
931 struct totals *t = data;
939 * for it. We don't want to report the heap as a.out's data.
965 t->total_size += ROUNDUP_KB(pmp->pr_size);
966 t->total_rss += pmp->pr_rss * (pmp->pr_pagesize / KILOBYTE);
967 t->total_anon += ANON(pmp) * (pmp->pr_pagesize / KILOBYTE);
968 t->total_locked += (pmp->pr_locked * (pmp->pr_pagesize / KILOBYTE));
980 struct totals *t = data;
1018 * for it. We don't want to report the heap as a.out's data.
1037 t->total_size += ROUNDUP_KB(pmp->pr_size);
1038 t->total_rss += pmp->pr_rss * kperpage;
1039 t->total_anon += ANON(pmp) * kperpage;
1040 t->total_locked += pmp->pr_locked * kperpage;
1041 t->total_swap += swap * kperpage;