HomeSort by relevance Sort by last modified time
    Searched defs:posobj (Results 1 - 22 of 22) sorted by null

  /external/python/cpython3/Modules/_io/clinic/
fileio.c.h 334 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
340 PyObject *posobj = NULL; local
344 &posobj)) {
347 return_value = _io_FileIO_truncate_impl(self, posobj);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 504 PyObject *posobj; local
510 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
513 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
stringio.c 409 PyObject *posobj; local
414 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
417 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
fileio.c 68 portable_lseek(int fd, PyObject *posobj, int whence);
70 static PyObject *portable_lseek(int fd, PyObject *posobj, int whence);
704 portable_lseek(int fd, PyObject *posobj, int whence)
723 if (posobj == NULL)
726 if(PyFloat_Check(posobj)) {
731 pos = PyLong_AsLongLong(posobj);
733 pos = PyLong_AsLong(posobj);
762 PyObject *posobj; local
768 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
771 return portable_lseek(self->fd, posobj, whence);
787 PyObject *posobj = NULL; \/* the new size wanted by the user *\/ local
    [all...]
bufferedio.c 645 PyObject *res, *posobj, *whenceobj; local
648 posobj = PyLong_FromOff_t(target);
649 if (posobj == NULL)
653 Py_DECREF(posobj);
657 posobj, whenceobj, NULL);
658 Py_DECREF(posobj);
    [all...]
textio.c 2002 PyObject *cookieObj, *posobj; local
2186 PyObject *posobj = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bytesio.c 494 PyObject *posobj; local
500 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
503 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
stringio.c 409 PyObject *posobj; local
414 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
417 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
fileio.c 73 portable_lseek(int fd, PyObject *posobj, int whence);
75 static PyObject *portable_lseek(int fd, PyObject *posobj, int whence);
692 portable_lseek(int fd, PyObject *posobj, int whence)
711 if (posobj == NULL)
714 if(PyFloat_Check(posobj)) {
719 pos = PyLong_AsLongLong(posobj);
721 pos = PyLong_AsLong(posobj);
750 PyObject *posobj; local
756 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
759 return portable_lseek(self->fd, posobj, whence);
775 PyObject *posobj = NULL; \/* the new size wanted by the user *\/ local
    [all...]
bufferedio.c 617 PyObject *res, *posobj, *whenceobj; local
620 posobj = PyLong_FromOff_t(target);
621 if (posobj == NULL)
625 Py_DECREF(posobj);
629 posobj, whenceobj, NULL);
630 Py_DECREF(posobj);
    [all...]
textio.c 1956 PyObject *cookieObj, *posobj; local
2133 PyObject *posobj = NULL; local
    [all...]
  /external/python/cpython2/Modules/_io/
bytesio.c 504 PyObject *posobj; local
510 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
513 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
stringio.c 409 PyObject *posobj; local
414 if (!PyArg_ParseTuple(args, "O|i:seek", &posobj, &mode))
417 pos = PyNumber_AsSsize_t(posobj, PyExc_OverflowError);
fileio.c 68 portable_lseek(int fd, PyObject *posobj, int whence);
70 static PyObject *portable_lseek(int fd, PyObject *posobj, int whence);
717 portable_lseek(int fd, PyObject *posobj, int whence)
736 if (posobj == NULL)
739 if(PyFloat_Check(posobj)) {
744 pos = PyLong_AsLongLong(posobj);
746 pos = PyLong_AsLong(posobj);
775 PyObject *posobj; local
781 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
784 return portable_lseek(self->fd, posobj, whence)
800 PyObject *posobj = NULL; \/* the new size wanted by the user *\/ local
    [all...]
bufferedio.c 644 PyObject *res, *posobj, *whenceobj; local
647 posobj = PyLong_FromOff_t(target);
648 if (posobj == NULL)
652 Py_DECREF(posobj);
656 posobj, whenceobj, NULL);
657 Py_DECREF(posobj);
    [all...]
textio.c 2006 PyObject *cookieObj, *posobj; local
2190 PyObject *posobj = NULL; local
    [all...]
  /external/python/cpython3/Modules/_io/
bufferedio.c 716 PyObject *res, *posobj, *whenceobj; local
719 posobj = PyLong_FromOff_t(target);
720 if (posobj == NULL)
724 Py_DECREF(posobj);
728 posobj, whenceobj, NULL);
729 Py_DECREF(posobj);
    [all...]
textio.c 2061 PyObject *posobj; local
2247 PyObject *posobj = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
edk2module.c 2893 PyObject *posobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c 4887 PyObject *posobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 6528 PyObject *posobj; local
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 6717 PyObject *posobj; local
    [all...]

Completed in 420 milliseconds