HomeSort by relevance Sort by last modified time
    Searched defs:fileno (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /prebuilts/gdb/darwin-x86/lib/python2.7/
asyncore.py 304 self._fileno = sock.fileno()
638 def fileno(self): member in class:.file_wrapper
647 fd = fd.fileno()
658 self._fileno = self.socket.fileno()
socket.py 151 'bind', 'connect', 'connect_ex', 'fileno', 'listen',
312 def fileno(self): member in class:_fileobject
313 return self._sock.fileno()
tempfile.py 500 when a fileno is needed.
553 def fileno(self): member in class:SpooledTemporaryFile
555 return self._file.fileno()
  /prebuilts/gdb/linux-x86/lib/python2.7/
SocketServer.py 170 - fileno() -> int # for select()
370 - fileno() -> int # for select()
449 def fileno(self): member in class:TCPServer
455 return self.socket.fileno()
asyncore.py 304 self._fileno = sock.fileno()
638 def fileno(self): member in class:.file_wrapper
647 fd = fd.fileno()
658 self._fileno = self.socket.fileno()
socket.py 151 'bind', 'connect', 'connect_ex', 'fileno', 'listen',
312 def fileno(self): member in class:_fileobject
313 return self._sock.fileno()
tempfile.py 500 when a fileno is needed.
553 def fileno(self): member in class:SpooledTemporaryFile
555 return self._file.fileno()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 170 - fileno() -> int # for select()
370 - fileno() -> int # for select()
449 def fileno(self): member in class:TCPServer
455 return self.socket.fileno()
asyncore.py 304 self._fileno = sock.fileno()
638 def fileno(self): member in class:.file_wrapper
647 fd = fd.fileno()
658 self._fileno = self.socket.fileno()
socket.py 151 'bind', 'connect', 'connect_ex', 'fileno', 'listen',
312 def fileno(self): member in class:_fileobject
313 return self._sock.fileno()
tempfile.py 500 when a fileno is needed.
553 def fileno(self): member in class:SpooledTemporaryFile
555 return self._file.fileno()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 170 - fileno() -> int # for select()
370 - fileno() -> int # for select()
449 def fileno(self): member in class:TCPServer
455 return self.socket.fileno()
asyncore.py 304 self._fileno = sock.fileno()
638 def fileno(self): member in class:.file_wrapper
647 fd = fd.fileno()
658 self._fileno = self.socket.fileno()
socket.py 151 'bind', 'connect', 'connect_ex', 'fileno', 'listen',
312 def fileno(self): member in class:_fileobject
313 return self._sock.fileno()
tempfile.py 500 when a fileno is needed.
553 def fileno(self): member in class:SpooledTemporaryFile
555 return self._file.fileno()
  /system/extras/ioshark/
convert_format.c 42 int fileno; member in struct:ioshark_file_operation_old
78 int fileno; /* 1..num_files, with files name ioshark.<fileno> */ member in struct:ioshark_file_state_old
163 new_file_state.fileno = old_file_state.fileno;
168 new_file_state.fileno = htobe64(new_file_state.fileno);
206 new_disk_file_op.fileno = old_disk_file_op.fileno;
207 new_disk_file_op.fileno = htobe64(new_disk_file_op.fileno)
    [all...]
ioshark.h 40 * in this table describes 1 file, indexed by fileno and with the
45 u_int64_t fileno; /* 1..num_files, with files name ioshark.<fileno> */ member in struct:ioshark_file_state
84 u_int64_t fileno; member in struct:ioshark_file_operation
  /toolchain/binutils/binutils-2.27/zlib/test/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
54 # define fileno(file) file->__file macro
57 # include <unix.h> /* for fileno */
401 int ifd = fileno(in);
608 file = gzdopen(fileno(stdin), "rb");
612 file = gzdopen(fileno(stdout), outmode);
638 file = gzdopen(fileno(stdout), outmode);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 451 int fileno;
452 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL);
456 fileno = _PyInt_AsInt(res);
458 if (fileno == -1 && PyErr_Occurred())
461 if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
729 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
448 int fileno; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_asyncore.py 29 def fileno(self): member in class:dummysocket
413 self.assertNotEqual(w.fileno(), fd)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 449 long fileno;
450 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL);
454 fileno = PyInt_AsLong(res);
456 if (fileno == -1 && PyErr_Occurred())
459 if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
720 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
446 long fileno; local
  /external/ImageMagick/MagickCore/
nt-base.h 105 #if !defined(fileno)
106 # define fileno _fileno macro
  /external/fio/
file.h 87 int fileno; member in struct:fio_file
  /external/python/cpython2/Lib/test/
test_asyncore.py 29 def fileno(self): member in class:dummysocket
413 self.assertNotEqual(w.fileno(), fd)
  /external/python/cpython2/Modules/_io/
_iomodule.c 451 int fileno;
452 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL);
456 fileno = _PyInt_AsInt(res);
458 if (fileno == -1 && PyErr_Occurred())
461 if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
729 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
448 int fileno; local

Completed in 532 milliseconds

1 2 3 45 6 7 8