Home | History | Annotate | Download | only in ssl

Lines Matching refs:left

35  *    The word 'cryptographic' can be left out if the rouines from the library
133 int i,len,left;
145 left = rb->left;
154 if (left == 0)
156 else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH)
171 memmove (rb->buf+align,pkt,left);
185 if (left > 0 && n > left)
186 n = left;
190 if (left >= n)
193 rb->left=left-n;
204 * 'left' extra ones at the end */
207 memmove(pkt, s->packet, len+left);
229 while (left < n)
231 /* Now we have len+left bytes at the front of s->s3->rbuf.buf
239 i=BIO_read(s->rbio,pkt+len+left, max-left);
249 rb->left = left;
252 if (len+left == 0)
256 left+=i;
262 if (n > left)
263 n = left; /* makes the while condition false */
269 rb->left = left - n;
650 if (wb->left != 0)
844 wb->left = prefix_len + wr->length;
858 /* if s->s3->wbuf.left != 0, we need to call this */
883 (unsigned int)wb->left);
890 if (i == wb->left)
892 wb->left=0;
905 wb->left = 0;
910 wb->left-=i;
1162 if (s->s3->rbuf.left == 0) /* no read-ahead left? */
1340 if (s->s3->rbuf.left == 0) /* no read-ahead left? */
1482 if (s->s3->wbuf.left == 0) /* data still being written out? */