Home
last modified time | relevance | path

Searched refs:sqlite3_column_bytes (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/kyua/utils/sqlite/
H A Dstatement.cpp283 ::sqlite3_column_bytes(_pimpl->stmt, index)); in column_blob()
358 return ::sqlite3_column_bytes(_pimpl->stmt, index); in column_bytes()
/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c419 value.length = sqlite3_column_bytes(fetch, 0); in hdb_sqlite_fetch_kvno()
723 value.length = sqlite3_column_bytes(hsdb->get_all_entries, 0); in hdb_sqlite_nextkey()
/freebsd/crypto/heimdal/lib/krb5/
H A Dscache.c1024 len = sqlite3_column_bytes(ctx->credstmt, 0); in scc_get_next()
1101 len = sqlite3_column_bytes(stmt, 0); in scc_remove_cred()
/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h417 #define sqlite3_column_bytes sqlite3_api->column_bytes macro
H A Dsqlite3.h5474 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
H A Dshell.c3548 int n2 = sqlite3_column_bytes(pStmt, i); in sha1QueryFunc()
3555 int n2 = sqlite3_column_bytes(pStmt, i); in sha1QueryFunc()
9300 pCur->szRow = sqlite3_column_bytes(pCur->pStmt, iCol); in completionNext()
18062 int nCopy = sqlite3_column_bytes(pStmt, 0); in dbdataLoadPage()
19431 nPg = sqlite3_column_bytes(pStmt, 0); in recoverGetPage()
19777 nByte += (sqlite3_column_bytes(pStmt, 1)+1); in recoverAddTable()
19796 int n = sqlite3_column_bytes(pStmt, 1); in recoverAddTable()
23189 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback()
23230 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback()
23269 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback()
[all …]
H A Dsqlite3.c5793 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
92833 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
121983 pSample->n = sqlite3_column_bytes(pStmt, 4);
138788 #define sqlite3_column_bytes sqlite3_api->column_bytes
139236 sqlite3_column_bytes,
192088 int nRoot = sqlite3_column_bytes(pStmt, 4);
194098 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
198610 && sqlite3_column_bytes(pStmt, 0)==sizeof(*pp)
200526 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
202913 sqlite3_column_bytes(pStmt, 0));
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1828 int bytes = sqlite3_column_bytes(pStmt, iCol); in dbEvalColumnValue()