Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/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-14.2/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-14.2/contrib/sqlite3/
H A Dsqlite3ext.h415 #define sqlite3_column_bytes sqlite3_api->column_bytes macro
H A Dshell.c3506 int n2 = sqlite3_column_bytes(pStmt, i); in sha3QueryFunc()
3513 int n2 = sqlite3_column_bytes(pStmt, i); in sha3QueryFunc()
15829 int nCopy = sqlite3_column_bytes(pStmt, 0); in dbdataLoadPage()
17181 nPg = sqlite3_column_bytes(pStmt, 0); in recoverGetPage()
17527 nByte += (sqlite3_column_bytes(pStmt, 1)+1); in recoverAddTable()
17546 int n = sqlite3_column_bytes(pStmt, 1); in recoverAddTable()
20770 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback()
20811 int nBlob = sqlite3_column_bytes(p->pStmt, i); in shell_callback()
21837 int n = sqlite3_column_bytes(pStmt,i); in quoted_column()
23651 int nCompletion = sqlite3_column_bytes(pStmt, 0); in linenoise_completion()
[all …]
H A Dsqlite3.h5279 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
H A Dsqlite3.c120344 pSample->n = sqlite3_column_bytes(pStmt, 4);
137294 sqlite3_column_bytes,
189158 int nRoot = sqlite3_column_bytes(pStmt, 4);
191168 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
199946 sqlite3_column_bytes(pStmt, 0));
200761 nRoot = sqlite3_column_bytes(pSelect, 4);
203059 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
203370 n = sqlite3_column_bytes(pStmt, 0);
226018 int nDflt = sqlite3_column_bytes(pStmt, 4);
227457 nByte = sqlite3_column_bytes(pStmt, iCol);
[all …]
/freebsd-14.2/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1781 int bytes = sqlite3_column_bytes(pStmt, iCol); in dbEvalColumnValue()