Searched refs:reply_len (Results 1 - 25 of 35) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/macintosh/
H A Dvia-macii.c116 static int reply_len; /* number of bytes received in reply_buf or req->reply */ variable
223 req.reply_len = 0;
267 req->reply_len = 0;
421 reply_len = 0;
427 reply_len = 1;
494 reply_len = 0;
505 BUG_ON(reply_len > 15);
508 reply_len++;
521 req->reply_len = reply_len;
[all...]
H A Dvia-maciisi.c70 static int reply_len; variable
330 req->reply_len = 0;
479 reply_len = 0;
503 reply_len = 0;
552 if (reply_len++ > 16) {
585 req->reply_len = reply_ptr - req->reply;
588 if (req->reply_len <= 2 || (req->reply[1] & 2) != 0) {
590 req->reply_len = 0;
593 req->reply_len -= 2;
594 memmove(req->reply, req->reply + 2, req->reply_len);
[all...]
H A Dsmu.c192 int reply_len; local
210 reply_len = rc == 0 ? smu->cmd_buf->length : 0;
211 DPRINTK("SMU: reply len: %d\n", reply_len);
212 if (reply_len > cmd->reply_len) {
215 reply_len, cmd->reply_len);
216 reply_len = cmd->reply_len;
218 cmd->reply_len
[all...]
H A Dvia-pmu68k.c292 req->reply_len = 1;
294 req->reply_len = 0;
304 req->reply_len = 3;
317 req->reply_len = 3;
330 req->reply_len = 3;
344 req->reply_len = 3;
361 req->reply_len = 0;
421 req.reply_len = 0;
467 req->reply_len = 1;
469 req->reply_len
[all...]
H A Dadb-iop.c138 req->reply_len = amsg->count + 1;
139 memcpy(req->reply, &amsg->cmd, req->reply_len);
240 req->reply_len = 0;
H A Dvia-cuda.c396 req->reply_len = 0;
558 req->reply_len = reply_ptr - req->reply;
561 if (req->reply_len <= 2 || (req->reply[1] & 2) != 0) {
563 req->reply_len = 0;
566 req->reply_len -= 2;
567 memmove(req->reply, req->reply + 2, req->reply_len);
H A Dmacio-adb.c182 req->reply_len = 0;
241 req->reply_len = in_8(&adb->dcount.r) & HMB;
242 for (i = 0; i < req->reply_len; ++i)
H A Dadb.c127 if (req.reply_len > 1)
161 if (req.reply_len <= 1) continue;
168 if (req.reply_len > 1) {
535 if (req.reply_len < 2)
587 req->reply_len = 0;
625 req->reply_len = 2;
732 ret = req->reply_len;
H A Dvia-pmu.c566 if (req.reply_len > 0)
574 if (req.reply_len == 2) {
600 if (req.reply_len < 2)
754 req->reply_len, req->reply[0], req->reply[1], req->reply[2], req->reply[3]);
974 req->reply_len = 1;
976 req->reply_len = 0;
986 req->reply_len = 3;
999 req->reply_len = 3;
1018 req->reply_len = 0;
1080 req.reply_len
[all...]
H A Dadbhid.c1006 if ((req.reply_len) &&
1012 else if ((req.reply_len >= 4) &&
1018 else if ((req.reply_len >= 4) &&
1024 else if ((req.reply_len == 9) &&
1052 if (req.reply_len < 8)
H A Dwindfarm_smu_sensors.c80 if (cmd.cmd.reply_len != 2) {
82 id, cmd.cmd.reply_len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/powermac/
H A Dtime.c114 if (req.reply_len != 7)
116 req.reply_len);
136 if ((req.reply_len != 3) && (req.reply_len != 7))
138 req.reply_len);
157 if (req.reply_len != 4)
159 req.reply_len);
177 if (req.reply_len != 0)
179 req.reply_len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dauth.h48 void **reply_buf, size_t *reply_len);
84 void *reply_buf, size_t reply_len);
H A Dauth_none.c63 void **reply_buf, size_t *reply_len)
88 *reply_len = sizeof(au->reply_buf);
59 ceph_auth_none_create_authorizer( struct ceph_auth_client *ac, int peer_type, struct ceph_authorizer **a, void **buf, size_t *len, void **reply_buf, size_t *reply_len) argument
H A Dauth.c166 void *reply_buf, size_t reply_len)
230 return ceph_build_auth_request(ac, reply_buf, reply_len);
164 ceph_handle_auth_reply(struct ceph_auth_client *ac, void *buf, size_t len, void *reply_buf, size_t reply_len) argument
H A Dmessenger.h33 void **reply_buf, int *reply_len, int force_new);
H A Dauth_x.c530 void **reply_buf, size_t *reply_len)
554 *reply_len = sizeof(au->reply_buf);
526 ceph_x_create_authorizer( struct ceph_auth_client *ac, int peer_type, struct ceph_authorizer **a, void **buf, size_t *len, void **reply_buf, size_t *reply_len) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dadb.h49 int reply_len; member in struct:adb_request
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/usb/
H A Drndis_host.c215 * specified by @in_len. If @reply_len is not set to -1 then the reply
229 void **reply, int *reply_len)
261 if (*reply_len != -1 && len != *reply_len)
265 *reply_len = len;
305 int reply_len; local
386 reply_len = sizeof *phym;
388 0, (void **) &phym, &reply_len);
410 reply_len = ETH_ALEN;
412 48, (void **) &bp, &reply_len);
227 rndis_query(struct usbnet *dev, struct usb_interface *intf, void *buf, __le32 oid, u32 in_len, void **reply, int *reply_len) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/scsi/
H A Dsg.h262 int pack_len; /* [o] reply_len (ie useless), ignored as input */
263 int reply_len; /* [i] max length of expected reply (inc. sg_header) */ member in struct:sg_header
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dsmu.h396 int reply_len; /* reply len */ member in struct:smu_cmd
697 __u32 reply_len; /* Length of data follwing */ member in struct:smu_user_reply_hdr
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/crypto/
H A Dzcrypt_pcicc.c359 unsigned int reply_len, pad_len; local
383 reply_len = le16_to_cpu(msg->length) - 2;
384 if (reply_len > outputdatalength)
387 * For all encipher requests, the length of the ciphertext (reply_len)
396 pad_len = outputdatalength - reply_len;
407 if (copy_to_user(outputdata + pad_len, data, reply_len))
H A Dzcrypt_pcixcc.c456 unsigned int reply_len, pad_len; local
480 reply_len = msg->length - 2;
481 if (reply_len > outputdatalength)
484 * For all encipher requests, the length of the ciphertext (reply_len)
493 pad_len = outputdatalength - reply_len;
504 if (copy_to_user(outputdata + pad_len, data, reply_len))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hwmon/ams/
H A Dams-pmu.c76 if (req.reply_len > 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dsg.c368 if (old_hdr->reply_len < 0) {
429 old_hdr->reply_len = (int) hp->timeout;
430 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
477 if (count > old_hdr->reply_len)
478 count = old_hdr->reply_len;
561 if (old_hdr.reply_len < 0)
591 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
604 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
614 hp->timeout = old_hdr.reply_len; /* structur
[all...]

Completed in 291 milliseconds

12