Home
last modified time | relevance | path

Searched refs:azCol (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2963 char **azCol; /* zLine[] broken up into columns */ in DbObjCmd() local
3053 azCol = malloc( sizeof(azCol[0])*(nCol+1) ); in DbObjCmd()
3054 if( azCol==0 ) { in DbObjCmd()
3068 azCol[0] = zLine; in DbObjCmd()
3074 azCol[i] = &z[nSep]; in DbObjCmd()
3095 if( (nNull>0 && strcmp(azCol[i], zNull)==0) in DbObjCmd()
3096 || strlen30(azCol[i])==0 in DbObjCmd()
3100 sqlite3_bind_text(pStmt, i+1, azCol[i], -1, SQLITE_STATIC); in DbObjCmd()
3113 free(azCol); in DbObjCmd()
/freebsd/contrib/sqlite3/
H A Dshell.c942 char **azCol; /* Names of output columns (MODE_Line) */ member
3496 if( p->u.sLine.azCol==0 ){ in qrfOneSimpleRow()
3497 p->u.sLine.azCol = sqlite3_malloc64( p->nCol*sizeof(char*) ); in qrfOneSimpleRow()
3498 if( p->u.sLine.azCol==0 ){ in qrfOneSimpleRow()
3507 p->u.sLine.azCol[i] = sqlite3_mprintf("%s", zCName); in qrfOneSimpleRow()
3509 (void)qrfTitleLimit(p->u.sLine.azCol[i], p->spec.nTitleLimit); in qrfOneSimpleRow()
3511 sz = (int)sqlite3_qrf_wcswidth(p->u.sLine.azCol[i]); in qrfOneSimpleRow()
3523 qrfWidthPrint(p, p->pOut, -p->u.sLine.mxColWth, p->u.sLine.azCol[i]); in qrfOneSimpleRow()
3776 if( p->u.sLine.azCol ){ in qrfFinalize()
3778 for(i=0; i<p->nCol; i++) sqlite3_free(p->u.sLine.azCol[i]); in qrfFinalize()
[all …]
H A Dsqlite3.c195051 const char **azCol; /* Output array */ local
195066 azCol = (const char **)sqlite3_malloc64(sizeof(char *) * nCol + nStr);
195067 if( azCol==0 ){
195070 char *p = (char *)&azCol[nCol];
195075 azCol[i] = p;
195084 *pazCol = azCol;
200806 const char **azCol; /* Array of column names for fts3 table */ member
201261 const char *zStr = pParse->azCol[ii];
201699 char **azCol, /* Array of column names for fts3 table */ argument
201713 sParse.azCol = (const char **)azCol;
[all …]