Searched refs:tnum (Results 1 - 22 of 22) sorted by relevance

/external/bluetooth/bluedroid/gki/common/
H A Dgki_time.c175 ** Parameters tnum - (input) timer number to be started (TIMER_0,
185 void GKI_start_timer (UINT8 tnum, INT32 ticks, BOOLEAN is_continuous) argument
217 switch (tnum)
269 ** Parameters tnum - (input) timer number to be started (TIMER_0,
274 void GKI_stop_timer (UINT8 tnum) argument
278 switch (tnum)
/external/chromium_org/third_party/sqlite/src/src/
H A Danalyze.c79 aRoot[i] = pStat->tnum;
141 if( pTab->tnum==0 ){
161 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
178 sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb,
350 sqlite3VdbeAddOp3(v, OP_OpenRead, iIdxCur, pTab->tnum, iDb);
H A Dinsert.c31 sqlite3TableLock(p, iDb, pTab->tnum, (opcode==OP_OpenWrite)?1:0, pTab->zName);
32 sqlite3VdbeAddOp3(v, opcode, iCur, pTab->tnum, iDb);
149 int tnum = pOp->p2; local
150 if( tnum==pTab->tnum ){
154 if( tnum==pIndex->tnum ){
1502 sqlite3VdbeAddOp4(v, op, i+baseCur, pIdx->tnum, iDb,
1803 sqlite3VdbeAddOp4(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc,
1807 sqlite3VdbeAddOp4(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDes
[all...]
H A Ddelete.c355 sqlite3VdbeAddOp4(v, OP_Clear, pTab->tnum, iDb, memCnt,
359 sqlite3VdbeAddOp2(v, OP_Clear, pIdx->tnum, iDb);
419 sqlite3VdbeAddOp2(v, OP_Close, iCur + i, pIdx->tnum);
H A Dbuild.c1506 p->tnum = db->init.newTnum;
1884 if( pTab->tnum==iFrom ){
1885 pTab->tnum = iTo;
1891 if( pIdx->tnum==iFrom ){
1892 pIdx->tnum = iTo;
1936 destroyRootPage(pParse, pTab->tnum, iDb);
1938 destroyRootPage(pParse, pIdx->tnum, iDb);
1957 int iTab = pTab->tnum;
1968 int iIdx = pIdx->tnum;
2307 ** the root page number of the index is taken from pIndex->tnum
2314 int tnum; /* Root page of index */ local
[all...]
H A Dvdbeblob.c279 sqlite3VdbeChangeP2(v, 2, pTab->tnum);
285 ** parameter of the other to pTab->tnum. */
287 sqlite3VdbeChangeP2(v, 3 + flags, pTab->tnum);
H A Dfkey.c380 sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb);
756 sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName);
H A Dprepare.c119 }else if( sqlite3GetInt32(argv[1], &pIndex->tnum)==0 ){
H A Dupdate.c358 sqlite3VdbeAddOp4(v, OP_OpenWrite, iCur+i+1, pIdx->tnum, iDb,
H A Dpragma.c1120 sqlite3VdbeAddOp2(v, OP_Integer, pTab->tnum, 2+cnt);
1123 sqlite3VdbeAddOp2(v, OP_Integer, pIdx->tnum, 2+cnt);
H A DsqliteInt.h1257 ** Table.tnum is the page number for the root BTree page of the table in the
1262 ** when the VDBE cursor to the table is closed. In this case Table.tnum
1274 int tnum; /* Root BTree node for this table (see note above) */ member in struct:Table
1476 int tnum; /* Page containing root of this index in database file */ member in struct:Index
H A Dexpr.c1452 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
1498 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
H A Dselect.c4229 int iRoot = pTab->tnum; /* Root page of scanned b-tree */
4232 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
4251 iRoot = pBest->tnum;
H A Dwhere.c4762 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
4775 sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIx->tnum, iDb,
H A Dbtree.c158 if( pIdx->tnum==(int)iRoot ){
159 iTab = pIdx->pTable->tnum;
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki_time.c186 ** Parameters tnum - (input) timer number to be started (TIMER_0,
196 void GKI_start_timer (UINT8 tnum, INT32 ticks, BOOLEAN is_continuous) argument
250 switch (tnum)
302 ** Parameters tnum - (input) timer number to be started (TIMER_0,
307 void GKI_stop_timer (UINT8 tnum) argument
313 switch (tnum)
/external/libnfc-nci/src/gki/common/
H A Dgki_time.c186 ** Parameters tnum - (input) timer number to be started (TIMER_0,
196 void GKI_start_timer (UINT8 tnum, INT32 ticks, BOOLEAN is_continuous) argument
250 switch (tnum)
302 ** Parameters tnum - (input) timer number to be started (TIMER_0,
307 void GKI_stop_timer (UINT8 tnum) argument
313 switch (tnum)
/external/stressapptest/src/
H A Dsat.cc1299 int tnum; local
1300 for (tnum = 0; tnum < num_cpus; tnum++) {
1303 tnum, cc_inc_count_);
1307 thread->set_cpu_mask_to_cpu(tnum);
/external/chromium_org/third_party/sqlite/src/test/
H A Dboundary4.tcl140 proc maketest {tnum sql answer} {
141 puts "do_test $::tname-$tnum \173"
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9602 ** Table.tnum is the page number for the root BTree page of the table in the
9607 ** when the VDBE cursor to the table is closed. In this case Table.tnum
9619 int tnum; /* Root BTree node for this table (see note above) */ member in struct:Table
9821 int tnum; /* Page containing root of this index in database file */ member in struct:Index
79153 int tnum; /* Root page of index */ local
84632 int tnum = pOp->p2; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10927 ** Table.tnum is the page number for the root BTree page of the table in the
10932 ** when the VDBE cursor to the table is closed. In this case Table.tnum
10949 int tnum; /* Root BTree node for this table (see note above) */ member in struct:Table
11169 int tnum; /* DB Page containing root of this index */ member in struct:Index
88751 int tnum; /* Root page of index */ local
94953 int tnum = pOp->p2; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10927 ** Table.tnum is the page number for the root BTree page of the table in the
10932 ** when the VDBE cursor to the table is closed. In this case Table.tnum
10949 int tnum; /* Root BTree node for this table (see note above) */ member in struct:Table
11169 int tnum; /* DB Page containing root of this index */ member in struct:Index
88771 int tnum; /* Root page of index */ local
94973 int tnum = pOp->p2; local
[all...]

Completed in 722 milliseconds