Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts5/
H A Dfts5_test_tok.c78 Fts5tokRow *aRow; /* Array of rows to return */ member
295 sqlite3_free(pCsr->aRow[i].zToken); in fts5tokResetCursor()
298 sqlite3_free(pCsr->aRow); in fts5tokResetCursor()
300 pCsr->aRow = 0; in fts5tokResetCursor()
338 aNew = (Fts5tokRow*)sqlite3_realloc64(pCsr->aRow, nNew*sizeof(Fts5tokRow)); in fts5tokCb()
341 pCsr->aRow = aNew; in fts5tokCb()
344 pRow = &pCsr->aRow[pCsr->nRow]; in fts5tokCb()
410 Fts5tokRow *pRow = &pCsr->aRow[pCsr->iRowid-1]; in fts5tokColumnMethod()
/sqlite-3.40.0/src/
H A Dvdbe.c2831 pC->aRow = (u8*)pReg->z; in sqlite3VdbeExec()
2859 pC->aRow = sqlite3BtreePayloadFetch(pCrsr, &pC->szRow); in sqlite3VdbeExec()
2864 if( (aOffset[0] = pC->aRow[0])<0x80 ){ in sqlite3VdbeExec()
2867 pC->iHdrOffset = sqlite3GetVarint32(pC->aRow, aOffset); in sqlite3VdbeExec()
2876 pC->aRow = 0; in sqlite3VdbeExec()
2905 zData = pC->aRow; in sqlite3VdbeExec()
2925 if( pC->aRow==0 ){ in sqlite3VdbeExec()
2931 zData = pC->aRow; in sqlite3VdbeExec()
2965 if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); in sqlite3VdbeExec()
2972 if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); in sqlite3VdbeExec()
[all …]
H A DvdbeInt.h124 const u8 *aRow; /* Data for the current row, if all on one page */ member