/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | edd.c | 34 * @v intf Interface 39 int edd_describe ( struct interface *intf, struct edd_interface_type *type, argument 43 intf_get_dest_op ( intf, edd_describe, &dest );
|
H A D | job.c | 34 * @v intf Object interface 37 void job_progress ( struct interface *intf, struct job_progress *progress ) { argument 40 intf_get_dest_op ( intf, job_progress, &dest ); 43 DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " job_progress\n", 44 INTF_INTF_DBG ( intf, dest ) );
|
H A D | acpi.c | 63 * @v intf Interface 68 int acpi_describe ( struct interface *intf, argument 72 intf_get_dest_op ( intf, acpi_describe, &dest );
|
H A D | blockdev.c | 121 * @v intf Interface 124 void block_capacity ( struct interface *intf, argument 128 intf_get_dest_op ( intf, block_capacity, &dest );
|
H A D | monojob.c | 39 static void monojob_close ( struct interface *intf, int rc ) { argument 41 intf_restart ( intf, rc );
|
H A D | interface.c | 55 * @v intf Object interface 65 void intf_plug ( struct interface *intf, struct interface *dest ) { argument 66 DBGC ( INTF_COL ( intf ), 68 INTF_INTF_DBG ( intf, intf->dest ), INTF_DBG ( dest ) ); 70 intf_put ( intf->dest ); 71 intf->dest = dest; 92 * @v intf Object interface 94 void intf_unplug ( struct interface *intf ) { 95 intf_plug ( intf, 161 intf_get_dest_op_no_passthru_untyped( struct interface *intf, void *type, struct interface **dest ) argument 186 intf_get_dest_op_untyped( struct interface *intf, void *type, struct interface **dest ) argument 223 intf_close( struct interface *intf, int rc ) argument 251 intf_shutdown( struct interface *intf, int rc ) argument 275 intf_restart( struct interface *intf, int rc ) argument [all...] |
H A D | open.c | 54 * @v intf Data transfer interface 61 int xfer_open_uri ( struct interface *intf, struct uri *uri ) { argument 76 DBGC ( INTF_COL ( intf ), "INTF " INTF_FMT " attempted to open " 78 INTF_DBG ( intf ), resolved_uri->scheme ); 84 DBGC ( INTF_COL ( intf ), "INTF " INTF_FMT " opening %s URI\n", 85 INTF_DBG ( intf ), resolved_uri->scheme ); 86 if ( ( rc = opener->open ( intf, resolved_uri ) ) != 0 ) { 87 DBGC ( INTF_COL ( intf ), "INTF " INTF_FMT " could not open: " 88 "%s\n", INTF_DBG ( intf ), strerror ( rc ) ); 102 * @v intf Dat 109 xfer_open_uri_string( struct interface *intf, const char *uri_string ) argument 136 xfer_open_socket( struct interface *intf, int semantics, struct sockaddr *peer, struct sockaddr *local ) argument 166 xfer_vopen( struct interface *intf, int type, va_list args ) argument 198 xfer_open( struct interface *intf, int type, ... ) argument 220 xfer_vreopen( struct interface *intf, int type, va_list args ) argument [all...] |
H A D | xfer.c | 52 * @v intf Data transfer interface 57 int xfer_vredirect ( struct interface *intf, int type, va_list args ) { argument 61 intf_get_dest_op_no_passthru ( intf, xfer_vredirect, &dest ); 65 DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " redirect\n", 66 INTF_INTF_DBG ( intf, dest ) ); 90 DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " redirect " 91 "failed: %s\n", INTF_INTF_DBG ( intf, dest ), 102 * @v intf Data transfer interface 105 size_t xfer_window ( struct interface *intf ) { 108 intf_get_dest_op ( intf, xfer_windo 157 xfer_alloc_iob( struct interface *intf, size_t len ) argument 193 xfer_deliver( struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta ) argument 237 xfer_redirect( struct interface *intf, int type, ... ) argument 254 xfer_deliver_iob( struct interface *intf, struct io_buffer *iobuf ) argument 267 xfer_deliver_raw_meta( struct interface *intf, const void *data, size_t len, struct xfer_metadata *meta ) argument 287 xfer_deliver_raw( struct interface *intf, const void *data, size_t len ) argument 299 xfer_vprintf( struct interface *intf, const char *format, va_list args ) argument 333 xfer_printf( struct interface *intf, const char *format, ... ) argument 350 xfer_seek( struct interface *intf, off_t offset ) argument [all...] |
H A D | resolv.c | 47 * @v intf Object interface 50 void resolv_done ( struct interface *intf, struct sockaddr *sa ) { argument 53 intf_get_dest_op ( intf, resolv_done, &dest ); 56 DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " resolv_done\n", 57 INTF_INTF_DBG ( intf, dest ) );
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/syslinux/ |
H A D | comboot_resolv.c | 11 struct interface intf; member in struct:comboot_resolver 19 intf_shutdown ( &comboot_resolver->intf, rc ); 38 INTF_DESC ( struct comboot_resolver, intf, comboot_resolv_op ); 41 .intf = INTF_INIT ( comboot_resolv_desc ), 50 if ( ( rc = resolv ( &comboot_resolver.intf, name, NULL ) ) != 0 )
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | interface.h | 50 #define intf_offset( object_type, intf ) \ 51 ( ( ( ( typeof ( ( ( object_type * ) NULL )->intf ) * ) NULL ) \ 53 ? offsetof ( object_type, intf ) \ 54 : offsetof ( object_type, intf ) ) 60 * @v intf Interface name (i.e. field within object data type) 64 #define INTF_DESC( object_type, intf, operations ) { \ 65 .offset = intf_offset ( object_type, intf ), \ 76 * @v intf Interface name (i.e. field within object data type) 81 #define INTF_DESC_PASSTHRU( object_type, intf, operations, passthru ) { \ 82 .offset = offsetof ( object_type, intf ), \ 158 intf_init( struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt ) argument [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/block/ |
H A D | scsi.c | 174 void scsi_response ( struct interface *intf, struct scsi_rsp *response ) { argument 177 intf_get_dest_op ( intf, scsi_response, &dest );
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | zconf.h | 102 # define intf vboxzlib_intf macro 225 # define intf z_intf macro 472 typedef int FAR intf; typedef
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | jaxws-tools.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ... |
H A D | jaxb-xjc.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ... |