Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_bsddb.c7242 DBEnv_set_event_notify(DBEnvObject* self, PyObject* notifyFunc) in DBEnv_set_event_notify() argument
7248 if (!PyCallable_Check(notifyFunc)) { in DBEnv_set_event_notify()
7249 makeTypeError("Callable", notifyFunc); in DBEnv_set_event_notify()
7253 Py_INCREF(notifyFunc); in DBEnv_set_event_notify()
7254 Py_XSETREF(self->event_notifyCallback, notifyFunc); in DBEnv_set_event_notify()
7267 Py_DECREF(notifyFunc); in DBEnv_set_event_notify()