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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
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...]
textio.c 1956 PyObject *cookieObj, *posobj; local
2133 PyObject *posobj = NULL; local
    [all...]
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);
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
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...]
textio.c 2002 PyObject *cookieObj, *posobj; local
2186 PyObject *posobj = NULL; local
    [all...]
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);
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...]
  /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...]

Completed in 463 milliseconds