Home
last modified time | relevance | path

Searched refs:pFunc (Results 1 – 3 of 3) sorted by relevance

/src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c201 SqlFunc *pFunc; /* List of SQL functions */ member
546 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() local
610 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 …]
/src/contrib/sqlite3/
H A Dsqlite3.c16930 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ member
19276 FuncDef *pFunc; /* The aggregate function implementation */ member
23978 FuncDef *pFunc; /* Pointer to function information */ member
84329 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 …]
H A Dshell.c4798 PercentileFunc *pFunc = (PercentileFunc*)sqlite3_user_data(pCtx); in percentError() local
4806 zMsg2 = zMsg1 ? sqlite3_mprintf(zMsg1, pFunc->zName) : 0; in percentError()
4828 PercentileFunc *pFunc = (PercentileFunc*)sqlite3_user_data(pCtx); in percentStep() local
4830 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() local
5038 if( pFunc->bDiscrete ){ in percentCompute()
17318 sqlite3_syscall_ptr pFunc in vfstraceSetSystemCall() argument
17322 return pRoot->xSetSystemCall(pRoot, zName, pFunc); in vfstraceSetSystemCall()