Lines Matching refs:lockobject
52 } lockobject; typedef
55 lock_traverse(lockobject *self, visitproc visit, void *arg) in lock_traverse()
62 lock_dealloc(lockobject *self) in lock_dealloc()
177 lock_PyThread_acquire_lock(lockobject *self, PyObject *args, PyObject *kwds) in lock_PyThread_acquire_lock()
205 lock_PyThread_release_lock(lockobject *self, PyObject *Py_UNUSED(ignored)) in lock_PyThread_release_lock()
227 lock_locked_lock(lockobject *self, PyObject *Py_UNUSED(ignored)) in lock_locked_lock()
239 lock_repr(lockobject *self) in lock_repr()
247 lock__at_fork_reinit(lockobject *self, PyObject *Py_UNUSED(args)) in lock__at_fork_reinit()
298 {"__weaklistoffset__", T_PYSSIZET, offsetof(lockobject, in_weakreflist), READONLY},
314 .basicsize = sizeof(lockobject),
602 static lockobject *
608 lockobject *self = (lockobject *)type->tp_alloc(type, 0); in newlockobject()
1221 static lockobject *newlockobject(PyObject *module);
1301 lockobject *lock; in release_sentinel()
1303 lock = (lockobject *) obj; in release_sentinel()
1319 lockobject *lock; in thread__set_sentinel()