Home
last modified time | relevance | path

Searched refs:PycStringIO (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Include/
DcStringIO.h25 PycStringIO = ((struct PycStringIO_CAPI*)PyCapsule_Import(\
62 } *PycStringIO; variable
66 (Py_TYPE(O)==PycStringIO->InputType)
68 (Py_TYPE(O)==PycStringIO->OutputType)
/external/python/cpython2/Modules/
DcPickle.c457 if (PycStringIO->cwrite((PyObject *)self->file, s, INT_MAX) != INT_MAX) { in write_cStringIO()
463 if (PycStringIO->cwrite((PyObject *)self->file, s, n) != n) { in write_cStringIO()
626 if (PycStringIO->cread((PyObject *)self->file, &ptr, k) != k) { in read_cStringIO()
657 if ((k = PycStringIO->creadline((PyObject *)self->file, &ptr)) < 0) { in readline_cStringIO()
5729 if (!( file = PycStringIO->NewOutput(128))) in cpm_dumps()
5738 res = PycStringIO->cgetvalue(file); in cpm_dumps()
5777 if (!( file = PycStringIO->NewInput(ob))) in cpm_loads()