Searched refs:fileobj (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/compress/ |
| H A D | _pipecompress.py | 57 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 D | create_buildsys_python.py | 633 def gather_setup_info(fileobj): argument 634 parsed = ast.parse(fileobj.read(), fileobj.name)
|
| /OK3568_Linux_fs/buildroot/support/scripts/ |
| H A D | cpedb.py | 108 nist_cpe_file = gzip.GzipFile(fileobj=open(cpe_dict_local, 'rb'))
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | create-spdx.bbclass | 227 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 D | scanpypi | 271 with tarfile.open(fileobj=as_file) as as_tarfile:
|