Lines Matching refs:fdobj
5179 fileno as fdobj: object = NULL
5184 PyObject *fdobj)
5200 if (fdobj == NULL || fdobj == Py_None)
5209 if (fdobj != NULL && fdobj != Py_None) {
5212 if (PyBytes_Check(fdobj)) {
5214 if (PyBytes_GET_SIZE(fdobj) != sizeof(info)) {
5220 memcpy(&info, PyBytes_AS_STRING(fdobj), sizeof(info));
5243 fd = PyLong_AsSocket_t(fdobj);
6022 socket_close(PyObject *self, PyObject *fdobj)
6027 fd = PyLong_AsSocket_t(fdobj);
6051 socket_dup(PyObject *self, PyObject *fdobj)
6059 fd = PyLong_AsSocket_t(fdobj);