Searched defs:wlen (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/ssl/
H A Dssl_util_ocsp.c111 apr_size_t wlen = remain; local
113 rv = apr_socket_send(sd, wbuf, &wlen);
115 remain -= wlen;
/httpd/server/
H A Dapreq_util.c1008 apr_off_t wlen; local
1042 s = apreq_brigade_fwrite(file, &wlen, out);
1047 last_out = apr_bucket_file_create(file, wlen, 0,
1058 wlen = last_out->start + last_out->length;
1059 s = apr_file_seek(f->fd, APR_SET, &wlen);
1072 s = apreq_brigade_fwrite(f->fd, &wlen, in);
1081 while ((apr_uint64_t)wlen > FILE_BUCKET_LIMIT - last_out->length) {
1087 wlen -= FILE_BUCKET_LIMIT - last_out->length;
1100 last_out->length += wlen;
1114 apr_off_t *wlen,
[all...]
H A Dvhost.c154 apr_size_t wlen; local
161 wlen = strlen(w_); /* wlen must be > 0 at this point */
162 w = apr_pstrmemdup(p, w_, wlen);
165 if (w[wlen - 1] == '*') {
166 if (wlen < 2) {
169 else if (w[wlen - 2] == ':') {
170 w[wlen - 2] = '\0';

Completed in 15 milliseconds