Lines Matching refs:cookieObj

957     PyObject *cookieObj = PyObject_CallMethodObjArgs(  in _textiowrapper_fix_encoder_state()  local
959 if (cookieObj == NULL) { in _textiowrapper_fix_encoder_state()
963 int cmp = PyObject_RichCompareBool(cookieObj, _PyLong_Zero, Py_EQ); in _textiowrapper_fix_encoder_state()
964 Py_DECREF(cookieObj); in _textiowrapper_fix_encoder_state()
2233 textiowrapper_parse_cookie(cookie_type *cookie, PyObject *cookieObj) in textiowrapper_parse_cookie() argument
2236 PyLongObject *cookieLong = (PyLongObject *)PyNumber_Long(cookieObj); in textiowrapper_parse_cookie()
2327 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence) in _io_TextIOWrapper_seek_impl() argument
2339 Py_INCREF(cookieObj); in _io_TextIOWrapper_seek_impl()
2348 cmp = PyObject_RichCompareBool(cookieObj, _PyLong_Zero, Py_EQ); in _io_TextIOWrapper_seek_impl()
2360 Py_DECREF(cookieObj); in _io_TextIOWrapper_seek_impl()
2361 cookieObj = _PyObject_CallMethodId((PyObject *)self, &PyId_tell, NULL); in _io_TextIOWrapper_seek_impl()
2362 if (cookieObj == NULL) in _io_TextIOWrapper_seek_impl()
2367 cmp = PyObject_RichCompareBool(cookieObj, _PyLong_Zero, Py_EQ); in _io_TextIOWrapper_seek_impl()
2391 Py_CLEAR(cookieObj); in _io_TextIOWrapper_seek_impl()
2410 cmp = PyObject_RichCompareBool(cookieObj, _PyLong_Zero, Py_LT); in _io_TextIOWrapper_seek_impl()
2416 "negative seek position %R", cookieObj); in _io_TextIOWrapper_seek_impl()
2428 if (textiowrapper_parse_cookie(&cookie, cookieObj) < 0) in _io_TextIOWrapper_seek_impl()
2502 return cookieObj; in _io_TextIOWrapper_seek_impl()
2504 Py_XDECREF(cookieObj); in _io_TextIOWrapper_seek_impl()