Searched refs:transport (Results 1 - 25 of 67) sorted by last modified time

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/storage/
H A Dusb.c66 #include "transport.h"
563 /* Get the transport settings */
569 us->transport = usb_stor_CB_transport;
576 us->transport = usb_stor_CBI_transport;
583 us->transport = usb_stor_Bulk_transport;
590 us->transport = usbat_transport;
599 us->transport = sddr09_transport;
608 us->transport = sddr55_transport;
617 us->transport = dpcm_transport;
626 us->transport
[all...]
H A DMakefile25 usb-storage-objs := scsiglue.o protocol.o transport.o usb.o \
H A Dshuttle_usbat.c54 #include "transport.h"
160 * Some USBAT-specific commands can only be executed over a command transport
161 * This transport allows one (len=8) or two (len=16) vendor-specific commands
847 * Sets transport functions as appropriate.
892 * Set the transport function based on the device type
910 us->transport = usbat_hp8200e_transport;
914 us->transport = usbat_flash_transport;
1726 * Default transport function. Attempts to detect which transport function
1730 * device type and changes the us->transport pt
[all...]
H A Dtransport.c3 * $Id: transport.c,v 1.1.1.1 2007/08/03 18:53:02 Exp $
57 #include "transport.h"
531 /* Invoke the transport and basic error-handling/recovery methods
541 /* send the command to the transport layer */
543 result = us->transport(srb, us);
554 /* if there is a transport error, reset and don't auto-sense */
556 US_DEBUGP("-- transport indicates error, resetting\n");
561 /* if the transport provided its own sense data, don't auto-sense */
577 * If we're running the CB transport, which is incapable
584 US_DEBUGP("-- CB transport devic
[all...]
H A Dusb.h131 trans_cmnd transport; /* transport function */ member in struct:us_data
132 trans_reset transport_reset; /* transport device reset */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Drtsp.c105 static void rtsp_setup(CURL *curl, const char *uri, const char *transport) argument
109 printf(" TRANSPORT %s\n", transport);
111 my_curl_easy_setopt(curl, CURLOPT_RTSP_TRANSPORT, transport);
175 const char *transport = "RTP/AVP;unicast;client_port=1234-1235"; /* UDP */ local
177 const char *transport = "RTP/AVP/TCP;unicast;client_port=1234-1235"; /* TCP */
198 printf("Usage: %s url [transport]\n", basename);
200 printf(" transport (optional) specifier for media stream protocol\n");
201 printf(" default transport: %s\n", transport);
212 transport
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-cref.tex1122 from transport protocols to select a working router, so the order
1899 IP protocol, transport protocol ports or even packet payload.
1926 Matching IP protocols and transport ports is also possible,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/mthca/
H A Dmthca_provider.h268 u8 transport; member in struct:mthca_qp
H A Dmthca_qp.c287 static int to_mthca_st(int transport) argument
289 switch (transport) {
473 if (qp->transport == RC || qp->transport == UC) {
565 (to_mthca_st(qp->transport) << 16));
586 if (qp->transport == MLX || qp->transport == UD)
619 if (qp->transport == MLX)
884 mthca_dbg(dev, "Bad QP transition (transport %d) "
886 qp->transport, cur_stat
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Ddaemon_kern.c85 static struct transport daemon_transport = {
H A Dmcast_kern.c2 * user-mode-linux networking multicast transport
114 static struct transport mcast_transport = {
H A Dnet_kern.c360 struct transport *transport)
367 size = transport->private_size + sizeof(struct uml_net_private);
402 /* This points to the transport private data. It's still clear, but we
426 (*transport->kern->init)(dev, init);
433 .protocol = transport->kern->protocol,
434 .open = transport->user->open,
435 .close = transport->user->close,
436 .remove = transport->user->remove,
437 .read = transport
359 eth_configure(int n, void *init, char *mac, struct transport *transport) argument
548 check_transport(struct transport *transport, char *eth, int n, void **init_out, char **mac_out) argument
604 struct transport *transport; local
[all...]
H A Dpcap_kern.c103 static struct transport pcap_transport = {
H A Dslip_kern.c82 static struct transport slip_transport = {
H A Dslirp_kern.c106 static struct transport slirp_transport = {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dnet_kern.h53 struct transport { struct
68 extern void register_transport(struct transport *new);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/drivers/
H A Dethertap_kern.c93 static struct transport ethertap_transport = {
H A Dtuntap_kern.c77 static struct transport tuntap_transport = {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/
H A Dtrans_fd.c4 * Fd transport layer. Includes deprecated socket layer.
42 #include "transport.h"
144 struct v9fs_transport *trans = v9ses->transport;
198 ((struct v9fs_trans_fd *)v9ses->transport->priv)->rd->f_flags |=
H A Dv9fs.c37 #include "transport.h"
306 v9ses->transport = kmalloc(sizeof(*v9ses->transport), GFP_KERNEL);
307 if (!v9ses->transport) {
312 memmove(v9ses->transport, trans_proto, sizeof(*v9ses->transport));
314 if ((retval = v9ses->transport->init(v9ses, dev_name, data)) < 0) {
315 eprintk(KERN_ERR, "problem initializing transport\n");
323 v9ses->mux = v9fs_mux_init(v9ses->transport, v9ses->maxdata + V9FS_IOHDRSZ,
420 if (v9ses->transport) {
[all...]
H A Dv9fs.h60 struct v9fs_transport *transport; member in struct:v9fs_session_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/afs/
H A Drxrpc.c93 srx.transport_len = sizeof(srx.transport.sin);
94 srx.transport.sin.sin_family = AF_INET;
95 srx.transport.sin.sin_port = htons(AFS_CM_PORT);
96 memset(&srx.transport.sin.sin_addr, 0,
97 sizeof(srx.transport.sin.sin_addr));
331 srx.transport_len = sizeof(srx.transport.sin);
332 srx.transport.sin.sin_family = AF_INET;
333 srx.transport.sin.sin_port = call->port;
334 memcpy(&srx.transport.sin.sin_addr, addr, 4);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A DMakefile6 cifs-objs := cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o inode.o link.o misc.o netmisc.o smbdes.o smbencrypt.o transport.o asn1.o md4.o md5.o cifs_unicode.o nterr.o xattr.o cifsencrypt.o fcntl.o readdir.o ioctl.o sess.o export.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ecryptfs/
H A Decryptfs_kernel.h557 int ecryptfs_process_helo(unsigned int transport, uid_t uid, pid_t pid);
561 int ecryptfs_send_message(unsigned int transport, char *data, int data_len,
565 int ecryptfs_init_messaging(unsigned int transport);
566 void ecryptfs_release_messaging(unsigned int transport);
H A Dmessaging.c131 static int ecryptfs_send_raw_message(unsigned int transport, u16 msg_type, argument
136 switch(transport) {
150 * @transport: The underlying transport (netlink, etc.)
161 int ecryptfs_process_helo(unsigned int transport, uid_t uid, pid_t pid) argument
181 rc = ecryptfs_send_raw_message(transport, ECRYPTFS_NLMSG_QUIT,
321 * @transport: The transport over which to send the message (i.e.,
327 int ecryptfs_send_message(unsigned int transport, char *data, int data_len, argument
353 switch (transport) {
409 ecryptfs_init_messaging(unsigned int transport) argument
474 ecryptfs_release_messaging(unsigned int transport) argument
[all...]

Completed in 248 milliseconds

123