Home
last modified time | relevance | path

Searched refs:walk_path (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_os.py404 walk_path = join(test_support.TESTFN, "TEST1")
405 sub1_path = join(walk_path, "SUB1")
407 sub2_path = join(walk_path, "SUB2")
408 tmp1_path = join(walk_path, "tmp1")
430 all = list(os.walk(walk_path))
437 self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
444 for root, dirs, files in os.walk(walk_path):
451 self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
455 all = list(os.walk(walk_path, topdown=False))
462 self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
[all …]
/external/python/cpython3/Lib/test/
Dtest_os.py891 self.walk_path = join(support.TESTFN, "TEST1")
892 self.sub1_path = join(self.walk_path, "SUB1")
894 sub2_path = join(self.walk_path, "SUB2")
896 tmp1_path = join(self.walk_path, "tmp1")
941 all = list(self.walk(self.walk_path))
951 self.assertEqual(all[0], (self.walk_path, ["SUB1", "SUB2"], ["tmp1"]))
956 def test_walk_prune(self, walk_path=None): argument
957 if walk_path is None:
958 walk_path = self.walk_path
961 for root, dirs, files in self.walk(walk_path):
[all …]
/external/avb/examples/uefi/
Duefi_avb_ops.c331 static EFI_STATUS walk_path(IN EFI_DEVICE_PATH* init, in walk_path() function
420 err = walk_path(init_path, walker_path, &(*io_path), &path_bytes); in get_disk_block_io()