Home
last modified time | relevance | path

Searched refs:superpath (Results 1 – 2 of 2) sorted by relevance

/external/dtc/tests/
Dsupernode_atdepth_offset.c73 char *superpath; in check_supernode_atdepth() local
78 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()
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dpath.py52 def IsSubpath(subpath, superpath): argument
55 superpath = os.path.realpath(superpath)
57 while len(subpath) >= len(superpath):
58 if subpath == superpath: