Lines Matching full:drop

316 	dtrace_dropdata_t drop;  in dt_handle_cpudrop()  local
323 bzero(&drop, sizeof (drop)); in dt_handle_cpudrop()
324 drop.dtdda_handle = dtp; in dt_handle_cpudrop()
325 drop.dtdda_cpu = cpu; in dt_handle_cpudrop()
326 drop.dtdda_kind = what; in dt_handle_cpudrop()
327 drop.dtdda_drops = howmany; in dt_handle_cpudrop()
328 drop.dtdda_msg = str; in dt_handle_cpudrop()
348 tv.tv_sec, tv.tv_usec, (uintmax_t)drop.dtdda_drops, in dt_handle_cpudrop()
349 (uintmax_t)drop.dtdda_total, drop.dtdda_kind, in dt_handle_cpudrop()
350 drop.dtdda_msg); in dt_handle_cpudrop()
356 if ((*dtp->dt_drophdlr)(&drop, dtp->dt_droparg) == DTRACE_HANDLE_ABORT) in dt_handle_cpudrop()
370 "dynamic variable drop" },
374 "dynamic variable drop", " with non-empty rinsing list" },
378 "dynamic variable drop", " with non-empty dirty list" },
382 "speculative drop" },
406 dtrace_dropdata_t drop; in dt_handle_status() local
412 bzero(&drop, sizeof (drop)); in dt_handle_status()
413 drop.dtdda_handle = dtp; in dt_handle_status()
414 drop.dtdda_cpu = DTRACE_CPUALL; in dt_handle_status()
415 drop.dtdda_msg = str; in dt_handle_status()
451 drop.dtdda_kind = _dt_droptab[i].dtdrt_kind; in dt_handle_status()
452 drop.dtdda_total = nval; in dt_handle_status()
453 drop.dtdda_drops = nval - oval; in dt_handle_status()
460 tv.tv_sec, tv.tv_usec, (uintmax_t)drop.dtdda_drops, in dt_handle_status()
461 (uintmax_t)drop.dtdda_total, drop.dtdda_kind, in dt_handle_status()
462 drop.dtdda_msg); in dt_handle_status()
471 if ((*dtp->dt_drophdlr)(&drop, in dt_handle_status()