Home
last modified time | relevance | path

Searched refs:azCols (Results 1 – 4 of 4) sorted by relevance

/external/sqlite/dist/orig/
Dshell.c9491 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local
9492 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt()
9498 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt()
9518 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
11984 const char *azCols[] = { in arListCommand() local
11996 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
Dsqlite3.c113140 char **azCols = 0; /* Names of result columns */
113176 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*));
113177 if( azCols==0 ){
113181 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
113184 assert( azCols[i]!=0 );
113189 azVals = &azCols[nCol];
113199 if( xCallback(pArg, nCol, azVals, azCols) ){
113220 sqlite3DbFree(db, azCols);
113221 azCols = 0;
113226 sqlite3DbFree(db, azCols);
/external/sqlite/dist/
Dshell.c9497 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local
9498 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt()
9504 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt()
9524 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
12007 const char *azCols[] = { in arListCommand() local
12019 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
Dsqlite3.c113156 char **azCols = 0; /* Names of result columns */
113192 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*));
113193 if( azCols==0 ){
113197 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
113200 assert( azCols[i]!=0 );
113205 azVals = &azCols[nCol];
113215 if( xCallback(pArg, nCol, azVals, azCols) ){
113236 sqlite3DbFree(db, azCols);
113237 azCols = 0;
113242 sqlite3DbFree(db, azCols);