Home
last modified time | relevance | path

Searched refs:notifyFunc (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
D_bsddb.c7266 DBEnv_set_event_notify(DBEnvObject* self, PyObject* notifyFunc) in DBEnv_set_event_notify() argument
7272 if (!PyCallable_Check(notifyFunc)) { in DBEnv_set_event_notify()
7273 makeTypeError("Callable", notifyFunc); in DBEnv_set_event_notify()
7277 Py_INCREF(notifyFunc); in DBEnv_set_event_notify()
7278 Py_XSETREF(self->event_notifyCallback, notifyFunc); in DBEnv_set_event_notify()
7291 Py_DECREF(notifyFunc); in DBEnv_set_event_notify()