Lines Matching defs:args
130 PyObject *args[] = { NULL, PyLong_FromLong(maxsize), };
131 if (args[1] == NULL) {
136 PyObject *inner = PyObject_Vectorcall(lru_cache, args + 1, nargsf, NULL);
137 Py_DECREF(args[1]);
142 args[1] = (PyObject *)self; // Borrowed ref.
144 PyObject *res = PyObject_Vectorcall(inner, args + 1, nargsf, NULL);
674 PyObject* args;
679 args = PyTuple_New(argc);
680 if (!args) {
728 PyTuple_SET_ITEM(args, i, cur_py_value);
731 return args;
734 Py_DECREF(args);
774 PyObject* args;
778 args = _pysqlite_build_py_params(context, argc, argv);
779 if (args) {
782 py_retval = PyObject_CallObject(ctx->callable, args);
783 Py_DECREF(args);
803 PyObject* args;
828 args = _pysqlite_build_py_params(context, argc, params);
829 if (!args) {
833 function_result = PyObject_CallObject(stepmethod, args);
834 Py_DECREF(args);
1074 PyObject *args = _pysqlite_build_py_params(context, argc, params);
1075 if (args == NULL) {
1082 PyObject *res = PyObject_CallObject(method, args);
1083 Py_DECREF(args);
1651 pysqlite_connection_call(pysqlite_Connection *self, PyObject *args,
1664 if (!PyArg_ParseTuple(args, "U", &sql))
1803 PyObject *args[] = { NULL, string1, string2 }; // Borrowed refs.
1805 retval = PyObject_Vectorcall(ctx->callable, args + 1, nargsf, NULL);