Home
last modified time | relevance | path

Searched refs:fileobj (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/compress/
H A D_pipecompress.py57 binary_file = cls(None, file_mode, fileobj=filename, **kwargs)
93 def __init__(self, filename=None, mode="rb", *, stderr=None, fileobj=None): argument
107 if fileobj is not None:
108 self.fileobj = fileobj
110 self.fileobj = builtins.open(filename, mode or "rb")
115 stdin=self.fileobj,
125 stdout=self.fileobj,
149 self.fileobj.close()
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_buildsys_python.py633 def gather_setup_info(fileobj): argument
634 parsed = ast.parse(fileobj.read(), fileobj.name)
/OK3568_Linux_fs/buildroot/support/scripts/
H A Dcpedb.py108 nist_cpe_file = gzip.GzipFile(fileobj=open(cpe_dict_local, 'rb'))
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dcreate-spdx.bbclass227 info = archive.gettarinfo(fileobj=f)
423 with tarfile.open(fileobj=f, mode=mode + "|") as tf:
958 with tarfile.open(fileobj=f, mode="w|") as tar:
979 info = tar.gettarinfo(fileobj=f)
1020 tar.addfile(info, fileobj=index_str)
/OK3568_Linux_fs/buildroot/utils/
H A Dscanpypi271 with tarfile.open(fileobj=as_file) as as_tarfile: