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.h425 #define sqlite3_column_bytes sqlite3_api->column_bytes macro
H A Dsqlite3.h5585 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
H A Dshell.c1884 nByte = sqlite3_column_bytes(p->pStmt, iCol); in qrfJsonbToJson()
2009 int nBlob = sqlite3_column_bytes(p->pStmt,iCol); in qrfRenderValue()
2034 int nBlob = sqlite3_column_bytes(p->pStmt,iCol); in qrfRenderValue()
2065 int nBlob = sqlite3_column_bytes(p->pStmt,iCol); in qrfRenderValue()
5596 int n2 = sqlite3_column_bytes(pStmt, i); in sha1QueryFunc()
5603 int n2 = sqlite3_column_bytes(pStmt, i); in sha1QueryFunc()
11221 pCur->szRow = sqlite3_column_bytes(pCur->pStmt, iCol); in completionNext()
20039 int nCopy = sqlite3_column_bytes(pStmt, 0); in dbdataLoadPage()
21429 nPg = sqlite3_column_bytes(pStmt, 0); in recoverGetPage()
21776 nByte += (sqlite3_column_bytes(pStmt, 1)+1); in recoverAddTable()
[all …]
H A Dsqlite3.c5906 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
94921 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){ function
125296 pSample->n = sqlite3_column_bytes(pStmt, 4);
142658 #define sqlite3_column_bytes sqlite3_api->column_bytes macro
143114 sqlite3_column_bytes,
196636 int nRoot = sqlite3_column_bytes(pStmt, 4);
198645 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
203157 && sqlite3_column_bytes(pStmt, 0)==sizeof(*pp)
205095 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
207482 sqlite3_column_bytes(pStmt, 0));
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1859 int bytes = sqlite3_column_bytes(pStmt, iCol); in dbEvalColumnValue()