| /onnv/onnv-gate/usr/src/lib/libshell/common/include/ |
| io.h | 30 #ifndef IOBSIZE 31 # define IOBSIZE SF_BUFSIZE 32 #endif /* IOBSIZE */
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/bltins/ |
| hist.c | 195 outfile= sfnew(NIL(Sfio_t*),shp->outbuff,IOBSIZE,fdo,SF_WRITE); 262 char buff[IOBSIZE+1]; 263 Sfio_t *iop = sfnew(NIL(Sfio_t*),buff,IOBSIZE,fdo,SF_READ);
|
| misc.c | 292 char buff[IOBSIZE+1]; 293 iop = sfnew(NIL(Sfio_t*),buff,IOBSIZE,fd,SF_READ);
|
| print.c | 271 shp->sftable[fd] = outfile = sfnew(NIL(Sfio_t*),shp->outbuff,IOBSIZE,fd,n);
|
| /onnv/onnv-gate/usr/src/cmd/truss/ |
| ramdata.h | 79 #define IOBSIZE 12 /* number of bytes shown by prt_iob() */ 120 char iob_buf[2*IOBSIZE+8]; /* where prt_iob() leaves its stuff */
|
| print.c | 573 char buffer[IOBSIZE]; 577 if (Lsp->pr_why == PR_SYSEXIT && nbyte > IOBSIZE) { 587 int nb = nbyte > IOBSIZE? IOBSIZE : (int)nbyte; [all...] |
| actions.c | 858 * IOBSIZE bytes have already been shown; 866 if (nb > IOBSIZE) {
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| io.c | 408 shp->outbuff = (char*)malloc(IOBSIZE+4); 409 shp->errbuff = (char*)malloc(IOBSIZE/4); 410 sfsetbuf(sfstderr,shp->errbuff,IOBSIZE/4); 411 sfsetbuf(sfstdout,shp->outbuff,IOBSIZE); 494 if(!(bp = (char *)malloc(IOBSIZE+1))) 505 sfsetbuf(iop, bp, IOBSIZE); 506 else if(!(iop=sfnew((fd<=2?iop:0),bp,IOBSIZE,fd,flags))) [all...] |
| path.c | 630 char *pname,*oldname=shp->st.filename, buff[IOBSIZE+1]; 658 sh_eval(sfnew(NIL(Sfio_t*),buff,IOBSIZE,fno,SF_READ),SH_FUNEVAL); [all...] |
| xec.c | 548 iop = sftmp(IOBSIZE+1); [all...] |