/external/sqlite/dist/orig/ |
H A D | sqlite3ext.h | 85 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 D | sqlite3.h | 1570 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ 3799 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are 3801 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc 3804 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing 3844 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3854 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3864 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3909 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 4093 ** These routines are used by the xFunc or xFinal callbacks that
|
H A D | sqlite3.c | 2120 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ 4349 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are 4351 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc 4354 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing 4394 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4404 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4414 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4459 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 4643 ** These routines are used by the xFunc or xFinal callbacks that 8037 int (*xFunc)(voi member in struct:BusyHandler 9895 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef 63598 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument 113512 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 113606 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 113620 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 113657 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 D | sqlite3ext.h | 85 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 D | sqlite3.h | 1570 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ 3799 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are 3801 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc 3804 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing 3844 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3854 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3864 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3909 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 4093 ** These routines are used by the xFunc or xFinal callbacks that
|
H A D | sqlite3.c | 2120 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ 4349 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are 4351 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc 4354 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing 4394 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4404 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4414 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 4459 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 4643 ** These routines are used by the xFunc or xFinal callbacks that 8037 int (*xFunc)(voi member in struct:BusyHandler 9895 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef 63626 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument 113548 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 113642 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 113656 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 113693 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/webkit/WebKitLibraries/WebCoreSQLite3/ |
H A D | sqlite3ext.h | 82 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*)); 83 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*));
|
H A D | sqlite3.h | 3069 ** The seventh, eighth and ninth parameters, xFunc, xStep and xFinal, are 3071 ** aggregate. A scalar SQL function requires an implementation of the xFunc 3074 ** and xFinal and NULL should be passed for xFunc. To delete an existing 3112 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3122 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 3166 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 3350 ** These routines are used by the xFunc or xFinal callbacks that
|
/external/robolectric/lib/main/ |
H A D | sqlite-jdbc-3.7.2.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ... |