Searched refs:xFunc (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmain.c933 if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0;
934 rc = p->xFunc(p->pArg, p->nBusy);
953 db->busyHandler.xFunc = xBusy;
1021 void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
1031 (xFunc && (xFinal || xStep)) ||
1032 (!xFunc && (xFinal && !xStep)) ||
1033 (!xFunc && (!xFinal && xStep)) ||
1052 pUserData, xFunc, xStep, xFinal, pDestructor);
1055 pUserData, xFunc, xStep, xFinal, pDestructor);
1098 p->xFunc
1015 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
1109 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
1123 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
1160 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
H A Dcallback.c244 || (nArg==-1 && (p->xFunc!=0 || p->xStep!=0))
318 ** function found is returned. A function is valid if either xFunc
394 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
H A Dsqlite3ext.h80 int (*create_function)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
81 int (*create_function16)(sqlite3*,const void*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
201 int (*create_function_v2)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*),void(*xDestroy)(void*));
H A Dtest_func.c430 void (*xFunc)(sqlite3_context*,int,sqlite3_value **);
452 aFuncs[i].eTextRep, 0, aFuncs[i].xFunc, 0, 0);
H A Dvtab.c864 void (*xFunc)(sqlite3_context*,int,sqlite3_value**) = 0;
892 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
909 pNew->xFunc = xFunc;
H A Dsqlite.h.in1444 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
3479 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
3481 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
3484 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
3524 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3534 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3544 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3589 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
3773 ** These routines are used by the xFunc or xFinal callbacks that
H A DsqliteInt.h514 int (*xFunc)(void *,int); /* The busy callback */ member in struct:BusyHandler
981 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef
1024 ** FUNCTION(zName, nArg, iArg, bNC, xFunc)
1026 ** implemented by C function xFunc that accepts nArg arguments. The
1045 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \
1047 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, #zName, 0, 0}
1048 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \
1050 pArg, 0, xFunc, 0, 0, #zName, 0, 0}
H A Dtest1.c4125 const char *(*xFunc)(sqlite3_stmt*, int);
4128 xFunc = (const char *(*)(sqlite3_stmt*, int))clientData;
4137 zRet = xFunc(pStmt, col);
4180 const void *(*xFunc)(sqlite3_stmt*, int);
4182 xFunc = (const void *(*)(sqlite3_stmt*, int))clientData;
4192 zName16 = xFunc(pStmt, col);
4221 int (*xFunc)(sqlite3_stmt*, int);
4223 xFunc = (int (*)(sqlite3_stmt*, int))clientData;
4233 Tcl_SetObjResult(interp, Tcl_NewIntObj(xFunc(pStmt, col)));
H A Dvdbeapi.c829 ** xFunc() then return that string. If N is out of range, return 0.
846 const void *(*xFunc)(Mem*),
860 ret = xFunc(&p->aColName[N]);
861 /* A malloc may have failed inside of the xFunc() call. If this
843 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument
H A Dresolve.c538 is_agg = pDef->xFunc==0;
H A Dvdbe.c1396 (*ctx.pFunc->xFunc)(&ctx, n, apVal); /* IMP: R-24505-23230 */
/external/chromium_org/third_party/sqlite/src/ext/icu/
H A Dicu.c457 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
483 db, p->zName, p->nArg, p->enc, p->pContext, p->xFunc, 0, 0
/external/sqlite/dist/orig/
H A Dsqlite3ext.h85 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
89 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
219 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
H A Dsqlite3.h1742 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4033 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4035 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4038 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4078 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4088 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4098 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4154 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4349 ** These routines are used by the xFunc or xFinal callbacks that
H A Dsqlite3.c1857 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4148 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4150 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4153 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4193 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4203 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4213 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4269 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4464 ** These routines are used by the xFunc or xFinal callbacks that
8688 int (*xFunc)(voi member in struct:BusyHandler
10644 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef
67137 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument
123516 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
123616 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
123630 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
123667 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h85 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
89 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
219 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
H A Dsqlite3.h1742 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4033 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4035 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4038 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4078 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4088 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4098 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4154 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4349 ** These routines are used by the xFunc or xFinal callbacks that
H A Dsqlite3.c1857 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4148 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4150 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4153 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4193 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4203 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4213 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4269 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4464 ** These routines are used by the xFunc or xFinal callbacks that
8688 int (*xFunc)(voi member in struct:BusyHandler
10644 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef
67157 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument
123536 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
123636 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
123650 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
123687 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h1449 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
3484 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
3486 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
3489 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
3529 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3539 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3549 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3594 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
3778 ** These routines are used by the xFunc or xFinal callbacks that
H A Dsqlite3.c1992 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4027 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4029 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4032 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4072 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4082 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4092 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4137 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4321 ** These routines are used by the xFunc or xFinal callbacks that
7494 int (*xFunc)(voi member in struct:BusyHandler
9326 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef
61177 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument
108260 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
108354 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
108368 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
108405 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c3488 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
3503 *pxFunc = aOverload[i].xFunc;
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 3393 milliseconds