Lines Matching refs:lockobject
22 } lockobject; typedef
25 lock_dealloc(lockobject *self) in lock_dealloc()
136 lock_PyThread_acquire_lock(lockobject *self, PyObject *args, PyObject *kwds) in lock_PyThread_acquire_lock()
166 lock_PyThread_release_lock(lockobject *self) in lock_PyThread_release_lock()
188 lock_locked_lock(lockobject *self) in lock_locked_lock()
200 lock_repr(lockobject *self) in lock_repr()
229 sizeof(lockobject), /*tp_basicsize*/
252 offsetof(lockobject, in_weakreflist), /*tp_weaklistoffset*/
529 static lockobject *
532 lockobject *self; in newlockobject()
533 self = PyObject_New(lockobject, &Locktype); in newlockobject()
1119 static lockobject *newlockobject(void);
1182 lockobject *lock; in release_sentinel()
1185 lock = (lockobject *) obj; in release_sentinel()
1201 lockobject *lock; in thread__set_sentinel()