Lines Matching defs:report
151 lcollection_report_t report;
189 while (read(fd, &report, sizeof (report)) == sizeof (report)) {
190 if (report.lcol_id.rcid_type != stat_type)
193 col = col_find(report.lcol_id);
195 col = col_insert(report.lcol_id);
197 report.lcol_stat.lcols_pg_eff;
199 report.lcol_stat.lcols_pg_att;
202 (void) strncpy(col->col_name, report.lcol_name, LC_NAME_LEN);
203 col->col_vmsize = report.lcol_image_size;
204 col->col_rsssize = report.lcol_rss;
205 col->col_rsslimit = report.lcol_rss_cap;
207 if (report.lcol_stat.lcols_pg_eff > col->col_paged_eff_old) {
209 report.lcol_stat.lcols_pg_eff -
211 if (report.lcol_stat.lcols_scan_count > col->col_count)
214 (report.lcol_stat.lcols_scan_count -
219 if (report.lcol_stat.lcols_pg_att > col->col_paged_att_old) {
221 report.lcol_stat.lcols_pg_att -
223 if (report.lcol_stat.lcols_scan_count > col->col_count)
226 (report.lcol_stat.lcols_scan_count -
231 col->col_paged_eff_old = report.lcol_stat.lcols_pg_eff;
232 col->col_paged_att_old = report.lcol_stat.lcols_pg_att;
234 report.lcol_stat.lcols_proc_in -
235 report.lcol_stat.lcols_proc_out;
236 col->col_count = report.lcol_stat.lcols_scan_count;
237 col->col_src_stat = report.lcol_stat;