Home | History | Annotate | Download | only in orig

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);
67037 ** sqlite3_column_bytes()
67069 SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
85145 pSample->n = sqlite3_column_bytes(pStmt, 4);
97260 #define sqlite3_column_bytes sqlite3_api->column_bytes
97596 sqlite3_column_bytes,
129615 int nRoot = sqlite3_column_bytes(pStmt, 4);
131492 pEnd = &a[sqlite3_column_bytes(pStmt, 0)];
137777 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i);
140093 sqlite3_column_bytes(pStmt, 0));
140216 aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1);
140287 sqlite3_column_bytes(pStmt, 4), /* segdir.root */
140884 nRoot = sqlite3_column_bytes(pSelect, 4);
141270 int nRoot = sqlite3_column_bytes(pFetch, 4);
141418 int nHint = sqlite3_column_bytes(pSelect, 0);
141878 int nText = sqlite3_column_bytes(pStmt, iCol+1);
142993 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol);
143764 nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1);
145181 if( pRtree->iNodeSize==sqlite3_column_bytes(pRtree->pReadNode, 0) ){