Home | History | Annotate | Download | only in core

Lines Matching refs:xfer

7 #include <gpxe/xfer.h>
18 struct xfer_interface xfer;
25 xfer_nullify ( &hw->xfer );
26 xfer_close ( &hw->xfer, rc );
30 static void hw_xfer_close ( struct xfer_interface *xfer, int rc ) {
31 struct hw *hw = container_of ( xfer, struct hw, xfer );
49 if ( xfer_window ( &hw->xfer ) ) {
50 rc = xfer_deliver_raw ( &hw->xfer, hw_msg, sizeof ( hw_msg ) );
55 static int hw_open ( struct xfer_interface *xfer, struct uri *uri __unused ) {
62 xfer_init ( &hw->xfer, &hw_xfer_operations, &hw->refcnt );
66 xfer_plug_plug ( &hw->xfer, xfer );