Searched defs:tt (Results 1 - 10 of 10) sorted by relevance

/ast/src/lib/libast/port/
H A Dastwinsize.c124 ttctl(register int fd, int op, void* tt) argument
131 if (!ioctl(fd, op, tt)) return(0);
134 v = ioctl(fd, op, tt);
139 else if (!ioctl(fd, op, tt)) return(0);
/ast/src/cmd/ksh93/bltins/
H A Dsleep.c218 struct tms tt; local
225 clock_t begin = times(&tt);
230 while((times(&tt)-begin) < n);
/ast/src/cmd/ksh93/sh/
H A Ddeparse.c219 Shnode_t *tt = t->lst.lstrit; local
220 if(tt->tre.tretyp!=TFIL || !(tt->lst.lstlef->tre.tretyp&FALTPIPE))
H A Dparse.c369 Shnode_t *tt; local
372 if(!(tt = sh_trestore(shp,iop)))
374 t =makelist(lexp,TLST, t, tt);
582 register Shnode_t *tt; local
589 if(tt=term(lexp,SH_NL))
591 switch(tt->tre.tretyp&COMMSK)
594 tt->tre.tretyp |= FPIN|FPCL;
597 tt->lst.lstlef->tre.tretyp |= FPIN|FPCL;
600 tt= makeparent(lexp,TSETIO|FPIN|FPCL,tt);
1173 register Shnode_t *tt; local
[all...]
H A Dxec.c2040 Shnode_t *tt; local
2088 tt = t->lst.lstrit;
2104 while(tt->tre.tretyp==TFIL && tt->lst.lstlef->tre.tretyp&FALTPIPE)
2105 tt = tt->lst.lstrit;
2106 t = tt;
2109 else if(tt->tre.tretyp==TFIL && tt->lst.lstlef->tre.tretyp&FALTPIPE)
2375 Shnode_t *tt local
2523 Shnode_t *tt = (Shnode_t*)t; local
[all...]
/ast/src/cmd/coshell/
H A Dschedule.c100 static time_t tt; local
205 if (cs.time - (unsigned long)tt > LOST)
207 tt = cs.time;
208 state.tm = tmmake(&tt);
/ast/src/lib/libast/tm/
H A Dtmxdate.c552 Time_t tt; local
653 tt = tmxtime(tm, zone);
654 if (tt < fix)
656 tm = tmxtm(tm, tt, tm->tm_zone);
/ast/src/cmd/kshlib/dss/
H A Ddss.c532 static void pushtype(Namval_t *np, Cxtype_t *tt, Namfun_t *fp) argument
535 for(; tt->base; tt = tt->base)
537 if(tt->member)
540 mp = typenode(tt->name,0);
/ast/src/lib/libbz/
H A Dbzhdr.h406 UInt32 *tt; member in struct:__anon327
470 s->tPos = s->tt[s->tPos]; \
/ast/src/cmd/ksh93/edit/
H A Dedit.c1498 int tcgetattr(int fd, struct termios *tt) argument
1504 if((r=ioctl(fd,TCGETS,tt))>=0 || errno!=EINVAL)
1508 tt->c_lflag = ott.c_lflag;
1509 tt->c_oflag = ott.c_oflag;
1510 tt->c_iflag = ott.c_iflag;
1511 tt->c_cflag = ott.c_cflag;
1513 tt->c_cc[i] = ott.c_cc[i];
1520 int tcsetattr(int fd,int mode,struct termios *tt) argument
1527 ott.c_lflag = tt->c_lflag;
1528 ott.c_oflag = tt
[all...]

Completed in 523 milliseconds