Home
last modified time | relevance | path

Searched refs:item (Results 1 – 7 of 7) sorted by relevance

/bootable/libbootloader/gbl/third_party/libzbi/src/
Dlib.rs147 let item = ZbiItem { header: hdr, payload: item_payload }; in parse() localVariable
148 Ok((item, tail)) in parse()
401 let (item, buffer) = in new()
404 Self::construct(item.header, buffer) in new()
565 let (item, _) = in create_entry()
570 .checked_add(item.payload.len()) in create_entry()
678 Ok((item, mut tail)) => { in next()
682 Some(item) in next()
1240 self.item( in item_default()
1248 pub fn item(self, header: ZbiHeader, payload: &'a [u8]) -> Self { in item() method
[all …]
/bootable/libbootloader/gbl/smoltcp/
Dheapless.rs45 pub fn push(&mut self, item: T) -> Result<(), T> { in push()
48 self.0.push(item); in push()
51 _ => Err(item), in push()
/bootable/recovery/install/
Dfuse_install.cpp103 const std::string& item = entries[chosen_item]; in BrowseDirectory() local
109 std::string new_path = path + "/" + item; in BrowseDirectory()
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp212 for (const auto& item : graphic_items) { in GraphicMenu() local
213 graphic_items_.emplace_back(item->Clone()); in GraphicMenu()
246 auto& item = graphic_items_[i]; in DrawItems() local
250 int bar_height = item->height + 4; in DrawItems()
256 draw_funcs_.DrawTextIcon(x, y + offset, item.get()); in DrawItems()
257 offset += item->height; in DrawItems()
274 for (const auto& item : graphic_items) { in Validate() local
275 if (!ValidateGraphicSurface(max_width, max_height, offset, item)) { in Validate()
278 offset += item->height; in Validate()
/bootable/libbootloader/gbl/libbootimg/
DBUILD57 "--blocklist-item={}".format(BLOCKED_ITEMS_RE),
/bootable/deprecated-ota/updater/
Dblockimg.cpp700 dirent* item; in EnumerateStash() local
701 while ((item = readdir(directory.get())) != nullptr) { in EnumerateStash()
702 if (item->d_type != DT_REG) continue; in EnumerateStash()
703 callback(dirname + "/" + item->d_name); in EnumerateStash()
/bootable/recovery/tools/image_generator/
DImageGenerator.java280 Node node = nodeList.item(i); in getTextString()