Lines Matching refs:Result

13     error::{to_result, Result},
80 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { in display_name() argument
113 pub fn property_match_string(&self, name: &CStr, match_str: &CStr) -> Result<usize> { in property_match_string()
133 ) -> Result<PropertyGuard<'fwnode, 'name, KVec<T>>> { in property_read_array_vec()
157 pub fn property_count_elem<T: PropertyInt>(&self, name: &CStr) -> Result<usize> { in property_count_elem()
263 ) -> Result<FwNodeReferenceArgs> { in property_get_reference_args()
355 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { in fmt() argument
381 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { in fmt() argument
438 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self>; in read_from_fwnode_property()
444 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> { in read_from_fwnode_property()
480 ) -> Result<&'a mut [Self]>; in read_array_from_fwnode_property()
483 fn read_array_len_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<usize>; in read_array_len_from_fwnode_property()
500 ) -> Result<&'a mut [Self]> {
524 fn read_array_len_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<usize> {
544 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> {
551 fn read_from_fwnode_property(fwnode: &FwNode, name: &CStr) -> Result<Self> {
582 inner: Result<T>,
595 pub fn required_by(self, dev: &super::Device) -> Result<T> { in required_by()