HomeSort by: relevance | last modified time | path
    Searched refs:thiswb (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
ssl3_buffer.c 116 SSL3_BUFFER *thiswb = &wb[currpipe]; local
118 if (thiswb->buf != NULL && thiswb->len != len) {
119 OPENSSL_free(thiswb->buf);
120 thiswb->buf = NULL; /* force reallocation */
123 if (thiswb->buf == NULL) {
136 memset(thiswb, 0, sizeof(SSL3_BUFFER));
137 thiswb->buf = p;
138 thiswb->len = len;
  /src/crypto/external/bsd/openssl/dist/ssl/record/
ssl3_buffer.c 120 SSL3_BUFFER *thiswb = &wb[currpipe]; local
122 if (thiswb->len != len) {
123 OPENSSL_free(thiswb->buf);
124 thiswb->buf = NULL; /* force reallocation */
127 if (thiswb->buf == NULL) {
143 memset(thiswb, 0, sizeof(SSL3_BUFFER));
144 thiswb->buf = p;
145 thiswb->len = len;
  /src/crypto/external/apache2/openssl/dist/ssl/record/methods/
tls_common.c 183 TLS_BUFFER *thiswb = &wb[currpipe]; local
189 if (thiswb->len != len) {
190 OPENSSL_free(thiswb->buf);
191 thiswb->buf = NULL; /* force reallocation */
194 p = thiswb->buf;
209 memset(thiswb, 0, sizeof(TLS_BUFFER));
210 thiswb->buf = p;
211 thiswb->len = len;
1921 TLS_BUFFER *thiswb; local
1928 thiswb = &rl->wbuf[rl->nextwbuf]
    [all...]

Completed in 56 milliseconds