• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/lib/ldb/

Lines Matching defs:py_result

2071 	PyObject *py_result, *py_base, *py_attrs, *py_tree;
2093 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "search"),
2101 if (py_result == NULL) {
2105 req->op.search.res = PyLdbResult_AsResult(NULL, py_result);
2110 Py_DECREF(py_result);
2118 PyObject *py_result, *py_msg;
2126 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "add"),
2132 if (py_result == NULL) {
2136 Py_DECREF(py_result);
2144 PyObject *py_result, *py_msg;
2152 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "modify"),
2158 if (py_result == NULL) {
2162 Py_DECREF(py_result);
2170 PyObject *py_result, *py_dn;
2177 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "delete"),
2181 if (py_result == NULL) {
2185 Py_DECREF(py_result);
2193 PyObject *py_result, *py_olddn, *py_newdn;
2205 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "rename"),
2212 if (py_result == NULL) {
2216 Py_DECREF(py_result);
2224 PyObject *py_result;
2226 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "request"),
2235 PyObject *py_result;
2237 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "extended"),
2246 PyObject *py_result;
2248 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "start_transaction"),
2251 if (py_result == NULL) {
2255 Py_DECREF(py_result);
2263 PyObject *py_result;
2265 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "end_transaction"),
2268 if (py_result == NULL) {
2272 Py_DECREF(py_result);
2280 PyObject *py_result;
2282 py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "del_transaction"),
2285 if (py_result == NULL) {
2289 Py_DECREF(py_result);
2303 PyObject *py_result, *py_next, *py_ldb;
2315 py_result = PyObject_CallFunction(py_class, discard_const_p(char, "OO"),
2318 if (py_result == NULL) {
2322 mod->private_data = py_result;