| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| http_server.c | 271 char reqbuf[2048], inbuf[2048]; local 314 len = BIO_gets(cbio, reqbuf, sizeof(reqbuf)); 324 if (((end = strchr(reqbuf, '\r')) != NULL && end[1] == '\n') 325 || (end = strchr(reqbuf, '\n')) != NULL) 329 "received request, 1st line: %s", reqbuf); 331 log_HTTP1(prog, LOG_TRACE, "%s", reqbuf); 339 url = meth = reqbuf; 402 accept_get ? "GET or " : "", reqbuf);
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| http_server.c | 294 char reqbuf[2048], inbuf[2048]; local 328 len = BIO_gets(cbio, reqbuf, sizeof(reqbuf)); 337 if ((end = strchr(reqbuf, '\r')) != NULL 338 || (end = strchr(reqbuf, '\n')) != NULL) 340 log_message(prog, LOG_INFO, "Received request, 1st line: %s", reqbuf); 342 meth = reqbuf; 410 accept_get ? "GET or " : "", reqbuf);
|
| /src/sys/dev/usb/ |
| vhci.c | 231 vhci_request_t reqbuf; member in struct:vhci_xfer 292 req->buf = (uint8_t *)&vxfer->reqbuf; 293 req->size = sizeof(vxfer->reqbuf); 298 memset(&vxfer->reqbuf, 0, sizeof(vxfer->reqbuf)); 299 vxfer->reqbuf.type = VHCI_REQ_CTRL; 300 memcpy(&vxfer->reqbuf.u.ctrl, &xfer->ux_request,
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| ocsp.c | 1367 char inbuf[2048], reqbuf[2048]; 1390 len = BIO_gets(cbio, reqbuf, sizeof(reqbuf)); 1394 if (strncmp(reqbuf, "GET ", 4) == 0) { 1396 for (p = reqbuf + 4; *p == ' '; ++p) 1436 } else if (strncmp(reqbuf, "POST ", 5) != 0) {
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| getifaddrs.c | 279 char reqbuf[NLMSG_ALIGN(sizeof(struct nlmsghdr)) + local 287 memset(&reqbuf, 0, sizeof(reqbuf)); 288 req_hdr = (struct nlmsghdr *)reqbuf;
|