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

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
H A Dbuffer.t18 $tnum = $num * 2;
20 $T->current_test($tnum);
21 print "ok $tnum - You're ok\n";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dexec.t30 my $tnum = curr_test();
31 $exit = system qq{$Perl -le "print q{ok $tnum - interp system(EXPR)"}};
36 my $tnum = curr_test();
37 $exit = system qq{$Perl -le "print q{ok $tnum - split & direct system(EXPR)"}};
44 $tnum = curr_test();
46 "${quote}print q{ok $tnum - system(PROG, LIST)}${quote}";
111 my $tnum = curr_test();
113 print "not ok $tnum - exec failure doesn't terminate process " .
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/io/
H A Dpipe.t45 my $tnum = curr_test;
47 exec $Perl, '-le', "print q{not ok $tnum - again}";
76 my $tnum = curr_test;
78 exec $Perl, '-le', "print q{not ok $tnum - with fh dup }";
/osnet-11/usr/src/lib/libsqlite/src/
H A Ddelete.c178 sqliteVdbeAddOp(v, OP_OpenRead, iCur, pTab->tnum);
187 sqliteVdbeAddOp(v, OP_Clear, pTab->tnum, pTab->iDb);
189 sqliteVdbeAddOp(v, OP_Clear, pIdx->tnum, pIdx->iDb);
235 sqliteVdbeAddOp(v, OP_OpenRead, iCur, pTab->tnum);
277 sqliteVdbeAddOp(v, OP_Close, iCur + i, pIdx->tnum);
294 sqliteVdbeAddOp(v, OP_Close, iCur + i, pIdx->tnum);
H A Dupdate.c270 sqliteVdbeAddOp(v, OP_OpenRead, iCur, pTab->tnum);
321 sqliteVdbeAddOp(v, OP_OpenWrite, iCur, pTab->tnum);
336 sqliteVdbeAddOp(v, OP_OpenWrite, iCur+i+1, pIdx->tnum);
H A Dpragma.c642 sqliteVdbeOp3(v, OP_OpenRead, 1, pTab->tnum, pTab->zName, 0);
644 if( pIdx->tnum==0 ) continue;
646 sqliteVdbeOp3(v, OP_OpenRead, j+2, pIdx->tnum, pIdx->zName, 0);
697 if( pIdx->tnum==0 ) continue;
H A DsqliteInt.h488 ** Table.tnum is the page number for the root BTree page of the table in the
493 ** when the VDBE cursor to the table is closed. In this case Table.tnum
505 int tnum; /* Root BTree node for this table (see note above) */ member in struct:Table
627 int tnum; /* Page containing root of this index in database file */ member in struct:Index
H A Dbuild.c915 p->tnum = db->init.newTnum;
933 sqliteVdbeOp3(v, OP_CreateTable, 0, p->iDb, (char*)&p->tnum, P3_POINTER);
938 p->tnum = 0;
1281 sqliteVdbeAddOp(v, OP_Destroy, pTable->tnum, pTable->iDb);
1283 sqliteVdbeAddOp(v, OP_Destroy, pIdx->tnum, pIdx->iDb);
1665 pIndex->tnum = db->init.newTnum;
1700 sqliteVdbeOp3(v, OP_CreateIndex, 0, isTemp,(char*)&pIndex->tnum,P3_POINTER);
1701 pIndex->tnum = 0;
1718 sqliteVdbeOp3(v, OP_OpenRead, 2, pTab->tnum, pTab->zName, 0);
1822 sqliteVdbeAddOp(v, OP_Destroy, pIndex->tnum, pInde
[all...]
H A Dinsert.c205 int addr = sqliteVdbeFindOp(v, OP_OpenRead, pTab->tnum);
916 sqliteVdbeOp3(v, OP_OpenWrite, base, pTab->tnum, pTab->zName, P3_STATIC);
919 sqliteVdbeOp3(v, OP_OpenWrite, i+base, pIdx->tnum, pIdx->zName, P3_STATIC);
H A Dmain.c107 if( pIndex==0 || pIndex->tnum!=0 ){
115 pIndex->tnum = atoi(argv[2]);
H A Dwhere.c711 sqliteVdbeOp3(v, OP_OpenRead, pTabList->a[i].iCursor, pTab->tnum,
716 sqliteVdbeOp3(v, OP_OpenRead, pWInfo->a[i].iCur, pIx->tnum, pIx->zName,0);
H A Dselect.c1928 sqliteVdbeOp3(v, OP_OpenRead, base, pTab->tnum, pTab->zName, 0);
1935 sqliteVdbeOp3(v, OP_OpenRead, base+1, pIdx->tnum, pIdx->zName, P3_STATIC);
/osnet-11/usr/src/lib/libradproto/common/
H A Dradproto_adr.c275 int tnum = adr_typeset_find(typeset, type); local
276 assert(tnum >= 0);
278 if (!xdr_int(xdrs, &tnum))
287 int ttype, tnum; local
297 if (!xdr_int(xdrs, &tnum) ||
298 (type = adr_typeset_id(typeset, tnum)) == NULL)

Completed in 73 milliseconds