| /onnv/onnv-gate/usr/src/cmd/tcpd/ |
| tli-sequent.c | 59 struct strpeek peek; local 93 peek.ctlbuf.maxlen = tli_state_ptr->ti_ctlsize; 94 peek.ctlbuf.len = 0; 95 peek.ctlbuf.buf = tli_state_ptr->ti_ctlbuf; 97 peek.databuf.maxlen = -1; 98 peek.databuf.len = 0; 99 peek.databuf.buf = 0; 100 peek.flags = 0; 102 switch (ioctl(request->fd, I_PEEK, &peek)) { 104 tcpd_warn("can't peek at endpoint: %s", tli_error()) [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/m4/common/ |
| m4y.y | 85 static int peek(int c, int r1, int r2); 104 return (peek('*', POWER, '*')); 106 return (peek('=', GE, GT)); 108 return (peek('=', LE, LT)); 110 return (peek('=', EQ, EQ)); 112 return (peek('|', OROR, '|')); 114 return (peek('&', ANDAND, '&')); 116 return (peek('=', NE, '!')); 154 peek(int c, int r1, int r2)
|
| m4y_xpg4.y | 90 static int peek(char c, int r1, int r2); 110 return (peek('*', POWER, '*')); 116 return (peek('=', EQ, EQ)); 118 return (peek('|', OROR, '|')); 120 return (peek('&', ANDAND, '&')); 122 return (peek('=', NE, '!')); 160 peek(char c, int r1, int r2)
|
| /onnv/onnv-gate/usr/src/cmd/ttymon/ |
| tmpeek.c | 146 * do_peek - peek at the stream to get the data 150 * - return NULL if nothing to peek at 155 int n; /* maxlen of data to peek at */ 158 static struct strpeek peek; local 166 peekp = &peek; 173 ret = ioctl(fd, I_PEEK, &peek);
|
| /onnv/onnv-gate/usr/src/cmd/rpcgen/ |
| rpc_scan.h | 113 extern void peek(token *);
|
| rpc_scan.c | 117 * Peek at the next token 120 peek(token *tokp) function 127 * Peek at the next token and scan it if it matches what you expect 132 peek(tokp);
|
| rpc_parse.c | 270 peek(&tok); 364 peek(&tok); 455 /* now peek at next token */ 621 peek(&tok); 753 peek(&tok);
|
| /onnv/onnv-gate/usr/src/cmd/sgs/lex/common/ |
| parser.y | 629 if(peek == ' ' || peek == '\t' || sectbegin == TRUE){ 640 if(peek == '{'){ /* included code */ 649 if(peek == '%'){ 657 if(peek == ' ' || peek == '\t' || peek == '\n'){ 665 if(peek == '\n' || peek == ' ' || peek == '\t' || peek == '|' || peek == '/') [all...] |
| sub1.c | 425 if (!digit(peek) && 426 !('A' <= peek && peek <= 'F') && 427 !('a' <= peek && peek <= 'f')) 441 if (!('0' <= peek && peek <= '7')) break; 542 if (peek == '|') 624 if (peek == '\n' && !brac && copy_line) { 638 c = pres = peek; [all...] |
| once.h | 72 int peek = '\n'; /* next input character */ variable
|
| ldefs.h | 192 extern int peek; /* next input character */
|
| /onnv/onnv-gate/usr/src/lib/libast/common/sfio/ |
| sfvscanf.c | 39 static void _sfbuf(Sfio_t* f, int* peek) 41 static void _sfbuf(f, peek) 43 int* peek; 47 { if(*peek) /* try peeking for a share stream if possible */ 53 *peek = 0; /* can't peek, back to normal reads */ 67 int peek; /* != 0 if unseekable/share stream */ member in struct:_scan_s 75 (sc)->peek = peek, (sc)->n_input = n_input) 79 peek = (sc)->peek, n_input = (sc)->n_input 341 int peek; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libcmd/common/ |
| cksum.c | 183 register int peek; local 199 peek = 0; 203 if (peek) 205 peek = 0; 214 peek = 1; 222 if (peek)
|
| /onnv/onnv-gate/usr/src/lib/libast/common/misc/ |
| findlib.h | 64 int peek; member in struct:__anon57
|
| fastfind.c | 505 if ((fp->decode.peek = sfgetc(fp->fp)) != FF_OFF) 723 c = fp->decode.peek; 766 fp->decode.peek = c; 911 fp->decode.peek = c; 923 fp->decode.peek = c;
|
| /onnv/onnv-gate/usr/src/cmd/listen/ |
| nlps_serv.c | 335 * server. Peek into the stream and snarf up those bytes if they 345 struct strpeek peek; local 352 peekp = &peek; 359 ret = ioctl(0, I_PEEK, &peek); 361 sprintf(scratch, "NLPS: nullfix(): unable to PEEK, errno is %d", errno); 366 DEBUG((9, "nullfix(): no messages on stream to PEEK")); 374 DEBUG((9, "pitching 2 nulls from first peek")); 392 ret = ioctl(0, I_PEEK, &peek); 394 sprintf(scratch, "NLPS: nullfix(): unable to PEEK second time, errno is %d", errno); 395 DEBUG((9, "second peek failed, errno %d", errno)) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/rge/ |
| rge_chip.c | 1847 boolean_t peek; local [all...] |
| /onnv/onnv-gate/usr/src/common/openssl/ssl/ |
| d1_pkt.c | 126 int len, int peek); 658 int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) 672 (peek && (type != SSL3_RT_APPLICATION_DATA))) 679 if ( (ret = have_handshake_fragment(s, type, buf, len, peek))) 732 * (even in 'peek' mode) */ 761 if (!peek) [all...] |
| s2_pkt.c | 127 static int ssl2_read_internal(SSL *s, void *buf, int len, int peek) 159 if (!peek)
|
| s3_pkt.c | 794 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) 806 (peek && (type != SSL3_RT_APPLICATION_DATA))) 819 /* peek == 0 */ 874 * (even in 'peek' mode) */ 903 if (!peek) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/nge/ |
| nge_chip.c | 1852 boolean_t peek; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/sendmail/aux/ |
| mail.local.c | 576 int peek; local 611 peek = fgetc(stdin); 612 if (peek == '\n') 618 (void) ungetc(peek, stdin);
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
| Stackobj.pm | 102 sub peek { subroutine 231 confess "write_back failed for lexical @{[$obj->peek]}\n";
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
| s2p.PL | 955 sub peek(\$$){ 975 my $nc = peek($pat,$ic); 1048 if( peek($pat,$ic) =~ /[0-9]/ ){ 1084 if( peek($pat,$ic) eq '^' ){ 1088 my $nc = peek($pat,$ic); [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/bge/ |
| bge_chip2.c | 5202 boolean_t peek; local [all...] |