Searched refs:opipe (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)
126 result = usb_stor_bulk_transfer_buf (us, opipe, fxfr,
146 int unsigned ipipe, unsigned int opipe, int count)
160 result = usb_stor_bulk_transfer_buf (us, opipe, fxfr,
169 result = usb_stor_bulk_transfer_sg(us, opipe, srb->request_buffer,
186 unsigned int ipipe, opipe; /* We need both pipes. */ local
197 opipe = us->send_bulk_pipe;
209 result = usb_stor_bulk_transfer_buf (us, opipe, fcb,
249 result = usb_stor_bulk_transfer_buf (us, opipe, fcb,
318 result = freecom_readdata (srb, us, ipipe, opipe, lengt
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.
1433 struct pipe_inode_info *opipe,
1439 inode_double_lock(ipipe->inode, opipe->inode);
1442 if (!opipe->readers) {
1453 if (i >= ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS)
1457 nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1465 obuf = opipe->bufs + nbuf;
1477 opipe->nrbufs++;
1483 inode_double_unlock(ipipe->inode, opipe
1432 link_pipe(struct pipe_inode_info *ipipe, struct pipe_inode_info *opipe, size_t len, unsigned int flags) argument
1508 struct pipe_inode_info *opipe = pipe_info(out->f_path.dentry->d_inode); local
[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)
634 (void) fcntl(opipe[1], F_SETFD, FD_CLOEXEC);
636 ok = device_script(ptycommand, opipe[0], ipipe[1], 1) == 0
637 && start_charshunt(ipipe[0], opipe[1]);
640 close(opipe[0]);
641 close(opipe[1]);

Completed in 71 milliseconds