Home | History | Annotate | Download | only in tests

Lines Matching defs:offset

34 	int offset, err;
36 offset = fdt_path_offset(fdt, "/");
37 if (offset < 0)
40 err = fdt_stringlist_count(fdt, offset, "#address-cells");
44 err = fdt_stringlist_search(fdt, offset, "#address-cells", "foo");
58 err = fdt_stringlist_search(fdt, offset, "#address-cells", "");
73 int offset, err;
75 offset = fdt_path_offset(fdt, path);
76 if (offset < 0)
79 err = fdt_stringlist_count(fdt, offset, property);
93 int offset, err;
95 offset = fdt_path_offset(fdt, path);
96 if (offset < 0)
99 err = fdt_stringlist_search(fdt, offset, property, string);
111 int offset, len;
113 offset = fdt_path_offset(fdt, path);
114 if (offset < 0)
117 result = fdt_stringlist_get(fdt, offset, property, idx, &len);