Lines Matching refs:in_req
43 struct usb_request *in_req, *out_req; member
211 if (f_fb->in_req) { in fastboot_disable()
212 free(f_fb->in_req->buf); in fastboot_disable()
213 usb_ep_free_request(f_fb->in_ep, f_fb->in_req); in fastboot_disable()
214 f_fb->in_req = NULL; in fastboot_disable()
271 f_fb->in_req = fastboot_start_ep(f_fb->in_ep); in fastboot_set_alt()
272 if (!f_fb->in_req) { in fastboot_set_alt()
277 f_fb->in_req->complete = fastboot_complete; in fastboot_set_alt()
324 struct usb_request *in_req = fastboot_func->in_req; in fastboot_tx_write() local
327 memcpy(in_req->buf, buffer, buffer_size); in fastboot_tx_write()
328 in_req->length = buffer_size; in fastboot_tx_write()
330 usb_ep_dequeue(fastboot_func->in_ep, in_req); in fastboot_tx_write()
332 ret = usb_ep_queue(fastboot_func->in_ep, in_req, 0); in fastboot_tx_write()
446 fastboot_func->in_req->complete = do_bootm_on_complete; in rx_handler_command()
450 fastboot_func->in_req->complete = do_exit_on_complete; in rx_handler_command()
455 fastboot_func->in_req->complete = compl_do_reset; in rx_handler_command()