Home
last modified time | relevance | path

Searched refs:child (Results 1 – 2 of 2) sorted by relevance

/mcuboot-latest/scripts/
Dassemble.py61 for child in node.children.values():
62 if "label" in child.props:
63 label = child.props["label"].val
64 offsets[label] = child.regs[0].addr
65 sizes[label] = child.regs[0].size
/mcuboot-latest/ptest/src/
Dmain.rs76 let child = thread::spawn(move || { in main() localVariable
82 children.push(child); in main()
85 for child in children { in main()
86 child.join().unwrap(); in main()