Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_column_bytes

3901 ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
3903 ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
3905 ** ^If the result is a numeric value then sqlite3_column_bytes() uses
3908 ** ^If the result is NULL, then sqlite3_column_bytes() returns zero.
3919 ** ^The values returned by [sqlite3_column_bytes()] and
3922 ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of
3985 ** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
4000 ** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
4001 ** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
4007 ** into the desired format, then invoke sqlite3_column_bytes() or
4011 ** with calls to sqlite3_column_bytes().
4027 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
67057 ** sqlite3_column_bytes()
67089 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
85165 pSample->n = sqlite3_column_bytes(pStmt, 4);
97280 #define sqlite3_column_bytes sqlite3_api->column_bytes
97616 sqlite3_column_bytes,
129635 int nRoot = sqlite3_column_bytes(pStmt, 4);
131524 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
137809 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
140125 sqlite3_column_bytes(pStmt, 0));
140248 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
140319 sqlite3_column_bytes(pStmt, 4), /* segdir.root */
140916 nRoot = sqlite3_column_bytes(pSelect, 4);
141302 int nRoot = sqlite3_column_bytes(pFetch, 4);
141450 int nHint = sqlite3_column_bytes(pSelect, 0);
141910 int nText = sqlite3_column_bytes(pStmt, iCol+1);
143025 sqlite3_column_bytes(pCsr->pStmt, iCol);
143796 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
145213 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){