Lines Matching defs:pIndexXInfo
13519 sqlite3_stmt *pIndexXInfo,
13537 sqlite3_bind_text(pIndexXInfo, 1, zIdx, -1, SQLITE_STATIC);
13538 while( SQLITE_OK==rc && SQLITE_ROW==sqlite3_step(pIndexXInfo) ){
13540 const char *zName = (const char*)sqlite3_column_text(pIndexXInfo, 0);
13541 const char *zColl = (const char*)sqlite3_column_text(pIndexXInfo, 1);
13548 sqlite3_reset(pIndexXInfo);
13650 sqlite3_stmt *pIndexXInfo = 0;
13692 rc = idxPrepareStmt(p->dbm, &pIndexXInfo, pzErr, zIndexXInfo);
13711 rc = idxPopulateOneStat1(p, pIndexXInfo, pWrite, zTab, zIdx, pzErr);
13721 idxFinalize(&rc, pIndexXInfo);