Searched refs:sent (Results 1 - 25 of 69) sorted by relevance

123

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/pci/echoaudio/
H A Dmidi.c207 int bytes, sent, time; local
213 sent = bytes = 0;
220 sent = write_midi(chip, buf, bytes);
221 if (sent < 0) {
222 snd_printk(KERN_ERR "write_midi() error %d\n", sent);
224 sent = 9000;
226 } else if (sent > 0) {
227 DE_MID(("%d bytes sent\n", sent));
228 snd_rawmidi_transmit_ack(chip->midi_out, sent);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/x25/
H A Dx25_out.c48 * Returns the amount of user data bytes sent on success
56 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; local
74 return sent;
78 "sent\n", err, sent);
102 sent += len;
108 sent = skb->len - header_len;
110 return sent;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/
H A Discsi_tcp.h108 unsigned int sent; member in struct:iscsi_buf
125 int sent; member in struct:iscsi_tcp_mgmt_task
135 int sent; /* R2T sequence progress */ member in struct:iscsi_r2t_info
151 int sent; member in struct:iscsi_tcp_cmd_task
H A Discsi_tcp.c75 ibuf->sent = 0;
92 ibuf->sent = 0;
100 rc = ibuf->sg.length - ibuf->sent;
306 r2t->sent = 0;
591 * ctask->sent total bytes sent up to the MidLayer
610 BUG_ON(tcp_ctask->sent + size > ctask->total_length);
621 tcp_ctask->sent += size;
1092 int offset = buf->sg.offset + buf->sent, res;
1109 buf->sent
1163 iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf, int *count, int *sent) argument
1441 int sent = 0, rc; local
1472 int rc, sent = 0; local
1499 iscsi_send_data(struct iscsi_cmd_task *ctask, struct iscsi_buf *sendbuf, struct scatterlist **sg, int *sent, int *count, struct iscsi_buf *digestbuf, uint32_t *digest) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/dhcp6/
H A Drelay6_parser.h52 int sent; member in struct:msg_parser
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/isdn/gigaset/
H A Dser-gigaset.c63 * result: number of bytes sent or error code < 0
70 int sent; local
82 sent = tty->driver->write(tty, skb->data, skb->len);
83 gig_dbg(DEBUG_OUTPUT, "write_modem: sent %d", sent);
84 if (sent < 0) {
87 return sent;
89 skb_pull(skb, sent);
91 /* skb sent completely */
99 return sent;
111 int sent = 0; local
166 int sent = 0; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/cx25840/
H A Dcx25840-firmware.c30 * size of the firmware chunks sent down the I2C bus to the chip.
83 int sent; local
85 if ((sent = i2c_master_send(client, data, size)) < size) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/tipc/
H A Dport.h80 * @sent:
84 * @max_pkt: maximum packet size "hint" used when building messages sent by port
101 u32 sent; member in struct:port
164 return((p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/ibmvscsi/
H A Dibmvscsi.h93 struct list_head sent; member in struct:ibmvscsi_host_data
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dadb.h51 unsigned char sent; member in struct:adb_request
80 /* Messages sent thru the client_list notifier. You should NOT stop
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dformdata.h44 size_t sent; /* number of bytes of the current line that has member in struct:Form
45 already been sent in a previous invoke */
H A Dformdata.c1258 * and resets the 'sent' counter.
1266 form->sent = 0;
1315 * deliver the formdata to the transfer loop and then sent away to the peer.
1343 if((form->data->length - form->sent ) > wantedsize - gotsize) {
1345 memcpy(buffer + gotsize , form->data->line + form->sent,
1348 form->sent += wantedsize-gotsize;
1354 form->data->line + form->sent,
1355 (form->data->length - form->sent) );
1356 gotsize += form->data->length - form->sent;
1358 form->sent
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/sctp/
H A Dchunk.c107 int sent; local
109 sent = SCTP_DATA_SENT;
111 sent = SCTP_DATA_UNSENT;
113 ev = sctp_ulpevent_make_send_failed(asoc, chunk, sent,
147 /* Hold on to all the fragments until all chunks have been sent. */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/
H A Dupnpevents.c60 int sent; member in struct:upnp_event_notify
319 //DEBUG DPRINTF(E_DEBUG, L_HTTP, "Sending UPnP Event:\n%s", obj->buffer+obj->sent);
320 i = send(obj->s, obj->buffer + obj->sent, obj->tosend - obj->sent, 0);
326 else if(i != (obj->tosend - obj->sent))
328 "upnp_event_send", i, obj->tosend - obj->sent);
329 obj->sent += i;
330 if(obj->sent == obj->tosend)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/
H A Dupnpevents.c60 int sent; member in struct:upnp_event_notify
319 //DEBUG DPRINTF(E_DEBUG, L_HTTP, "Sending UPnP Event:\n%s", obj->buffer+obj->sent);
320 i = send(obj->s, obj->buffer + obj->sent, obj->tosend - obj->sent, 0);
326 else if(i != (obj->tosend - obj->sent))
328 "upnp_event_send", i, obj->tosend - obj->sent);
329 obj->sent += i;
330 if(obj->sent == obj->tosend)
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/bluetooth/
H A Dhci_event.c97 void *sent; local
122 sent = hci_sent_cmd_data(hdev, OGF_LINK_POLICY, OCF_WRITE_LINK_POLICY);
123 if (!sent)
135 __le16 policy = get_unaligned((__le16 *) (sent + 2));
155 void *sent; local
175 sent = hci_sent_cmd_data(hdev, OGF_HOST_CTL, OCF_WRITE_AUTH_ENABLE);
176 if (!sent)
180 param = *((__u8 *) sent);
192 sent = hci_sent_cmd_data(hdev, OGF_HOST_CTL, OCF_WRITE_ENCRYPT_MODE);
193 if (!sent)
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/
H A Dupnpevents.c95 int sent; member in struct:upnp_event_notify
359 //DEBUG DPRINTF(E_DEBUG, L_HTTP, "Sending UPnP Event:\n%s", obj->buffer+obj->sent);
360 while( obj->sent < obj->tosend ) {
361 i = send(obj->s, obj->buffer + obj->sent, obj->tosend - obj->sent, 0);
367 obj->sent += i;
369 if(obj->sent == obj->tosend)
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/macintosh/
H A Dmacio-adb.c179 req->sent = 0;
219 req->sent = 1;
236 if (current_req && current_req->sent) {
H A Dvia-macii.c222 req.sent = 0;
266 req->sent = 0;
438 req->sent = 1;
466 /* just sent the command byte, set to EVEN */
H A Dadb-iop.c72 * Completion routine for ADB commands sent to the IOP.
74 * This will be called when a packet has been successfully sent.
190 req->sent = 1;
195 /* when the packet has been sent. */
239 req->sent = 0;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/bluetooth/
H A Dbfusb.c482 int sent = 0, size, count; local
525 buf[0] = 0xc1 | ((sent == 0) ? 0x04 : 0) | ((count == size) ? 0x08 : 0);
530 skb_copy_from_linear_data_offset(skb, sent, skb_put(nskb, size), size);
532 sent += size;
572 int err, pipe, len, size, sent = 0; local
599 memcpy(buf, firmware + sent, size);
609 sent += size;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/sunrpc/
H A Dxprtsock.c322 int err, sent = 0; local
338 sent += err;
342 if (sent == 0)
345 sent += err;
346 return sent;
361 int err, sent = 0; local
378 sent += err;
389 sent += err;
395 return sent;
398 if (sent
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/
H A Darping.c40 static unsigned sent; variable
82 sent++;
96 sent, brd_sent,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/
H A Dhvc_iseries.c147 int sent = 0; local
158 sent = count;
189 sent += len;
197 return sent;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/serial/
H A Dsunhv.c63 unsigned long len, status, sent; local
67 status = sun4v_con_write(ra, len, &sent);
70 xmit->tail = (xmit->tail + sent) & (UART_XMIT_SIZE - 1);
71 port->icount.tx += sent;

Completed in 418 milliseconds

123