Searched refs:azVals (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 9492 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local 9493 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt() 9505 azVals[i] = ""; in exec_prepared_stmt() 9507 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt() 9509 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt() 9518 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
|
D | sqlite3.c | 113150 char **azVals = 0; 113189 azVals = &azCols[nCol]; 113191 azVals[i] = (char *)sqlite3_column_text(pStmt, i); 113192 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){ 113197 azVals[i] = 0; 113199 if( xCallback(pArg, nCol, azVals, azCols) ){
|
/external/sqlite/dist/ |
D | shell.c | 9498 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local 9499 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt() 9511 azVals[i] = ""; in exec_prepared_stmt() 9513 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt() 9515 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt() 9524 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
|
D | sqlite3.c | 113166 char **azVals = 0; 113205 azVals = &azCols[nCol]; 113207 azVals[i] = (char *)sqlite3_column_text(pStmt, i); 113208 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){ 113213 azVals[i] = 0; 113215 if( xCallback(pArg, nCol, azVals, azCols) ){
|