Lines Matching refs:xFunc
1982 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument
1985 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} }
1986 #define VFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument
1988 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} }
1989 #define SFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument
1991 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} }
1992 #define MFUNCTION(zName, nArg, xPtr, xFunc) \ argument
1994 xPtr, 0, xFunc, 0, 0, 0, #zName, {0} }
1995 #define JFUNCTION(zName, nArg, iArg, xFunc) \ argument
1998 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} }
2008 #define DFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument
2010 0, 0, xFunc, 0, 0, 0, #zName, {0} }
2011 #define PURE_DATE(zName, nArg, iArg, bNC, xFunc) \ argument
2014 (void*)&sqlite3Config, 0, xFunc, 0, 0, 0, #zName, {0} }
2015 #define FUNCTION2(zName, nArg, iArg, bNC, xFunc, extraFlags) \ argument
2018 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} }
2019 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
2022 pArg, 0, xFunc, 0, 0, 0, #zName, }
2029 #define INTERNAL_FUNCTION(zName, nArg, xFunc) \ argument
2032 0, 0, xFunc, 0, 0, 0, #zName, {0} }