Lines Matching refs:Result
13 error::{to_result, Result},
82 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in display_name() argument
115 pub fn property_match_string(&self, name: &CStr, match_str: &CStr) -> Result<usize> { in property_match_string()
135 ) -> Result<PropertyGuard<'fwnode, 'name, KVec<T>>> { in property_read_array_vec()
159 pub fn property_count_elem<T: PropertyInt>(&self, name: &CStr) -> Result<usize> { in property_count_elem()
265 ) -> Result<FwNodeReferenceArgs> { in property_get_reference_args()
357 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() argument
383 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() argument
440 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self>; in read_from_fwnode_property()
446 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> { in read_from_fwnode_property()
482 ) -> Result<&'a mut [Self]>; in read_array_from_fwnode_property()
485 fn read_array_len_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<usize>; in read_array_len_from_fwnode_property()
502 ) -> Result<&'a mut [Self]> {
526 fn read_array_len_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<usize> {
546 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> {
553 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> {
584 inner: Result<T>,
597 pub fn required_by(self, dev: &super::Device) -> Result<T> { in required_by()