HomeSort by relevance Sort by last modified time
    Searched refs:pkg_path (Results 1 - 6 of 6) sorted by null

  /external/boringssl/src/util/bot/go/
bootstrap.py 124 pkg_path = os.path.join(toolset_root, url[url.rfind('/')+1:])
127 download_file(url, pkg_path)
130 if pkg_path.endswith('.zip'):
131 with zipfile.ZipFile(pkg_path, 'r') as f:
133 elif pkg_path.endswith('.tar.gz'):
134 with tarfile.open(pkg_path, 'r:gz') as f:
  /build/soong/python/
python.go 64 // eg. Pkg_path = "a/b/c"; Other packages can reference this module by using
68 Pkg_path *string `android:"arch_variant"`
380 // sanitize pkg_path.
381 pkg_path := String(p.properties.Pkg_path)
382 if pkg_path != "" {
383 pkg_path = filepath.Clean(String(p.properties.Pkg_path))
384 if pkg_path == ".." || strings.HasPrefix(pkg_path, "../") |
    [all...]
python_test.go 44 "pkg_path: %q must be a relative path contained in par file."
121 desc: "module with bad pkg_path format",
127 pkg_path: "a/c/../../",
135 pkg_path: "a/c/../../../",
143 pkg_path: "/a/c/../../",
165 pkg_path: "a/b/c/",
193 pkg_path: "a/b/",
201 pkg_path: "a/b/c/",
248 pkg_path: "a/b/",
264 pkg_path: "c/d/"
    [all...]
  /external/autotest/client/common_lib/
packages.py 503 def upload_pkg(self, pkg_path, upload_path=None, update_checksum=False,
518 self.update_checksum(pkg_path)
523 (pkg_path, path,
537 def upload_pkg_parallel(self, pkg_path, upload_path, update_checksum=False):
541 pkg_path : The complete path to the package file
553 if os.path.isdir(pkg_path):
554 self.upload_pkg_dir(pkg_path, upload_path)
556 self.upload_pkg_file(pkg_path, upload_path)
695 the current package's (specified in pkg_path) checksum value in it.
752 def compute_checksum(self, pkg_path)
    [all...]
  /external/python/cpython3/Lib/test/test_import/
__init__.py     [all...]
  /external/python/cpython3/Lib/test/
test_zipimport.py 483 pkg_path = TEMP_ZIP + os.sep + packdir + TESTPACK2
484 zi2 = zipimport.zipimporter(pkg_path)

Completed in 291 milliseconds