Searched refs:sInfo (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_snippet.c | 1357 MatchInfo sInfo; in fts3GetMatchinfo() local 1365 memset(&sInfo, 0, sizeof(MatchInfo)); in fts3GetMatchinfo() 1366 sInfo.pCursor = pCsr; in fts3GetMatchinfo() 1367 sInfo.nCol = pTab->nColumn; in fts3GetMatchinfo() 1388 sInfo.nPhrase = pCsr->nPhrase; in fts3GetMatchinfo() 1398 nMatchinfo += fts3MatchinfoSize(&sInfo, zArg[i]); in fts3GetMatchinfo() 1417 sInfo.aMatchinfo = aOut; in fts3GetMatchinfo() 1418 sInfo.nPhrase = pCsr->nPhrase; in fts3GetMatchinfo() 1419 rc = fts3MatchinfoValues(pCsr, bGlobal, &sInfo, zArg); in fts3GetMatchinfo()
|
| /sqlite-3.40.0/src/ |
| H A D | analyze.c | 1868 analysisInfo sInfo; local 1894 sInfo.db = db; 1895 sInfo.zDatabase = db->aDb[iDb].zDbSName; 1896 if( (pStat1 = sqlite3FindTable(db, "sqlite_stat1", sInfo.zDatabase)) 1900 "SELECT tbl,idx,stat FROM %Q.sqlite_stat1", sInfo.zDatabase); 1904 rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0); 1920 rc = loadStat4(db, sInfo.zDatabase);
|
| H A D | os_win.c | 1441 OSVERSIONINFOA sInfo; in sqlite3_win32_is_nt() 1442 sInfo.dwOSVersionInfoSize = sizeof(sInfo); in sqlite3_win32_is_nt() 1443 osGetVersionExA(&sInfo); in sqlite3_win32_is_nt() 1445 (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); in sqlite3_win32_is_nt() 1447 OSVERSIONINFOW sInfo; in sqlite3_win32_is_nt() 1448 sInfo.dwOSVersionInfoSize = sizeof(sInfo); in sqlite3_win32_is_nt() 1449 osGetVersionExW(&sInfo); in sqlite3_win32_is_nt() 1451 (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); in sqlite3_win32_is_nt()
|
| H A D | btree.c | 6778 #define BTREE_CLEAR_CELL(rc, pPage, pCell, sInfo) \ argument 6779 pPage->xParseCell(pPage, pCell, &sInfo); \ 6780 if( sInfo.nLocal!=sInfo.nPayload ){ \ 6781 rc = clearCellOverflow(pPage, pCell, &sInfo); \
|