Home
last modified time | relevance | path

Searched refs:reqbuf (Results 1 – 5 of 5) sorted by relevance

/freebsd/libexec/phttpget/
H A Dphttpget.c302 char * reqbuf = NULL; /* Request buffer */ in main() local
400 while ((nreq < argc) && ((reqbuf == NULL) || pipelined)) { in main()
402 if (reqbuf == NULL) { in main()
403 reqbuflen = makerequest(&reqbuf, argv[nreq], in main()
411 len = send(sd, reqbuf + reqbufpos, in main()
422 free(reqbuf); in main()
423 reqbuf = NULL; in main()
438 len = send(sd, reqbuf + reqbufpos, in main()
444 free(reqbuf); in main()
445 reqbuf = NULL; in main()
[all …]
/freebsd/crypto/krb5/src/lib/krb5/ccache/
H A Dcc_kcm.c85 struct k5buf reqbuf; member
175 k5_buf_init_dynamic(&req->reqbuf); in kcmreq_init()
176 k5_buf_add_len(&req->reqbuf, bytes, 4); in kcmreq_init()
179 k5_buf_add_len(&req->reqbuf, name, strlen(name) + 1); in kcmreq_init()
456 if (k5_buf_status(&req->reqbuf) != 0) in kcmio_call()
460 ret = kcmio_unix_socket_write(context, io, req->reqbuf.data, in kcmio_call()
461 req->reqbuf.len); in kcmio_call()
469 ret = kcmio_mach_call(context, io, req->reqbuf.data, req->reqbuf.len, in kcmio_call()
617 k5_buf_free(&req->reqbuf); in kcmreq_free()
711 k5_buf_add_uint32_be(&req.reqbuf, context->os_context.time_offset); in set_kdc_offset()
[all …]
/freebsd/crypto/openssl/apps/lib/
H A Dhttp_server.c271 char reqbuf[2048], inbuf[2048]; in http_server_get_asn1_req() local
314 len = BIO_gets(cbio, reqbuf, sizeof(reqbuf)); in http_server_get_asn1_req()
324 if (((end = strchr(reqbuf, '\r')) != NULL && end[1] == '\n') in http_server_get_asn1_req()
325 || (end = strchr(reqbuf, '\n')) != NULL) in http_server_get_asn1_req()
329 "received request, 1st line: %s", reqbuf); in http_server_get_asn1_req()
331 log_HTTP1(prog, LOG_TRACE, "%s", reqbuf); in http_server_get_asn1_req()
339 url = meth = reqbuf; in http_server_get_asn1_req()
402 accept_get ? "GET or " : "", reqbuf); in http_server_get_asn1_req()
/freebsd/crypto/heimdal/lib/roken/
H A Dgetifaddrs.c277 char reqbuf[NLMSG_ALIGN(sizeof(struct nlmsghdr)) + in nl_sendreq() local
285 memset(&reqbuf, 0, sizeof(reqbuf)); in nl_sendreq()
286 req_hdr = (struct nlmsghdr *)reqbuf; in nl_sendreq()
/freebsd/sys/dev/ocs_fc/
H A Docs_hw.c9621 ocs_dma_t reqbuf = { 0 }; in ocs_hw_init_io() local
9632 rc = ocs_dma_alloc(hw->os, &reqbuf, 32 + sgls_per_request*16, OCS_MIN_DMA_ALIGNMENT); in ocs_hw_init_io()
9657 io->indicator, n, sgls, NULL, &reqbuf)) { in ocs_hw_init_io()
9679 ocs_dma_free(hw->os, &reqbuf); in ocs_hw_init_io()