Home
last modified time | relevance | path

Searched refs:sPk (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
Dwhere.c2699 Index sPk; /* A fake index object for the primary key */ in bestBtreeIndex() local
2730 memset(&sPk, 0, sizeof(Index)); in bestBtreeIndex()
2731 sPk.nColumn = 1; in bestBtreeIndex()
2732 sPk.aiColumn = &aiColumnPk; in bestBtreeIndex()
2733 sPk.aiRowEst = aiRowEstPk; in bestBtreeIndex()
2734 sPk.onError = OE_Replace; in bestBtreeIndex()
2735 sPk.pTable = pSrc->pTab; in bestBtreeIndex()
2742 sPk.pNext = pFirst; in bestBtreeIndex()
2744 pProbe = &sPk; in bestBtreeIndex()
/external/sqlite/dist/
Dsqlite3.c115520 Index sPk; /* A fake index object for the primary key */
115553 memset(&sPk, 0, sizeof(Index));
115554 sPk.nKeyCol = 1;
115555 sPk.nColumn = 1;
115556 sPk.aiColumn = &aiColumnPk;
115557 sPk.aiRowLogEst = aiRowEstPk;
115558 sPk.onError = OE_Replace;
115559 sPk.pTable = pTab;
115560 sPk.szIdxRow = pTab->szTabRow;
115567 sPk.pNext = pFirst;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c115500 Index sPk; /* A fake index object for the primary key */
115533 memset(&sPk, 0, sizeof(Index));
115534 sPk.nKeyCol = 1;
115535 sPk.nColumn = 1;
115536 sPk.aiColumn = &aiColumnPk;
115537 sPk.aiRowLogEst = aiRowEstPk;
115538 sPk.onError = OE_Replace;
115539 sPk.pTable = pTab;
115540 sPk.szIdxRow = pTab->szTabRow;
115547 sPk.pNext = pFirst;
[all …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c100353 Index sPk; /* A fake index object for the primary key */
100384 memset(&sPk, 0, sizeof(Index));
100385 sPk.nColumn = 1;
100386 sPk.aiColumn = &aiColumnPk;
100387 sPk.aiRowEst = aiRowEstPk;
100388 sPk.onError = OE_Replace;
100389 sPk.pTable = pSrc->pTab;
100396 sPk.pNext = pFirst;
100398 pProbe = &sPk;