Home | History | Annotate | Download | only in tests

Lines Matching refs:property

32 				   const char *property)
49 * Note that the #address-cells property contains a small 32-bit
55 * that the property does not contain a valid string list it would
65 * property value, which would be necessary for it to determine if a
71 const char *property, int count)
79 err = fdt_stringlist_count(fdt, offset, property);
81 FAIL("Couldn't count strings in property %s of node %s: %d\n",
82 property, path, err);
85 FAIL("String count for property %s of node %s is %d instead of %d\n",
86 path, property, err, count);
90 const char *property, const char *string,
99 err = fdt_stringlist_search(fdt, offset, property, string);
102 FAIL("Index of %s in property %s of node %s is %d, expected %d\n",
103 string, property, path, err, idx);
107 const char *property, int idx,
117 result = fdt_stringlist_get(fdt, offset, property, idx, &len);
119 FAIL("Couldn't extract string %d from property %s of node %s: %d\n",
120 idx, property, path, len);
123 FAIL("String %d in property %s of node %s is %s, expected %s\n",
124 idx, property, path, result, string);