py_result        1735 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_base, *py_attrs, *py_tree;
py_result        1757 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "search"),
py_result        1765 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1769 source4/lib/ldb/pyldb.c 	req->op.search.res = PyLdbResult_AsResult(NULL, py_result);
py_result        1774 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1782 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_msg;
py_result        1790 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "add"),
py_result        1796 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1800 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1808 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_msg;
py_result        1816 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "modify"),
py_result        1822 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1826 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1834 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_dn;
py_result        1841 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "delete"),
py_result        1845 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1849 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1857 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_olddn, *py_newdn;
py_result        1869 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "rename"),
py_result        1876 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1880 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1888 source4/lib/ldb/pyldb.c 	PyObject *py_result;
py_result        1890 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "request"),
py_result        1899 source4/lib/ldb/pyldb.c 	PyObject *py_result;
py_result        1901 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "extended"),
py_result        1910 source4/lib/ldb/pyldb.c 	PyObject *py_result;
py_result        1912 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "start_transaction"),
py_result        1915 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1919 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1927 source4/lib/ldb/pyldb.c 	PyObject *py_result;
py_result        1929 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "end_transaction"),
py_result        1932 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1936 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1944 source4/lib/ldb/pyldb.c 	PyObject *py_result;
py_result        1946 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "del_transaction"),
py_result        1949 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1953 source4/lib/ldb/pyldb.c 	Py_DECREF(py_result);
py_result        1967 source4/lib/ldb/pyldb.c 	PyObject *py_result, *py_next, *py_ldb;
py_result        1979 source4/lib/ldb/pyldb.c 	py_result = PyObject_CallFunction(py_class, discard_const_p(char, "OO"),
py_result        1982 source4/lib/ldb/pyldb.c 	if (py_result == NULL) {
py_result        1986 source4/lib/ldb/pyldb.c 	mod->private_data = py_result;
py_result          38 source4/param/provision.c 	PyObject *provision_mod, *provision_dict, *provision_fn, *py_result, *parameters;
py_result         126 source4/param/provision.c 	py_result = PyEval_CallObjectWithKeywords(provision_fn, NULL, parameters);
py_result         130 source4/param/provision.c 	if (py_result == NULL) {
py_result         136 source4/param/provision.c 	result->domaindn = talloc_strdup(mem_ctx, PyString_AsString(PyObject_GetAttrString(py_result, "domaindn")));
py_result         139 source4/param/provision.c 	result->lp_ctx = lp_from_py_object(PyObject_GetAttrString(py_result, "lp"));
py_result         140 source4/param/provision.c 	result->samdb = PyLdb_AsLdbContext(PyObject_GetAttrString(py_result, "samdb"));