Lines Matching refs:property_u32
270 pub fn property_u32(&mut self, name: &str, val: u32) -> Result<()> { in property_u32() method
474 fdt.property_u32("u32", 0x12345678).unwrap(); in prop_u32()
511 fdt.property_u32("u32", 0x12345678).unwrap(); in all_props()
589 fdt.property_u32("abc", 0x13579024).unwrap(); in nested_nodes()
591 fdt.property_u32("def", 0x12121212).unwrap(); in nested_nodes()
637 fdt.property_u32("abc", 0x13579024).unwrap(); in prop_name_string_reuse()
639 fdt.property_u32("def", 0x12121212).unwrap(); in prop_name_string_reuse()
640 fdt.property_u32("abc", 0x12121212).unwrap(); // This should reuse the "abc" string. in prop_name_string_reuse()
696 fdt.property_u32("abc\0def", 0) in invalid_prop_name_nul()
719 fdt.property_u32("ok_prop", 1234).unwrap(); in invalid_prop_after_end_node()
721 fdt.property_u32("ok_nested_prop", 5678).unwrap(); in invalid_prop_after_end_node()
723 fdt.property_u32("bad_prop_after_end_node", 1357) in invalid_prop_after_end_node()
731 fdt.property_u32("ok_prop", 1234).unwrap(); in invalid_end_node_out_of_order()
741 fdt.property_u32("ok_prop", 1234).unwrap(); in invalid_finish_while_node_open()
743 fdt.property_u32("ok_nested_prop", 5678).unwrap(); in invalid_finish_while_node_open()