Home
last modified time | relevance | path

Searched refs:paths (Results 1 – 25 of 83) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dwin_add2path.py36 paths = [envpath]
39 paths.append(path)
41 envpath = os.pathsep.join(paths)
43 return paths, envpath
46 paths, envpath = modify()
47 if len(paths) > 1:
49 print '\n'.join(paths[1:])
Dpysource.py91 def walk_python_files(paths, is_python=looks_like_python, exclude_dirs=None): argument
104 for path in paths:
Dfindnocoding.py19 def walk_python_files(self, paths, *args, **kwargs): argument
20 for path in paths:
/device/google/cuttlefish/host/commands/stop_cvd/
Dmain.cc57 std::set<std::string> paths; in FallbackPaths() local
59 paths.insert(parent_path + "/cuttlefish_assembly"); in FallbackPaths()
60 paths.insert(parent_path + "/cuttlefish_assembly/*"); in FallbackPaths()
70 paths.insert(instance_dir); in FallbackPaths()
72 paths.insert(instance_dir + "/*"); in FallbackPaths()
74 paths.insert(instance_dir + "/tombstones/*"); in FallbackPaths()
76 paths.insert(instance_dir + "/" + std::string(vsoc::kInternalDirName) + "/*"); in FallbackPaths()
78 return paths; in FallbackPaths()
96 std::set<pid_t> GetCandidateProcessGroups(const std::set<std::string>& paths) { in GetCandidateProcessGroups() argument
99 for (const auto& path : paths) { in GetCandidateProcessGroups()
[all …]
/device/google/cuttlefish/host/commands/fetcher/
Dbuild_api.h65 DirectoryBuild(const std::vector<std::string>& paths, in DirectoryBuild()
67 : paths(paths), target(target), id("eng") {} in DirectoryBuild()
69 std::vector<std::string> paths; member
Dbuild_api.cc66 auto paths = android::base::Join(build.paths, ":"); in operator <<() local
67 return out << "(paths=\"" << paths << "\", target=\"" << build.target << "\")"; in operator <<()
137 for (const auto& path : build.paths) { in Artifacts()
158 for (const auto& path : build.paths) { in ArtifactToFile()
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/
DREADME.txt29 The present driver tries to retrieve the FDT from the device paths defined in the
31 contains a list a device paths. The device paths are in the text form and
32 separated by semi-colons. The present driver tries the device paths in the order
40 If the driver manages to download a FDT from one of the device paths mentioned
42 device paths is stopped.
46 FDT from the device paths listed in the "PcdFdtDevicePaths" PCD, the present
DFdtPlatformDxe.uni40 #string STR_SETFDT_DEVICE_PATH_LIST #language en-US "FDT device paths :\r\n"
94 "4. Display the FDT device paths from the highest to the lowest\r\n"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dutil.py203 paths = string.split(pathname, '/')
204 while '.' in paths:
205 paths.remove('.')
206 if not paths:
208 return os.path.join(*paths)
Dspawn.py159 paths = path.split(os.pathsep)
166 for p in paths:
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
DVfrStrings.uni42 …-US "When enter the page at first time, refresh is needed to show all the controller device paths"
43 …r-FR: When enter the page at first time, refresh is needed to show all the controller device paths"
46 … #language en-US "Refresh to show all the current controllers device paths"
47 … #language fr-FR "fr-FR: Refresh to show all the current controllers device paths"
/device/google/cuttlefish/
DAndroid.bp36 // TODO(b/67435044) Update the include paths and remove this
44 // TODO(b/67435044) Update the include paths and remove this
/device/google/sunfish/vibrator/common/
Dutils.h134 std::istringstream paths{value};
137 while (paths >> path) {
/device/google/cuttlefish/host/commands/assemble_cvd/
Dflags.cc584 bool CleanPriorFiles(const std::vector<std::string>& paths, const std::set<std::string>& preserving… in CleanPriorFiles() argument
586 for (auto path : paths) { in CleanPriorFiles()
605 for (const auto& path : paths) { in CleanPriorFiles()
615 std::vector<std::string> paths = { in CleanPriorFiles() local
624 paths.push_back(instance.instance_dir()); in CleanPriorFiles()
626 paths.push_back(FLAGS_instance_dir); in CleanPriorFiles()
627 return CleanPriorFiles(paths, preserving); in CleanPriorFiles()
/device/amlogic/yukawa/
Dinit.yukawa.rc8 # Support legacy paths
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DEcc.py138 paths = map(lambda p: os.path.join(p, 'Ecc', 'config.ini'), sys.path)
139 paths = (os.path.realpath('config.ini'),) + tuple(paths)
140 for path in paths:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_discovery.py93 paths = [] variable in TestDiscovery.test_find_tests_with_package.Module
98 self.paths.append(path)
127 self.assertEqual(Module.paths, ['test_directory', 'test_directory2'])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
Dsite.py86 def makepath(*paths): argument
87 dir = os.path.join(*paths)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
Dsite.py88 def makepath(*paths): argument
89 dir = os.path.join(*paths)
Dntpath.py76 def join(path, *paths): argument
79 for p in paths:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dloader.py239 paths = os.listdir(start_dir)
241 for path in paths:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsite.py79 def makepath(*paths): argument
80 dir = os.path.join(*paths)
Dmodulefinder.py36 paths = packagePathMap.get(packagename, [])
37 paths.append(path)
38 packagePathMap[packagename] = paths
/device/linaro/bootloader/edk2/BaseTools/Scripts/
DConvertMasmToNasm.py975 def __init__(self, paths, clone): argument
977 self.paths = paths
982 for path in self.paths:
984 for path in self.paths:
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/
DBdsDxe.uni32 …ity to connect all necessary devices for platform boot. These boot device paths are held in Platfo…

1234