• Home
  • Raw
  • Download

Lines Matching refs:PyObject_CallMethod

526         return PyObject_CallMethod(self->decoder,  in incrementalnewlinedecoder_setstate()
881 self->encoding = PyObject_CallMethod( in textiowrapper_init()
953 res = PyObject_CallMethod(buffer, "readable", NULL); in textiowrapper_init()
977 res = PyObject_CallMethod(buffer, "writable", NULL); in textiowrapper_init()
1033 res = PyObject_CallMethod(buffer, "seekable", NULL); in textiowrapper_init()
1282 PyObject *newtext = PyObject_CallMethod( in textiowrapper_write()
1338 ret = PyObject_CallMethod(self->decoder, "reset", NULL); in textiowrapper_write()
1517 PyObject *bytes = PyObject_CallMethod(self->buffer, "read", NULL); in textiowrapper_read()
1980 res = PyObject_CallMethod(self->decoder, "setstate", in _textiowrapper_decoder_setstate()
2047 cookieObj = PyObject_CallMethod((PyObject *)self, "tell", NULL); in textiowrapper_seek()
2064 res = PyObject_CallMethod((PyObject *)self, "flush", NULL); in textiowrapper_seek()
2072 res = PyObject_CallMethod(self->decoder, "reset", NULL); in textiowrapper_seek()
2078 res = PyObject_CallMethod(self->buffer, "seek", "ii", 0, 2); in textiowrapper_seek()
2136 PyObject *input_chunk = PyObject_CallMethod( in textiowrapper_seek()
2158 decoded = PyObject_CallMethod(self->decoder, "decode", in textiowrapper_seek()
2218 res = PyObject_CallMethod((PyObject *)self, "flush", NULL); in textiowrapper_tell()
2223 posobj = PyObject_CallMethod(self->buffer, "tell", NULL); in textiowrapper_tell()
2283 PyObject *decoded = PyObject_CallMethod( in textiowrapper_tell()
2316 PyObject *decoded = PyObject_CallMethod( in textiowrapper_tell()
2333 res = PyObject_CallMethod(self->decoder, "setstate", "(O)", saved_state); in textiowrapper_tell()
2349 res = PyObject_CallMethod(self->decoder, "setstate", "(O)", saved_state); in textiowrapper_tell()
2419 return PyObject_CallMethod(self->buffer, "fileno", NULL); in textiowrapper_fileno()
2426 return PyObject_CallMethod(self->buffer, "seekable", NULL); in textiowrapper_seekable()
2433 return PyObject_CallMethod(self->buffer, "readable", NULL); in textiowrapper_readable()
2440 return PyObject_CallMethod(self->buffer, "writable", NULL); in textiowrapper_writable()
2447 return PyObject_CallMethod(self->buffer, "isatty", NULL); in textiowrapper_isatty()
2458 return PyObject_CallMethod(self->buffer, "flush", NULL); in textiowrapper_flush()
2481 res = PyObject_CallMethod((PyObject *)self, "flush", NULL); in textiowrapper_close()
2487 res = PyObject_CallMethod(self->buffer, "close", NULL); in textiowrapper_close()