HomeSort by relevance Sort by last modified time
    Searched full:fileio (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /external/python/cpython3/Modules/_io/clinic/
fileio.c.h 18 _io_FileIO_close_impl(fileio *self);
21 _io_FileIO_close(fileio *self, PyObject *Py_UNUSED(ignored))
27 "FileIO(file, mode=\'r\', closefd=True, opener=None)\n"
45 _io_FileIO___init___impl(fileio *self, PyObject *nameobj, const char *mode,
53 static _PyArg_Parser _parser = {"O|siO:FileIO", _keywords, 0};
63 return_value = _io_FileIO___init___impl((fileio *)self, nameobj, mode, closefd, opener);
79 _io_FileIO_fileno_impl(fileio *self);
82 _io_FileIO_fileno(fileio *self, PyObject *Py_UNUSED(ignored))
97 _io_FileIO_readable_impl(fileio *self);
100 _io_FileIO_readable(fileio *self, PyObject *Py_UNUSED(ignored)
    [all...]
  /external/python/cpython3/Modules/_io/
fileio.c 51 class _io.FileIO "fileio *" "&PyFileIO_Type"
75 } fileio; typedef in typeref:struct:__anon33323
86 return ((fileio *)self)->fd < 0;
93 fileio_dealloc_warn(fileio *self, PyObject *source)
115 internal_close(fileio *self)
140 _io.FileIO.close
149 _io_FileIO_close_impl(fileio *self)
182 fileio *self;
186 self = (fileio *) type->tp_alloc(type, 0)
    [all...]
  /external/python/cpython3/Lib/test/
test_fileio.py 24 self.f = self.FileIO(TESTFN, 'w')
81 with self.FileIO(TESTFN, 'r') as f:
91 with self.FileIO(TESTFN, 'r') as f:
97 with self.FileIO(TESTFN, 'r') as f:
107 with self.FileIO(TESTFN, 'r') as f:
113 with self.FileIO(TESTFN, 'r') as f:
119 with self.FileIO(TESTFN, 'r') as f:
128 self.f = self.FileIO(TESTFN, 'rb')
136 self.f = self.FileIO(TESTFN, 'rb')
148 self.f = self.FileIO(TESTFN, 'r'
    [all...]
test_getpass.py 99 mock.patch('io.FileIO') as fileio, \
108 fileio.assert_called_once_with(open.return_value, 'w+')
109 textio.assert_called_once_with(fileio.return_value)
113 mock.patch('io.FileIO'), \
125 mock.patch('io.FileIO') as fileio, \
131 fileio.return_value = BytesIO()
140 mock.patch('io.FileIO'), \
  /external/tensorflow/tensorflow/python/lib/io/
file_io_test.py 39 f = file_io.FileIO("", mode="r")
78 with file_io.FileIO(file_path, mode="rb") as f:
83 file_io.FileIO(file_path, "wb").write("testing")
84 with file_io.FileIO(file_path, mode="r") as f:
89 with file_io.FileIO(file_path, mode="w") as f:
91 with file_io.FileIO(file_path, mode="a") as f:
93 with file_io.FileIO(file_path, mode="a") as f:
95 with file_io.FileIO(file_path, mode="r") as f:
102 f = file_io.FileIO(file_prefix + str(i), mode="w+")
110 with file_io.FileIO(file_path, mode="w") as f
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 55 } fileio; typedef in typeref:struct:__anon4382
64 return ((fileio *)self)->fd < 0;
74 internal_close(fileio *self)
102 fileio_close(fileio *self)
119 fileio *self;
123 self = (fileio *) type->tp_alloc(type, 0);
142 dircheck(fileio* self, PyObject *nameobj)
179 fileio *self = (fileio *) oself;
206 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|si:fileio",
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
fileio.c 60 } fileio; typedef in typeref:struct:__anon4695
69 return ((fileio *)self)->fd < 0;
79 internal_close(fileio *self)
107 fileio_close(fileio *self)
124 fileio *self;
128 self = (fileio *) type->tp_alloc(type, 0);
146 dircheck(fileio* self, const char *name)
190 fileio *self = (fileio *) oself;
212 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|si:fileio",
    [all...]
  /external/python/cpython2/Modules/_io/
fileio.c 55 } fileio; typedef in typeref:struct:__anon32716
64 return ((fileio *)self)->fd < 0;
74 internal_close(fileio *self)
102 fileio_close(fileio *self)
119 fileio *self;
123 self = (fileio *) type->tp_alloc(type, 0);
142 dircheck(fileio* self, PyObject *nameobj)
179 fileio *self = (fileio *) oself;
206 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|si:fileio",
    [all...]
  /external/lzma/CPP/7zip/UI/Client7z/
makefile 20 $O\FileIO.obj \
  /device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/
DUETFwh.inf 39 FileIo.c
40 FileIo.h
FileIo.h 13 FileIo.h
FvbInfo.c 21 #include "FileIo.h"
  /external/autotest/client/tests/sysbench/
sysbench-0.4.8.tar.bz2 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
82 RawIOBase.register(FileIO)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
53 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
64 open, FileIO, BytesIO, StringIO, BufferedReader,
90 RawIOBase.register(FileIO)
  /external/autotest/client/tests/dbench/
dbench-3.04.tar.gz 
  /external/autotest/client/tests/tbench/
dbench-3.04.tar.gz 
  /external/e2fsprogs/lib/ext2fs/
Makefile.pq 24 fileio.obj \
  /external/python/cpython2/Lib/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
82 RawIOBase.register(FileIO)
  /external/python/cpython3/Lib/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
84 RawIOBase.register(FileIO)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
81 RawIOBase.register(FileIO)
  /prebuilts/gdb/linux-x86/lib/python2.7/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
81 RawIOBase.register(FileIO)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
81 RawIOBase.register(FileIO)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 10 writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
81 RawIOBase.register(FileIO)
  /tools/acloud/internal/lib/
android_build_client_test.py 58 self.Patch(io, "FileIO", return_value=mock_file_io)
76 io.FileIO.assert_called_with(self.LOCAL_DEST, mode="wb")
87 self.Patch(io, "FileIO", side_effect=OSError("fake OSError"))

Completed in 878 milliseconds

1 2 3 4 5 6 7 8