Searched refs:pFunc (Results 1 – 3 of 3) sorted by relevance
201 SqlFunc *pFunc; /* List of SQL functions */ member546 for(p=pDb->pFunc; p; p=p->pNext){ in findSqlFunc()555 pNew->pNext = pDb->pFunc; in findSqlFunc()556 pDb->pFunc = pNew; in findSqlFunc()608 while( pDb->pFunc ){ in delDatabaseRef()609 SqlFunc *pFunc = pDb->pFunc; in delDatabaseRef() local610 pDb->pFunc = pFunc->pNext; in delDatabaseRef()611 assert( pFunc->pDb==pDb ); in delDatabaseRef()612 Tcl_DecrRefCount(pFunc->pScript); in delDatabaseRef()613 Tcl_Free((char*)pFunc); in delDatabaseRef()[all …]
16930 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member19276 FuncDef *pFunc; /* The aggregate function implementation */ member23978 FuncDef *pFunc; /* Pointer to function information */ member84329 SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){84332 assert( pFunc!=0 );84335 assert( pFunc->xFinalize!=0 );84336 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );84344 ctx.pFunc = pFunc;84346 pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */84362 SQLITE_PRIVATE int sqlite3VdbeMemAggValue(Mem *pAccum, Mem *pOut, FuncDef *pFunc){[all …]
4798 PercentileFunc *pFunc = (PercentileFunc*)sqlite3_user_data(pCtx); in percentError() local4806 zMsg2 = zMsg1 ? sqlite3_mprintf(zMsg1, pFunc->zName) : 0; in percentError()4828 PercentileFunc *pFunc = (PercentileFunc*)sqlite3_user_data(pCtx); in percentStep() local4830 rPct = sqlite3_value_double(argv[1])/(double)pFunc->mxFrac; in percentStep()4836 (double)pFunc->mxFrac); in percentStep()5023 PercentileFunc *pFunc = (PercentileFunc*)sqlite3_user_data(pCtx); in percentCompute() local5038 if( pFunc->bDiscrete ){ in percentCompute()17318 sqlite3_syscall_ptr pFunc in vfstraceSetSystemCall() argument17322 return pRoot->xSetSystemCall(pRoot, zName, pFunc); in vfstraceSetSystemCall()