Lines Matching refs:drop
313 dtrace_dropdata_t drop; in dt_handle_cpudrop() local
319 bzero(&drop, sizeof (drop)); in dt_handle_cpudrop()
320 drop.dtdda_handle = dtp; in dt_handle_cpudrop()
321 drop.dtdda_cpu = cpu; in dt_handle_cpudrop()
322 drop.dtdda_kind = what; in dt_handle_cpudrop()
323 drop.dtdda_drops = howmany; in dt_handle_cpudrop()
324 drop.dtdda_msg = str; in dt_handle_cpudrop()
342 if ((*dtp->dt_drophdlr)(&drop, dtp->dt_droparg) == DTRACE_HANDLE_ABORT) in dt_handle_cpudrop()
392 dtrace_dropdata_t drop; in dt_handle_status() local
397 bzero(&drop, sizeof (drop)); in dt_handle_status()
398 drop.dtdda_handle = dtp; in dt_handle_status()
399 drop.dtdda_cpu = DTRACE_CPUALL; in dt_handle_status()
400 drop.dtdda_msg = str; in dt_handle_status()
433 drop.dtdda_kind = _dt_droptab[i].dtdrt_kind; in dt_handle_status()
434 drop.dtdda_total = nval; in dt_handle_status()
435 drop.dtdda_drops = nval - oval; in dt_handle_status()
440 if ((*dtp->dt_drophdlr)(&drop, in dt_handle_status()