Lines Matching refs:len
79 size_t len; in TEST_F() local
80 rc = device_tree_prop_get_name(prop, &prop_name, &len); in TEST_F()
84 EXPECT_EQ(len, strlen("compatible")); in TEST_F()
88 rc = device_tree_prop_get_value(prop, (uint8_t**)&prop_value, &len); in TEST_F()
93 EXPECT_EQ(len, strlen(TEST_NODE_COMPAT) + 1); in TEST_F()
117 size_t len; in TEST_F() local
119 rc = device_tree_prop_get_value(prop, &prop_value, &len); in TEST_F()
123 EXPECT_EQ(len, 8); in TEST_F()
177 size_t len; in TEST_F() local
179 rc = device_tree_prop_get_name(prop, &prop_name, &len); in TEST_F()
183 EXPECT_EQ(len, strlen(expected_prop_names[i])); in TEST_F()
243 size_t len; in TEST_F() local
244 rc = device_tree_prop_get_name(subnode_prop, &prop_name, &len); in TEST_F()
248 EXPECT_EQ(len, strlen(subnode_props[i])); in TEST_F()