Home
last modified time | relevance | path

Searched refs:iSrc (Results 1 – 2 of 2) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dauth.c112 int iSrc; /* Index in pTabList->a[] of table being read */ in sqliteAuthRead() local
118 for(iSrc=0; iSrc<pTabList->nSrc; iSrc++){ in sqliteAuthRead()
119 if( pExpr->iTable==pTabList->a[iSrc].iCursor ) break; in sqliteAuthRead()
121 if( iSrc>=0 && iSrc<pTabList->nSrc ){ in sqliteAuthRead()
122 pTab = pTabList->a[iSrc].pTab; in sqliteAuthRead()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c70428 struct SrcList_item *pItem = &pSrc->a[iSrc];
77249 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
77250 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
77251 pTab = pTabList->a[iSrc].pTab;
86781 iSrc = pParse->nTab++;
86819 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
86823 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1);
86829 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
86840 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
86842 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1);
[all …]

Completed in 399 milliseconds