Lines Matching refs:result
65 isolation_level_converter(PyObject *str_or_none, const char **result)
68 *result = NULL;
85 *result = level;
96 sqlite3_int64_converter(PyObject *obj, sqlite3_int64 *result)
102 *result = _pysqlite_long_as_int64(obj);
1127 "unable to set result from user-defined aggregate's "
1690 PyObject* result = 0;
1697 result = _pysqlite_query_execute((pysqlite_Cursor *)cursor, 0, sql, parameters);
1698 if (!result) {
1703 Py_XDECREF(result);
1723 PyObject* result = 0;
1730 result = _pysqlite_query_execute((pysqlite_Cursor *)cursor, 1, sql, parameters);
1731 if (!result) {
1736 Py_XDECREF(result);
1755 PyObject* result = 0;
1763 result = PyObject_CallMethodObjArgs(cursor, meth, script_obj, NULL);
1764 if (!result) {
1769 Py_XDECREF(result);
1786 int result = 0;
1811 longval = PyLong_AsLongAndOverflow(retval, &result);
1814 result = 0;
1816 else if (!result) {
1818 result = 1;
1820 result = -1;
1828 return result;
2231 PyObject* result;
2235 result = pysqlite_connection_commit_impl(self);
2238 result = pysqlite_connection_rollback_impl(self);
2241 if (result == NULL) {
2247 result = pysqlite_connection_rollback_impl(self);
2248 if (result == NULL) {
2252 Py_DECREF(result);
2258 Py_DECREF(result);