Searched refs:Table (Results 1 – 2 of 2) sorted by relevance
39 pub(crate) fn new(table: &Table) -> Result<Self> { in new()56 fn table(&self) -> &cpufreq::Table { in table() argument58 unsafe { cpufreq::Table::from_raw(self.ptr) } in table()63 type Target = cpufreq::Table;295 fn config_clks(_dev: &Device, _table: &Table, _opp: &OPP, _scaling_down: bool) -> Result { in config_clks() argument526 &unsafe { Table::from_raw_table(opp_table, &dev) }, in config_clks()600 pub struct Table { struct611 unsafe impl Send for Table {} implementation615 unsafe impl Sync for Table {} implementation617 impl Table { impls[all …]
225 pub struct Table(Opaque<bindings::cpufreq_frequency_table>); struct227 impl Table { impls309 type Target = Table;612 pub fn freq_table(&self) -> Result<&Table> { in freq_table() argument619 Ok(unsafe { Table::from_raw(self.as_ref().freq_table) }) in freq_table()629 pub unsafe fn set_freq_table(&mut self, table: &Table) -> &mut Self { in set_freq_table()
Completed in 9 milliseconds