Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/pyfakefs/pyfakefs/
Dfake_open.py39 AnyFileWrapper,
95 def __call__(self, *args: Any, **kwargs: Any) -> AnyFileWrapper:
110 ) -> AnyFileWrapper:
Dfake_io.py34 from pyfakefs.fake_file import AnyFileWrapper
89 ) -> Union[AnyFileWrapper, IO[Any]]:
Dfake_os.py50 AnyFileWrapper,
182 def fdopen(self, fd: int, *args: Any, **kwargs: Any) -> AnyFileWrapper:
Dfake_filesystem.py116 from pyfakefs.fake_file import AnyFileWrapper, AnyFile
247 self.open_files: List[Optional[List[AnyFileWrapper]]] = []
814 def _add_open_file(self, file_obj: AnyFileWrapper) -> int: argument
847 def get_open_file(self, file_des: int) -> AnyFileWrapper:
Dfake_file.py60 AnyFileWrapper = Union[ variable