Searched refs:ipipe (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/storage/
H A Dfreecom.c112 unsigned int ipipe, unsigned int opipe, int count)
135 result = usb_stor_bulk_transfer_sg(us, ipipe, srb->request_buffer,
146 int unsigned ipipe, unsigned int opipe, int count)
186 unsigned int ipipe, opipe; /* We need both pipes. */ local
198 ipipe = us->recv_bulk_pipe;
222 result = usb_stor_bulk_transfer_buf (us, ipipe, fst,
262 result = usb_stor_bulk_transfer_buf (us, ipipe, fst,
318 result = freecom_readdata (srb, us, ipipe, opipe, length);
323 result = usb_stor_bulk_transfer_buf (us, ipipe, fst,
347 result = freecom_writedata (srb, us, ipipe, opip
111 freecom_readdata(struct scsi_cmnd *srb, struct us_data *us, unsigned int ipipe, unsigned int opipe, int count) argument
145 freecom_writedata(struct scsi_cmnd *srb, struct us_data *us, int unsigned ipipe, unsigned int opipe, int count) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dsplice.c1430 * Link contents of ipipe to opipe.
1432 static int link_pipe(struct pipe_inode_info *ipipe, argument
1439 inode_double_lock(ipipe->inode, opipe->inode);
1453 if (i >= ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS)
1456 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1463 ibuf->ops->get(ipipe, ibuf);
1483 inode_double_unlock(ipipe->inode, opipe->inode);
1507 struct pipe_inode_info *ipipe = pipe_info(in->f_path.dentry->d_inode); local
1512 * Duplicate the contents of ipipe t
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/
H A Dtty.c627 int ipipe[2], opipe[2], ok; local
629 if (pipe(ipipe) < 0 || pipe(opipe) < 0)
633 (void) fcntl(ipipe[0], F_SETFD, FD_CLOEXEC);
636 ok = device_script(ptycommand, opipe[0], ipipe[1], 1) == 0
637 && start_charshunt(ipipe[0], opipe[1]);
638 close(ipipe[0]);
639 close(ipipe[1]);

Completed in 109 milliseconds