Home
last modified time | relevance | path

Searched refs:xStep (Results 1 – 12 of 12) sorted by relevance

/sqlite-3.40.0/test/
H A Dnotify2.test66 while {[set rc [$::xStep $STMT]] eq "SQLITE_ROW"} {
170 foreach {iTest xStep xPrepare} {
176 set ThreadSetup "set xStep $xStep;set xPrepare $xPrepare;set nSecond $nSecond"
203 puts "Running $xStep test for $nSecond seconds"
211 incr anSuccess($xStep) [lindex $finished($ii) 0]
212 incr anAttempt($xStep) [lindex $finished($ii) 1]
224 set anWrite($xStep) [execsql {
H A Dfunc3.test201 # Test the outcome of specifying NULL xStep and xFinal pointers (normally
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-glue.js367 xStep: {sig:'v(pip)', f:__xInverseAndStep}, property
393 xStep, //void (*xStep)(sqlite3_context*,int,sqlite3_value**) argument
404 const funcArgs = __xWrapFuncs({xFunc, xStep, xFinal, xDestroy},
421 xFunc, xStep, xFinal argument
425 pApp, xFunc, xStep, xFinal, 0)
432 xStep, //void (*xStep)(sqlite3_context*,int,sqlite3_value**) argument
445 const funcArgs = __xWrapFuncs({xStep, xFinal, xValue, xInverse, xDestroy}, field
H A Dsqlite3-api-oo1.js957 let xStep = opt.xStep || 0;
964 if(isFunc(xStep) || isFunc(xFinal)){
967 xStep = xFinal = null;
968 }else if(isFunc(xStep)){
1005 const xArity = xFunc || xStep;
1015 xStep, xFinal, xValue, xInverse, xDestroy);
1020 xFunc, xStep, xFinal, xDestroy);
H A Dsqlite3-api-prologue.js538 xFunc, xStep, xFinal, xDestroy argument
546 xFunc, xStep, xFinal argument
557 xStep, xFinal, xValue, xInverse, xDestroy argument
/sqlite-3.40.0/src/
H A Dtest_window.c26 Tcl_Obj *xStep; member
46 Tcl_Obj *pEval = Tcl_DuplicateObj(bInverse ? p->xInverse : p->xStep); in doTestWindowStep()
156 pNew->xStep = Tcl_DuplicateObj(objv[3]); in test_create_window()
162 Tcl_IncrRefCount(pNew->xStep); in test_create_window()
H A Dmain.c1820 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3CreateFunc()
1931 p->xSFunc = xSFunc ? xSFunc : xStep; in sqlite3CreateFunc()
1954 void (*xStep)(sqlite3_context*,int,sqlite3_value**), in createFunctionApi()
1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi()
1984 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) ); in createFunctionApi()
2005 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function()
2008 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, in sqlite3_create_function()
2018 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function_v2()
2031 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_window_function()
2037 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep, in sqlite3_create_window_function()
[all …]
H A Dsqlite3ext.h84 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
88 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
218 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
315 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
H A DsqliteInt.h2026 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument
2028 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
H A Dsqlite.h.in5271 ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are
5274 ** callback only; NULL pointers must be passed as the xStep and xFinal
5280 ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue
5282 ** C-language callbacks that implement the new function. xStep and xFinal
5326 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5336 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5346 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5356 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5664 ** called once for each invocation of the xStep callback and then one
5666 ** an aggregate query, the xStep() callback of the aggregate function
[all …]
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js1414 xStep: (pCtx, n)=>{ method
1437 xStep: (pCtx, ...args)=>{ method
1454 xFunc: ()=>{}, xStep: ()=>{} method
1458 db.createFunction('nope',{xStep: ()=>{}}); method
1462 }, /Missing xStep/);
1484 xStep: (pCtx, n)=>{ method
1520 xStep: (pCtx, n)=>xStepInverse(pCtx, n),
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c1787 void (*xStep)(sqlite3_context*,int,sqlite3_value**); in sqlite3_geopoly_init() member
1808 0, aAgg[i].xStep, aAgg[i].xFinal); in sqlite3_geopoly_init()