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

/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_console.c71 console_hypervisor_dev_type(int *tnum) argument
73 if (tnum != NULL)
74 *tnum = console_hypervisor_tty_num;
494 boot_console_type(int *tnum) argument
496 if (tnum != NULL)
497 *tnum = tty_num;
/illumos-gate/usr/src/uts/i86pc/io/
H A Dconsplat.c80 console_type(int *tnum) argument
90 if (tnum != NULL)
91 *tnum = tty_num;
98 if (tnum != NULL)
99 *tnum = tty_num;
149 if (tnum != NULL)
150 *tnum = tty_num;
/illumos-gate/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.c1930 sqliteVdbeOp3(v, OP_OpenRead, base, pTab->tnum, pTab->zName, 0);
1937 sqliteVdbeOp3(v, OP_OpenRead, base+1, pIdx->tnum, pIdx->zName, P3_STATIC);
/illumos-gate/usr/src/cmd/captoinfo/
H A Dcaptoinfo.c176 enum { tbool, tnum, tstr, tcancel, tunknown } type; enumerator in enum:__anon64
207 case '#': type = tnum; break;
221 (type == tnum) ? "numeric" :
237 if (type != tnum && type != tcancel)
259 (type == tnum) ? "numeric" :
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_client_secinfo.c534 int tnum = 0; local
544 tnum++;
547 tnum++;
552 return (tnum);
/illumos-gate/usr/src/uts/sun/io/scsi/adapters/
H A Dsf.c3214 sf_create_target(struct sf *sf, struct sf_els_hdr *privp, int tnum, int64_t lun) argument
3246 "lun %" PRIx64 ": No LUN 0\n", tnum, lun);
3273 target->sft_hard_address = sf_switch_to_alpa[tnum];
3307 ntarget->sft_hard_address = sf_switch_to_alpa[tnum];
3335 tnum);
3342 if ((otarget = sf->sf_targets[tnum]) != NULL) {
3352 "target 0x%x, duplicate switch settings\n", tnum);
3363 tnum);
3364 bzero((caddr_t)&sf->sf_stats.tstats[tnum],
3370 sf->sf_targets[tnum]
[all...]
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c1053 int tnum; local
1079 if ((tnum = mkstemp(tname)) == -1)
1081 if ((tfile = fdopen(tnum, "w")) == NULL)

Completed in 167 milliseconds