Searched defs:sqlite3_api_routines (Results 1 – 2 of 2) sorted by relevance
/external/sqlite/dist/ |
D | sqlite3ext.h | 22 typedef struct sqlite3_api_routines sqlite3_api_routines; typedef 34 struct sqlite3_api_routines { struct 35 void * (*aggregate_context)(sqlite3_context*,int nBytes); 36 int (*aggregate_count)(sqlite3_context*); 37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); 38 int (*bind_double)(sqlite3_stmt*,int,double); 39 int (*bind_int)(sqlite3_stmt*,int,int); 40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); 41 int (*bind_null)(sqlite3_stmt*,int); 42 int (*bind_parameter_count)(sqlite3_stmt*); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 22 typedef struct sqlite3_api_routines sqlite3_api_routines; typedef 34 struct sqlite3_api_routines { struct 35 void * (*aggregate_context)(sqlite3_context*,int nBytes); 36 int (*aggregate_count)(sqlite3_context*); 37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); 38 int (*bind_double)(sqlite3_stmt*,int,double); 39 int (*bind_int)(sqlite3_stmt*,int,int); 40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); 41 int (*bind_null)(sqlite3_stmt*,int); 42 int (*bind_parameter_count)(sqlite3_stmt*); [all …]
|