HomeSort by relevance Sort by last modified time
    Searched refs:fdobj (Results 1 - 9 of 9) sorted by null

  /external/python/cpython3/Modules/_io/
fileio.c 399 PyObject *fdobj; local
406 fdobj = PyObject_CallFunction(opener, "Oi", nameobj, flags);
407 if (fdobj == NULL)
409 if (!PyLong_Check(fdobj)) {
410 Py_DECREF(fdobj);
416 self->fd = _PyLong_AsInt(fdobj);
417 Py_DECREF(fdobj);
    [all...]
  /external/python/cpython3/Modules/
_posixsubprocess.c 159 PyObject* fdobj = PySequence_Fast_GET_ITEM(py_fds_to_keep, i); local
160 long fd = PyLong_AsLong(fdobj);
signalmodule.c 533 PyObject *fdobj; local
540 if (!PyArg_ParseTuple(args, "O:set_wakeup_fd", &fdobj))
543 sockfd = PyLong_AsSocket_t(fdobj);
    [all...]
socketmodule.c 4652 PyObject *fdobj = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
edk2module.c 228 edk2_fildes(PyObject *fdobj, int (*func)(int))
232 fd = PyObject_AsFileDescriptor(fdobj);
780 edk2_fsync(PyObject *self, PyObject *fdobj)
782 return edk2_fildes(fdobj, fsync);
798 edk2_fdatasync(PyObject *self, PyObject *fdobj)
800 return edk2_fildes(fdobj, fdatasync);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c 227 posix_fildes(PyObject *fdobj, int (*func)(int))
231 fd = PyObject_AsFileDescriptor(fdobj);
779 posix_fsync(PyObject *self, PyObject *fdobj)
781 return posix_fildes(fdobj, fsync);
797 posix_fdatasync(PyObject *self, PyObject *fdobj)
799 return posix_fildes(fdobj, fdatasync);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 687 posix_fildes(PyObject *fdobj, int (*func)(int))
691 fd = PyObject_AsFileDescriptor(fdobj);
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 854 posix_fildes(PyObject *fdobj, int (*func)(int))
858 fd = PyObject_AsFileDescriptor(fdobj);
    [all...]
  /packages/apps/Nfc/nci/jni/
NativeNfcManager.cpp     [all...]

Completed in 2123 milliseconds