• Home
  • Raw
  • Download

Lines Matching refs:write

71             Self::NotFound => write!(f, "The requested node or property does not exist"),  in fmt()
72 Self::Exists => write!(f, "Attempted to create an existing node or property"), in fmt()
73 Self::NoSpace => write!(f, "Insufficient buffer space to contain the expanded tree"), in fmt()
74 Self::BadOffset => write!(f, "Structure block offset is out-of-bounds or invalid"), in fmt()
75 Self::BadPath => write!(f, "Badly formatted path"), in fmt()
76 Self::BadPhandle => write!(f, "Invalid phandle length or value"), in fmt()
77 Self::BadState => write!(f, "Received incomplete device tree"), in fmt()
78 Self::Truncated => write!(f, "Device tree or sub-block is improperly terminated"), in fmt()
79 Self::BadMagic => write!(f, "Device tree header missing its magic number"), in fmt()
80 Self::BadVersion => write!(f, "Device tree has a version which can't be handled"), in fmt()
81 Self::BadStructure => write!(f, "Device tree has a corrupt structure block"), in fmt()
82 Self::BadLayout => write!(f, "Device tree sub-blocks in unsupported order"), in fmt()
83 Self::Internal => write!(f, "libfdt has failed an internal assertion"), in fmt()
84 Self::BadNCells => write!(f, "Bad format or value of #address-cells or #size-cells"), in fmt()
85 Self::BadValue => write!(f, "Unexpected property value"), in fmt()
86 Self::BadOverlay => write!(f, "Overlay cannot be applied"), in fmt()
87 Self::NoPhandles => write!(f, "Device tree doesn't have any phandle available anymore"), in fmt()
88 Self::BadFlags => write!(f, "Invalid flag or invalid combination of flags"), in fmt()
89 Self::Alignment => write!(f, "Device tree base address is not 8-byte aligned"), in fmt()
90 Self::Unknown(e) => write!(f, "Unknown libfdt error '{e}'"), in fmt()