Lines Matching refs:ioc
94 def __init__(self, ioc): argument
97 self.enabled = ioc.enabled.value_()
98 self.running = ioc.running.value_() == IOC_RUNNING
99 self.period_ms = ioc.period_us.value_() / 1_000
100 self.period_at = ioc.period_at.value_() / 1_000_000
101 self.vperiod_at = ioc.period_at_vtime.value_() / VTIME_PER_SEC
102 self.vrate_pct = ioc.vtime_base_rate.value_() * 100 / VTIME_PER_USEC
103 self.ivrate_pct = ioc.vtime_rate.counter.value_() * 100 / VTIME_PER_USEC
104 self.busy_level = ioc.busy_level.value_()
105 self.autop_idx = ioc.autop_idx.value_()
106 self.user_cost_model = ioc.user_cost_model.value_()
107 self.user_qos_params = ioc.user_qos_params.value_()
145 ioc = iocg.ioc
158 vrate = ioc.vtime_rate.counter.value_()
159 period_vtime = ioc.period_us.value_() * vrate
166 ioc.period_us.value_()) if self.active else 0
226 ioc = None variable
235 ioc = root_iocg.ioc variable
240 if ioc is None:
249 iocstat = IocStat(ioc)