Searched refs:IOBSIZE (Results 1 – 11 of 11) sorted by relevance
/titanic_41/usr/src/lib/libshell/common/include/ |
H A D | io.h | 30 #ifndef IOBSIZE 31 # define IOBSIZE SF_BUFSIZE macro
|
/titanic_41/usr/src/lib/libshell/common/bltins/ |
H A D | hist.c | 195 outfile= sfnew(NIL(Sfio_t*),shp->outbuff,IOBSIZE,fdo,SF_WRITE); in b_hist() 262 char buff[IOBSIZE+1]; in b_hist() 263 Sfio_t *iop = sfnew(NIL(Sfio_t*),buff,IOBSIZE,fdo,SF_READ); in b_hist()
|
H A D | misc.c | 292 char buff[IOBSIZE+1]; in b_dot_cmd() 293 iop = sfnew(NIL(Sfio_t*),buff,IOBSIZE,fd,SF_READ); in b_dot_cmd()
|
H A D | print.c | 271 shp->sftable[fd] = outfile = sfnew(NIL(Sfio_t*),shp->outbuff,IOBSIZE,fd,n); in b_print()
|
/titanic_41/usr/src/cmd/truss/ |
H A D | ramdata.h | 78 #define IOBSIZE 12 /* number of bytes shown by prt_iob() */ macro 119 char iob_buf[2*IOBSIZE+8]; /* where prt_iob() leaves its stuff */
|
H A D | print.c | 608 char buffer[IOBSIZE]; in prt_iob() 612 if (Lsp->pr_why == PR_SYSEXIT && nbyte > IOBSIZE) { in prt_iob() 622 int nb = nbyte > IOBSIZE? IOBSIZE : (int)nbyte; in prt_iob()
|
H A D | actions.c | 860 if (nb > IOBSIZE) { in sysexit()
|
/titanic_41/usr/src/lib/libshell/common/sh/ |
H A D | io.c | 408 shp->outbuff = (char*)malloc(IOBSIZE+4); in sh_ioinit() 409 shp->errbuff = (char*)malloc(IOBSIZE/4); in sh_ioinit() 410 sfsetbuf(sfstderr,shp->errbuff,IOBSIZE/4); in sh_ioinit() 411 sfsetbuf(sfstdout,shp->outbuff,IOBSIZE); in sh_ioinit() 494 if(!(bp = (char *)malloc(IOBSIZE+1))) in sh_iostream() 505 sfsetbuf(iop, bp, IOBSIZE); in sh_iostream() 506 else if(!(iop=sfnew((fd<=2?iop:0),bp,IOBSIZE,fd,flags))) in sh_iostream() 2117 if(!(disp = (struct subfile*)malloc(sizeof(struct subfile)+IOBSIZE+1))) in subopen() 2123 sp = sfnew(NIL(Sfio_t*),(char*)(disp+1),IOBSIZE,shp->lim.open_max,SF_READ); in subopen()
|
H A D | macro.c | 1995 sp = sfnew(NIL(Sfio_t*),(char*)malloc(IOBSIZE+1),IOBSIZE,fd,SF_READ|SF_MALLOC); in comsubst() 2445 iop = sftmp(IOBSIZE+1);; in tilde_expand2()
|
H A D | path.c | 631 char *pname,*oldname=shp->st.filename, buff[IOBSIZE+1]; in funload() 659 sh_eval(sfnew(NIL(Sfio_t*),buff,IOBSIZE,fno,SF_READ),SH_FUNEVAL); in funload()
|
H A D | xec.c | 548 iop = sftmp(IOBSIZE+1); in pipe_exec()
|