Lines Matching refs:zFunc

35085   const char *zFunc,              /* Name of OS function that failed */
35129 iLine, iErrno, zFunc, zPath, zErr
44189 const char *zFunc, /* Name of OS function that failed */
44204 iLine, lastErrno, zFunc, zPath, zMsg
117251 const char *zFunc /* Name of function */
117255 if( sqlite3StrICmp(p->zName, zFunc)==0 ){
135857 const char *zFunc; /* Name of aggregate function pFunc */
135871 zFunc = pFunc->u.zToken;
135872 if( sqlite3StrICmp(zFunc, "min")==0 ){
135877 }else if( sqlite3StrICmp(zFunc, "max")==0 ){
154632 const char *zFunc;
154648 if( pFunc->zName==aUp[i].zFunc ){
165977 const char *zFunc,
166008 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p,
166028 const char *zFunc,
166036 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
166041 const char *zFunc,
166050 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
166055 const char *zFunc,
166065 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep,
170874 ** from left to write. If parameter zFunc is not NULL, then instead of
170876 ** function named zFunc first. For example, if zFunc is "unzip" and the
170890 static char *fts3ReadExprList(Fts3Table *p, const char *zFunc, int *pRc){
170897 if( !zFunc ){
170900 zFree = zFunction = fts3QuoteId(zFunc);
170932 ** If argument zFunc is not NULL, then all but the first question mark
170933 ** is preceded by zFunc and an open bracket, and followed by a closed
170934 ** bracket. For example, if zFunc is "zip" and the FTS3 table has three
170947 static char *fts3WriteExprList(Fts3Table *p, const char *zFunc, int *pRc){
170953 if( !zFunc ){
170956 zFree = zFunction = fts3QuoteId(zFunc);
173679 ** string passed via zFunc is used as part of the error message.
173683 const char *zFunc, /* Function name */
173692 char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc);
214804 const char *zFunc; /* Function name (nul-terminated) */
214818 aBuiltin[i].zFunc,
226611 char *zFunc; /* Function name (nul-terminated) */
227604 if( sqlite3_stricmp(zName, pAux->zFunc)==0 ) return pAux;
229132 pAux->zFunc = (char*)&pAux[1];
229133 memcpy(pAux->zFunc, zName, nName);