Home
last modified time | relevance | path

Searched refs:sqlite3_value (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h45 int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);
74 sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);
83 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
84 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
87 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
88 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
132 void (*result_value)(sqlite3_context*,sqlite3_value*);
148 const void * (*value_blob)(sqlite3_value*);
149 int (*value_bytes)(sqlite3_value*);
150 int (*value_bytes16)(sqlite3_value*);
[all …]
H A Dsqlite3.h4740 typedef struct sqlite3_value sqlite3_value; typedef
4907 SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
5473 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
5675 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5676 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5685 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5686 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5695 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5696 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5706 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
[all …]
H A Dshell.c1598 sqlite3_value **apVal in shellStrtod()
1616 sqlite3_value **apVal in shellDtostr()
1649 sqlite3_value **apVal in shellAddSchemaName()
2911 sqlite3_value **argv in sha3Func()
2958 static void sha3UpdateFromValue(SHA3Context *p, sqlite3_value *pVal){ in sha3UpdateFromValue()
3044 sqlite3_value **argv in sha3QueryFunc()
3112 sqlite3_value **argv in sha3AggStep()
3432 sqlite3_value **argv in sha1Func()
3471 sqlite3_value **argv in sha1QueryFunc()
3879 sqlite3_value *pIn, /* Construct the decimal object from this */ in decimal_new()
[all …]
H A Dsqlite3.c5059 typedef struct sqlite3_value sqlite3_value; typedef
5226 SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
5792 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
5994 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5995 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6004 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
6005 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6014 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
6015 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6025 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1007 static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value**argv){ in tclSqlFunc()
1041 sqlite3_value *pIn = argv[i]; in tclSqlFunc()
3660 sqlite3_value *pValue; in DbObjCmd()