Lines Matching defs:pup
1113 prhusage_t *pup;
1122 pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
1144 pup->pr_tstamp = gethrtime();
1146 pup->pr_count = p->p_defunct;
1147 pup->pr_create = p->p_mstart;
1148 pup->pr_term = p->p_mterm;
1150 pup->pr_rtime = p->p_mlreal;
1151 pup->pr_utime = p->p_acct[LMS_USER];
1152 pup->pr_stime = p->p_acct[LMS_SYSTEM];
1153 pup->pr_ttime = p->p_acct[LMS_TRAP];
1154 pup->pr_tftime = p->p_acct[LMS_TFAULT];
1155 pup->pr_dftime = p->p_acct[LMS_DFAULT];
1156 pup->pr_kftime = p->p_acct[LMS_KFAULT];
1157 pup->pr_ltime = p->p_acct[LMS_USER_LOCK];
1158 pup->pr_slptime = p->p_acct[LMS_SLEEP];
1159 pup->pr_wtime = p->p_acct[LMS_WAIT_CPU];
1160 pup->pr_stoptime = p->p_acct[LMS_STOPPED];
1162 pup->pr_minf = p->p_ru.minflt;
1163 pup->pr_majf = p->p_ru.majflt;
1164 pup->pr_nswap = p->p_ru.nswap;
1165 pup->pr_inblk = p->p_ru.inblock;
1166 pup->pr_oublk = p->p_ru.oublock;
1167 pup->pr_msnd = p->p_ru.msgsnd;
1168 pup->pr_mrcv = p->p_ru.msgrcv;
1169 pup->pr_sigs = p->p_ru.nsignals;
1170 pup->pr_vctx = p->p_ru.nvcsw;
1171 pup->pr_ictx = p->p_ru.nivcsw;
1172 pup->pr_sysc = p->p_ru.sysc;
1173 pup->pr_ioch = p->p_ru.ioch;
1183 pup->pr_count++;
1184 praddusage(t, pup);
1190 prcvtusage(pup, upup);
1194 kmem_free(pup, sizeof (*pup));
1203 prhusage_t *pup;
1239 pup = kmem_zalloc(size + sizeof (prhusage_t), KM_SLEEP);
1244 php = (prheader_t *)(pup + 1);
1255 pup->pr_count = p->p_defunct;
1256 pup->pr_tstamp = curtime;
1257 pup->pr_create = p->p_mstart;
1258 pup->pr_term = p->p_mterm;
1260 pup->pr_rtime = p->p_mlreal;
1261 pup->pr_utime = p->p_acct[LMS_USER];
1262 pup->pr_stime = p->p_acct[LMS_SYSTEM];
1263 pup->pr_ttime = p->p_acct[LMS_TRAP];
1264 pup->pr_tftime = p->p_acct[LMS_TFAULT];
1265 pup->pr_dftime = p->p_acct[LMS_DFAULT];
1266 pup->pr_kftime = p->p_acct[LMS_KFAULT];
1267 pup->pr_ltime = p->p_acct[LMS_USER_LOCK];
1268 pup->pr_slptime = p->p_acct[LMS_SLEEP];
1269 pup->pr_wtime = p->p_acct[LMS_WAIT_CPU];
1270 pup->pr_stoptime = p->p_acct[LMS_STOPPED];
1272 pup->pr_minf = p->p_ru.minflt;
1273 pup->pr_majf = p->p_ru.majflt;
1274 pup->pr_nswap = p->p_ru.nswap;
1275 pup->pr_inblk = p->p_ru.inblock;
1276 pup->pr_oublk = p->p_ru.oublock;
1277 pup->pr_msnd = p->p_ru.msgsnd;
1278 pup->pr_mrcv = p->p_ru.msgrcv;
1279 pup->pr_sigs = p->p_ru.nsignals;
1280 pup->pr_vctx = p->p_ru.nvcsw;
1281 pup->pr_ictx = p->p_ru.nivcsw;
1282 pup->pr_sysc = p->p_ru.sysc;
1283 pup->pr_ioch = p->p_ru.ioch;
1285 prcvtusage(pup, upup);
1298 prgetusage(t, pup);
1299 prcvtusage(pup, upup);
1306 kmem_free(pup, size + sizeof (prhusage_t));
1489 prhusage_t *pup;
1497 pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
1523 pup->pr_tstamp = gethrtime();
1524 prgetusage(pnp->pr_common->prc_thread, pup);
1528 prcvtusage(pup, upup);
1532 kmem_free(pup, sizeof (*pup));
2138 prhusage_t *pup;
2147 pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
2169 pup->pr_tstamp = gethrtime();
2171 pup->pr_count = p->p_defunct;
2172 pup->pr_create = p->p_mstart;
2173 pup->pr_term = p->p_mterm;
2175 pup->pr_rtime = p->p_mlreal;
2176 pup->pr_utime = p->p_acct[LMS_USER];
2177 pup->pr_stime = p->p_acct[LMS_SYSTEM];
2178 pup->pr_ttime = p->p_acct[LMS_TRAP];
2179 pup->pr_tftime = p->p_acct[LMS_TFAULT];
2180 pup->pr_dftime = p->p_acct[LMS_DFAULT];
2181 pup->pr_kftime = p->p_acct[LMS_KFAULT];
2182 pup->pr_ltime = p->p_acct[LMS_USER_LOCK];
2183 pup->pr_slptime = p->p_acct[LMS_SLEEP];
2184 pup->pr_wtime = p->p_acct[LMS_WAIT_CPU];
2185 pup->pr_stoptime = p->p_acct[LMS_STOPPED];
2187 pup->pr_minf = p->p_ru.minflt;
2188 pup->pr_majf = p->p_ru.majflt;
2189 pup->pr_nswap = p->p_ru.nswap;
2190 pup->pr_inblk = p->p_ru.inblock;
2191 pup->pr_oublk = p->p_ru.oublock;
2192 pup->pr_msnd = p->p_ru.msgsnd;
2193 pup->pr_mrcv = p->p_ru.msgrcv;
2194 pup->pr_sigs = p->p_ru.nsignals;
2195 pup->pr_vctx = p->p_ru.nvcsw;
2196 pup->pr_ictx = p->p_ru.nivcsw;
2197 pup->pr_sysc = p->p_ru.sysc;
2198 pup->pr_ioch = p->p_ru.ioch;
2208 pup->pr_count++;
2209 praddusage(t, pup);
2215 prcvtusage32(pup, upup);
2219 kmem_free(pup, sizeof (*pup));
2228 prhusage_t *pup;
2264 pup = kmem_zalloc(size + sizeof (prhusage_t), KM_SLEEP);
2269 php = (prheader32_t *)(pup + 1);
2280 pup->pr_count = p->p_defunct;
2281 pup->pr_tstamp = curtime;
2282 pup->pr_create = p->p_mstart;
2283 pup->pr_term = p->p_mterm;
2285 pup->pr_rtime = p->p_mlreal;
2286 pup->pr_utime = p->p_acct[LMS_USER];
2287 pup->pr_stime = p->p_acct[LMS_SYSTEM];
2288 pup->pr_ttime = p->p_acct[LMS_TRAP];
2289 pup->pr_tftime = p->p_acct[LMS_TFAULT];
2290 pup->pr_dftime = p->p_acct[LMS_DFAULT];
2291 pup->pr_kftime = p->p_acct[LMS_KFAULT];
2292 pup->pr_ltime = p->p_acct[LMS_USER_LOCK];
2293 pup->pr_slptime = p->p_acct[LMS_SLEEP];
2294 pup->pr_wtime = p->p_acct[LMS_WAIT_CPU];
2295 pup->pr_stoptime = p->p_acct[LMS_STOPPED];
2297 pup->pr_minf = p->p_ru.minflt;
2298 pup->pr_majf = p->p_ru.majflt;
2299 pup->pr_nswap = p->p_ru.nswap;
2300 pup->pr_inblk = p->p_ru.inblock;
2301 pup->pr_oublk = p->p_ru.oublock;
2302 pup->pr_msnd = p->p_ru.msgsnd;
2303 pup->pr_mrcv = p->p_ru.msgrcv;
2304 pup->pr_sigs = p->p_ru.nsignals;
2305 pup->pr_vctx = p->p_ru.nvcsw;
2306 pup->pr_ictx = p->p_ru.nivcsw;
2307 pup->pr_sysc = p->p_ru.sysc;
2308 pup->pr_ioch = p->p_ru.ioch;
2310 prcvtusage32(pup, upup);
2324 prgetusage(t, pup);
2325 prcvtusage32(pup, upup);
2332 kmem_free(pup, size + sizeof (prhusage_t));
2540 prhusage_t *pup;
2548 pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
2574 pup->pr_tstamp = gethrtime();
2575 prgetusage(pnp->pr_common->prc_thread, pup);
2579 prcvtusage32(pup, upup);
2583 kmem_free(pup, sizeof (*pup));