Lines Matching full:subsubnode
96 subsubnode1_offset = check_subnode(fdt, subnode1_offset, "subsubnode"); in main()
97 subsubnode2_offset = check_subnode(fdt, subnode2_offset, "subsubnode@0"); in main()
98 subsubnode2_offset2 = check_subnode(fdt, subnode2_offset, "subsubnode"); in main()
100 check_path_offset(fdt, "/subnode@1/subsubnode", subsubnode1_offset); in main()
101 check_path_offset(fdt, "/subnode@2/subsubnode@0", subsubnode2_offset); in main()
102 check_path_offset(fdt, "/subnode@2/subsubnode", subsubnode2_offset2); in main()
110 check_path_offset(fdt, "/subnode@2////subsubnode", subsubnode2_offset2); in main()
114 check_path_offset_namelen(fdt, "/subnode@1/subsubnode", 10, subnode1_offset); in main()
115 check_path_offset_namelen(fdt, "/subnode@1/subsubnode", 11, subnode1_offset); in main()
118 check_path_offset_namelen(fdt, "/subnode@2/subsubnode@0/more", 23, subsubnode2_offset2); in main()
119 check_path_offset_namelen(fdt, "/subnode@2/subsubnode@0/more", 22, -FDT_ERR_NOTFOUND); in main()
120 check_path_offset_namelen(fdt, "/subnode@2/subsubnode@0/more", 24, subsubnode2_offset2); in main()
121 check_path_offset_namelen(fdt, "/subnode@2/subsubnode@0/more", 25, -FDT_ERR_NOTFOUND); in main()