Lines Matching refs:posobj
2426 PyObject *posobj;
2536 posobj = PyLong_FromOff_t(cookie.start_pos);
2537 if (posobj == NULL)
2539 res = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(seek), posobj);
2540 Py_DECREF(posobj);
2621 PyObject *posobj = NULL;
2651 posobj = PyObject_CallMethodNoArgs(self->buffer, &_Py_ID(tell));
2652 if (posobj == NULL)
2657 return posobj;
2661 cookie.start_pos = PyLong_AsLongLong(posobj);
2663 cookie.start_pos = PyLong_AsLong(posobj);
2665 Py_DECREF(posobj);