Lines Matching refs:prop
72 struct device_tree_prop* prop = NULL; in TEST_F() local
73 int rc = device_tree_inode_get_prop(_state->root_node, "compatible", &prop); in TEST_F()
75 ASSERT_NE(prop, NULL); in TEST_F()
80 rc = device_tree_prop_get_name(prop, &prop_name, &len); in TEST_F()
88 rc = device_tree_prop_get_value(prop, (uint8_t**)&prop_value, &len); in TEST_F()
96 if (prop) { in TEST_F()
97 device_tree_prop_release(&prop); in TEST_F()
103 struct device_tree_prop* prop = NULL; in TEST_F() local
111 rc = device_tree_inode_get_prop(node, "kaslr-seed", &prop); in TEST_F()
113 ASSERT_NE(prop, NULL); in TEST_F()
119 rc = device_tree_prop_get_value(prop, &prop_value, &len); in TEST_F()
127 rc = device_tree_prop_get_u64(prop, &prop_value_u64); in TEST_F()
133 rc = device_tree_prop_get_u32(prop, &prop_value_u32); in TEST_F()
137 if (prop) { in TEST_F()
138 device_tree_prop_release(&prop); in TEST_F()
148 struct device_tree_prop* prop = NULL; in TEST_F() local
165 rc = device_tree_iprop_iter_get_next_prop(prop_iter, &prop); in TEST_F()
178 ASSERT_NE(prop, NULL); in TEST_F()
179 rc = device_tree_prop_get_name(prop, &prop_name, &len); in TEST_F()
185 device_tree_prop_release(&prop); in TEST_F()
195 if (prop) { in TEST_F()
196 device_tree_prop_release(&prop); in TEST_F()