Searched refs:superpath (Results 1 – 2 of 2) sorted by relevance
73 char *superpath; in check_supernode_atdepth() local78 superpath = alloca(pathprefixlen + 1); in check_supernode_atdepth()79 strncpy(superpath, path, pathprefixlen); in check_supernode_atdepth()80 superpath[pathprefixlen] = '\0'; in check_supernode_atdepth()83 path, pdepth, depth, superpath); in check_supernode_atdepth()88 superpathoffset = fdt_path_offset(fdt, superpath); in check_supernode_atdepth()90 FAIL("fdt_path_offset(%s): %s", superpath, in check_supernode_atdepth()
52 def IsSubpath(subpath, superpath): argument55 superpath = os.path.realpath(superpath)57 while len(subpath) >= len(superpath):58 if subpath == superpath: