Home
last modified time | relevance | path

Searched refs:outreq (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/go/go-1.18/
H A D0001-net-http-httputil-avoid-query-parameter-smuggling.patch50 p.Director(outreq)
51 + if outreq.Form != nil {
52 + outreq.URL.RawQuery = cleanQueryParams(outreq.URL.RawQuery)
54 outreq.Close = false
56 reqUpType := upgradeType(outreq.Header)
/OK3568_Linux_fs/u-boot/drivers/usb/gadget/
H A Df_mass_storage.c425 bh->outreq->length = length; in set_bulk_out_req_length()
904 bh->outreq->length = amount; in do_write()
906 bh->outreq->short_not_ok = 1; in do_write()
907 START_TRANSFER_OR(common, bulk_out, bh->outreq, in do_write()
925 if (bh->outreq->status != 0) { in do_write()
931 amount = bh->outreq->actual; in do_write()
970 if (bh->outreq->actual != bh->outreq->length) { in do_write()
1469 if (bh->outreq->actual != bh->outreq->length || in throw_away_data()
1470 bh->outreq->status != 0) { in throw_away_data()
1486 bh->outreq->length = amount; in throw_away_data()
[all …]
H A Df_rockusb.c445 bh->outreq->length = common->data_size; in rkusb_do_vs_write()
447 bh->outreq->short_not_ok = 1; in rkusb_do_vs_write()
449 START_TRANSFER_OR(common, bulk_out, bh->outreq, in rkusb_do_vs_write()
467 if (bh->outreq->status != 0) { in rkusb_do_vs_write()
560 if (bh->outreq->actual != bh->outreq->length) in rkusb_do_vs_write()
763 struct usb_request *req = bh->outreq; in rkusb_fixup_cbwcb()
788 struct usb_request *req = bh->outreq; in rkusb_cmd_process()
H A Dstorage_common.c341 struct usb_request *outreq; member
/OK3568_Linux_fs/kernel/net/sctp/
H A Dstream.c521 struct sctp_strreset_outreq *outreq = param.v; in sctp_process_strreset_outreq() local
528 request_seq = ntohl(outreq->request_seq); in sctp_process_strreset_outreq()
530 if (ntohl(outreq->send_reset_at_tsn) > in sctp_process_strreset_outreq()
554 nums = (ntohs(param.p->length) - sizeof(*outreq)) / sizeof(__u16); in sctp_process_strreset_outreq()
555 str_p = outreq->list_of_streams; in sctp_process_strreset_outreq()
565 asoc, outreq->response_seq, in sctp_process_strreset_outreq()
942 struct sctp_strreset_outreq *outreq; in sctp_process_strreset_resp() local
945 outreq = (struct sctp_strreset_outreq *)req; in sctp_process_strreset_resp()
946 str_p = outreq->list_of_streams; in sctp_process_strreset_resp()
947 nums = (ntohs(outreq->param_hdr.length) - sizeof(*outreq)) / in sctp_process_strreset_resp()
H A Dsm_make_chunk.c3646 struct sctp_strreset_outreq outreq; in sctp_make_strreset_req() local
3651 outlen = (sizeof(outreq) + stream_len) * out; in sctp_make_strreset_req()
3659 outreq.param_hdr.type = SCTP_PARAM_RESET_OUT_REQUEST; in sctp_make_strreset_req()
3660 outreq.param_hdr.length = htons(outlen); in sctp_make_strreset_req()
3661 outreq.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_req()
3662 outreq.response_seq = htonl(asoc->strreset_inseq - 1); in sctp_make_strreset_req()
3663 outreq.send_reset_at_tsn = htonl(asoc->next_tsn - 1); in sctp_make_strreset_req()
3665 sctp_addto_chunk(retval, sizeof(outreq), &outreq); in sctp_make_strreset_req()
/OK3568_Linux_fs/kernel/drivers/usb/gadget/function/
H A Df_mass_storage.c371 bh->outreq->length = length; in set_bulk_out_req_length()
591 if (start_transfer(common->fsg, common->fsg->bulk_out, bh->outreq)) in start_out_transfer()
862 if (bh->outreq->status != 0) { in do_write()
870 amount = bh->outreq->actual; in do_write()
922 if (bh->outreq->actual < bh->bulk_out_intended_length) { in do_write()
1534 if (bh->outreq->actual < bh->bulk_out_intended_length || in throw_away_data()
1535 bh->outreq->status != 0) { in throw_away_data()
2125 struct usb_request *req = bh->outreq; in received_cbw()
2263 if (bh->outreq) { in do_set_interface()
2264 usb_ep_free_request(fsg->bulk_out, bh->outreq); in do_set_interface()
[all …]
H A Dstorage_common.h156 struct usb_request *outreq; member