Searched refs:sqlite3_column_value (Results 1 – 5 of 5) sorted by relevance
/third_party/sqlite/include/ |
D | sqlite3ext.h | 416 #define sqlite3_column_value sqlite3_api->column_value macro
|
D | sqlite3.h | 5083 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
|
/third_party/sqlite/src/ |
D | sqlite3.c | 5396 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol); 85889 SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){ 128183 #define sqlite3_column_value sqlite3_api->column_value 128610 sqlite3_column_value, 132727 sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pPragma, i)); 176800 sqlite3_result_value(pCtx, sqlite3_column_value(pCsr->pStmt, iCol+1)); 196384 sqlite3_column_value(pCsr->pReadAux, i - pRtree->nDim2 + 1)); 200580 sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pReadAux, i+2)); 205863 pVal = sqlite3_column_value(pIter->pSelect, i); 205882 pVal = sqlite3_column_value(pIter->pSelect, pIter->nCol+1); [all …]
|
D | shell.c | 9845 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn() 14119 sqlite3_bind_value(pStmt, i, sqlite3_column_value(pQ, 0)); in bind_prepared_stmt()
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 78922 -#define sqlite3_column_value chrome_sqlite3_column_value // Line 5083 78946 +#define sqlite3_column_value chrome_sqlite3_column_value // Line 5102 91141 ** [sqlite3_column_value()] is unprotected. 91151 ** <b>Warning:</b> ^The object returned by [sqlite3_column_value()] is an 115974 ** [sqlite3_column_value()] is unprotected. 115984 ** <b>Warning:</b> ^The object returned by [sqlite3_column_value()] is an 116557 -#define sqlite3_column_value chrome_sqlite3_column_value // Line 5083 116581 +#define sqlite3_column_value chrome_sqlite3_column_value // Line 5102 128776 ** [sqlite3_column_value()] is unprotected. 128786 ** <b>Warning:</b> ^The object returned by [sqlite3_column_value()] is an [all …]
|