Searched refs:pnRow (Results 1 – 9 of 9) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | table.c | 120 int *pnRow, /* Write the number of rows in the result here */ in sqlite3_get_table() argument 132 if( pnRow ) *pnRow = 0; in sqlite3_get_table() 178 if( pnRow ) *pnRow = res.nRow; in sqlite3_get_table()
|
| H A D | where.c | 1986 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst() argument 2010 *pnRow = 1; in whereEqualScanEst() 2023 *pnRow = a[1]; in whereEqualScanEst() 2050 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst() argument 2070 *pnRow = nRowEst; in whereInScanEst()
|
| H A D | sqlite.h.in | 2870 int *pnRow, /* Number of result rows written here */
|
| /sqlite-3.40.0/test/ |
| H A D | optfuzz.c | 87 int *pnRow, /* Write the number of rows here */ in optfuzz_exec() argument 102 *pnRow = *pnStmt = 0; in optfuzz_exec() 142 (*pnRow)++; in optfuzz_exec()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_storage.c | 776 static int fts5StorageCount(Fts5Storage *p, const char *zSuffix, i64 *pnRow){ in fts5StorageCount() argument 791 *pnRow = sqlite3_column_int64(pCnt, 0); in fts5StorageCount() 1105 int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow){ in sqlite3Fts5StorageRowCount() argument 1113 *pnRow = p->nTotalRow; in sqlite3Fts5StorageRowCount()
|
| H A D | fts5Int.h | 499 int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize); 666 int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow);
|
| H A D | fts5.h | 271 int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);
|
| H A D | fts5_main.c | 1807 static int fts5ApiRowCount(Fts5Context *pCtx, i64 *pnRow){ in fts5ApiRowCount() argument 1810 return sqlite3Fts5StorageRowCount(pTab->pStorage, pnRow); in fts5ApiRowCount()
|
| H A D | fts5_index.c | 5710 int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize){ in sqlite3Fts5IndexGetAverages() argument 5714 *pnRow = 0; in sqlite3Fts5IndexGetAverages() 5720 i += fts5GetVarint(&pData->p[i], (u64*)pnRow); in sqlite3Fts5IndexGetAverages()
|