crypto/openssh/auth-pam.c
1131
struct pam_response *reply;
crypto/openssh/auth-pam.c
1141
if ((reply = calloc(n, sizeof(*reply))) == NULL)
crypto/openssh/auth-pam.c
1147
reply[i].resp =
crypto/openssh/auth-pam.c
1150
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
1156
if ((reply[i].resp = strdup(input)) == NULL)
crypto/openssh/auth-pam.c
1158
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
1163
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
1169
*resp = reply;
crypto/openssh/auth-pam.c
1174
free(reply[i].resp);
crypto/openssh/auth-pam.c
1176
free(reply);
crypto/openssh/auth-pam.c
1291
struct pam_response *reply;
crypto/openssh/auth-pam.c
1302
if ((reply = calloc(n, sizeof(*reply))) == NULL)
crypto/openssh/auth-pam.c
1310
if ((reply[i].resp = strdup(sshpam_password)) == NULL)
crypto/openssh/auth-pam.c
1312
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
1323
if ((reply[i].resp = strdup("")) == NULL)
crypto/openssh/auth-pam.c
1325
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
1331
*resp = reply;
crypto/openssh/auth-pam.c
1336
free(reply[i].resp);
crypto/openssh/auth-pam.c
1338
free(reply);
crypto/openssh/auth-pam.c
396
struct pam_response *reply;
crypto/openssh/auth-pam.c
411
if ((reply = calloc(n, sizeof(*reply))) == NULL)
crypto/openssh/auth-pam.c
414
free(reply);
crypto/openssh/auth-pam.c
438
&reply[i].resp, NULL)) != 0)
crypto/openssh/auth-pam.c
458
*resp = reply;
crypto/openssh/auth-pam.c
463
free(reply[i].resp);
crypto/openssh/auth-pam.c
465
free(reply);
crypto/openssh/auth-pam.c
625
struct pam_response *reply;
crypto/openssh/auth-pam.c
634
if ((reply = calloc(n, sizeof(*reply))) == NULL)
crypto/openssh/auth-pam.c
645
reply[i].resp_retcode = PAM_SUCCESS;
crypto/openssh/auth-pam.c
651
*resp = reply;
crypto/openssh/auth-pam.c
656
free(reply[i].resp);
crypto/openssh/auth-pam.c
658
free(reply);
crypto/openssh/authfd.c
138
ssh_request_reply(int sock, struct sshbuf *request, struct sshbuf *reply)
crypto/openssh/authfd.c
166
sshbuf_reset(reply);
crypto/openssh/authfd.c
173
if ((r = sshbuf_put(reply, buf, l)) != 0)
crypto/openssh/authfd.c
184
struct sshbuf *reply;
crypto/openssh/authfd.c
188
if ((reply = sshbuf_new()) == NULL)
crypto/openssh/authfd.c
190
if ((r = ssh_request_reply(sock, request, reply)) != 0 ||
crypto/openssh/authfd.c
191
(r = sshbuf_get_u8(reply, &type)) != 0 ||
crypto/openssh/authfd.c
197
sshbuf_free(reply);
crypto/openssh/clientloop.c
1956
u_char reply;
crypto/openssh/clientloop.c
1967
(r = sshpkt_get_u8(ssh, &reply)) != 0)
crypto/openssh/clientloop.c
1971
id, rtype, reply);
crypto/openssh/clientloop.c
1998
if (reply && c != NULL && !(c->flags & CHAN_CLOSE_SENT)) {
crypto/openssh/mux.c
1008
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/mux.c
1027
reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
crypto/openssh/mux.c
1061
struct sshbuf *reply;
crypto/openssh/mux.c
1071
if ((reply = sshbuf_new()) == NULL)
crypto/openssh/mux.c
1076
reply_error(reply, MUX_S_FAILURE, cctx->rid,
crypto/openssh/mux.c
1084
if ((r = sshbuf_put_u32(reply, MUX_S_SESSION_OPENED)) != 0 ||
crypto/openssh/mux.c
1085
(r = sshbuf_put_u32(reply, cctx->rid)) != 0 ||
crypto/openssh/mux.c
1086
(r = sshbuf_put_u32(reply, c->self)) != 0)
crypto/openssh/mux.c
1091
if ((r = sshbuf_put_stringb(cc->output, reply)) != 0)
crypto/openssh/mux.c
1093
sshbuf_free(reply);
crypto/openssh/mux.c
1104
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
1113
reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
crypto/openssh/mux.c
1128
reply_ok(reply, rid);
crypto/openssh/mux.c
1134
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
1141
if ((r = sshbuf_put_u32(reply, MUX_S_PROXY)) != 0 ||
crypto/openssh/mux.c
1142
(r = sshbuf_put_u32(reply, rid)) != 0)
crypto/openssh/mux.c
1362
struct sshbuf *reply;
crypto/openssh/mux.c
1371
if ((reply = sshbuf_new()) == NULL)
crypto/openssh/mux.c
1376
reply_error(reply, MUX_S_FAILURE, cctx->rid,
crypto/openssh/mux.c
1412
if ((r = sshbuf_put_u32(reply, MUX_S_SESSION_OPENED)) != 0 ||
crypto/openssh/mux.c
1413
(r = sshbuf_put_u32(reply, cctx->rid)) != 0 ||
crypto/openssh/mux.c
1414
(r = sshbuf_put_u32(reply, c->self)) != 0)
crypto/openssh/mux.c
1419
if ((r = sshbuf_put_stringb(cc->output, reply)) != 0)
crypto/openssh/mux.c
1421
sshbuf_free(reply);
crypto/openssh/mux.c
268
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
311
reply_ok(struct sshbuf *reply, u_int rid)
crypto/openssh/mux.c
315
if ((r = sshbuf_put_u32(reply, MUX_S_OK)) != 0 ||
crypto/openssh/mux.c
316
(r = sshbuf_put_u32(reply, rid)) != 0)
crypto/openssh/mux.c
322
reply_error(struct sshbuf *reply, u_int type, u_int rid, const char *msg)
crypto/openssh/mux.c
326
if ((r = sshbuf_put_u32(reply, type)) != 0 ||
crypto/openssh/mux.c
327
(r = sshbuf_put_u32(reply, rid)) != 0 ||
crypto/openssh/mux.c
328
(r = sshbuf_put_cstring(reply, msg)) != 0)
crypto/openssh/mux.c
334
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
411
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/mux.c
423
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/mux.c
444
reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
crypto/openssh/mux.c
491
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
498
if ((r = sshbuf_put_u32(reply, MUX_S_ALIVE)) != 0 ||
crypto/openssh/mux.c
499
(r = sshbuf_put_u32(reply, rid)) != 0 ||
crypto/openssh/mux.c
500
(r = sshbuf_put_u32(reply, (u_int)getpid())) != 0)
crypto/openssh/mux.c
508
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
517
reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
crypto/openssh/mux.c
524
reply_ok(reply, rid);
crypto/openssh/mux.c
684
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
737
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/mux.c
773
reply_ok(reply, rid);
crypto/openssh/mux.c
785
if ((r = sshbuf_put_u32(reply,
crypto/openssh/mux.c
787
(r = sshbuf_put_u32(reply, rid)) != 0 ||
crypto/openssh/mux.c
788
(r = sshbuf_put_u32(reply,
crypto/openssh/mux.c
800
reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
crypto/openssh/mux.c
811
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/mux.c
835
reply_ok(reply, rid);
crypto/openssh/mux.c
849
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
940
reply_error(reply, MUX_S_FAILURE, rid, error_reason);
crypto/openssh/mux.c
942
reply_ok(reply, rid);
crypto/openssh/mux.c
961
Channel *c, struct sshbuf *m, struct sshbuf *reply)
crypto/openssh/mux.c
997
reply_error(reply, MUX_S_FAILURE, rid,
crypto/openssh/sshconnect2.c
495
char *reply;
crypto/openssh/sshconnect2.c
497
if ((r = sshpkt_get_cstring(ssh, &reply, NULL)) != 0)
crypto/openssh/sshconnect2.c
499
debug2("service_accept: %s", reply);
crypto/openssh/sshconnect2.c
500
free(reply);
lib/libc/rpc/svc_dg.c
172
char *reply;
lib/libc/rpc/svc_dg.c
206
if (cache_get(xprt, msg, &reply, &replylen)) {
lib/libc/rpc/svc_dg.c
207
_sendto(xprt->xp_fd, reply, replylen, 0,
lib/libnetgraph/msg.c
139
if (NgRecvMsg(cs, reply, sizeof(replybuf), NULL) < 0)
lib/libnetgraph/msg.c
279
NgRecvAsciiMsg(int cs, struct ng_mesg *reply, size_t replen, char *path)
lib/libnetgraph/msg.c
286
bufSize = 2 * sizeof(*reply) + replen;
lib/libnetgraph/msg.c
295
memcpy(reply, msg, sizeof(*msg));
lib/libnetgraph/msg.c
313
strncpy(reply->data, ascii->data, ascii->header.arglen);
lib/libnetgraph/msg.c
96
struct ng_mesg *const reply = (struct ng_mesg *)replybuf;
lib/libnetgraph/msg.c
97
struct ng_mesg *const binary = (struct ng_mesg *)reply->data;
lib/libnetgraph7/msg.c
140
if (NgAllocRecvMsg(cs, &reply, NULL) < 0)
lib/libnetgraph7/msg.c
144
binary = (struct ng_mesg *)reply->data;
lib/libnetgraph7/msg.c
151
free(reply);
lib/libnetgraph7/msg.c
155
free(reply);
lib/libnetgraph7/msg.c
322
NgRecvAsciiMsg(int cs, struct ng_mesg *reply, size_t replen, char *path)
lib/libnetgraph7/msg.c
329
bufSize = 2 * sizeof(*reply) + replen;
lib/libnetgraph7/msg.c
338
memcpy(reply, msg, sizeof(*msg));
lib/libnetgraph7/msg.c
356
strncpy(reply->data, ascii->data, ascii->header.arglen);
lib/libnetgraph7/msg.c
367
NgAllocRecvAsciiMsg(int cs, struct ng_mesg **reply, char *path)
lib/libnetgraph7/msg.c
374
(*reply = malloc(len)) == NULL)
lib/libnetgraph7/msg.c
376
if ((len = NgRecvAsciiMsg(cs, *reply, len, path)) < 0)
lib/libnetgraph7/msg.c
377
free(*reply);
lib/libnetgraph7/msg.c
94
struct ng_mesg *reply, *binary, *ascii;
lib/libtelnet/auth.c
485
if (ap->reply)
lib/libtelnet/auth.c
486
(*ap->reply)(ap, data+2, cnt-2);
lib/libtelnet/auth.h
69
void (*reply)(struct XauthP *, unsigned char *, int);
lib/libtelnet/encrypt.c
572
if (!ep->reply) {
lib/libtelnet/encrypt.c
581
ret = (*ep->reply)(data, cnt);
lib/libtelnet/encrypt.h
89
int (*reply)(unsigned char *, int);
lib/libtelnet/kerberos5.c
620
krb5_ap_rep_enc_part *reply;
lib/libtelnet/kerberos5.c
627
ret = krb5_rd_rep(context, auth_context, &inbuf, &reply);
lib/libtelnet/kerberos5.c
634
krb5_free_ap_rep_enc_part(context, reply);
lib/libtelnet/sra.c
489
struct pam_response *reply = malloc(sizeof(*reply) * num_msg);
lib/libtelnet/sra.c
491
if (reply == NULL)
lib/libtelnet/sra.c
497
reply[i].resp_retcode = PAM_SUCCESS;
lib/libtelnet/sra.c
498
reply[i].resp = COPY_STRING(cred->uname);
lib/libtelnet/sra.c
502
reply[i].resp_retcode = PAM_SUCCESS;
lib/libtelnet/sra.c
503
reply[i].resp = COPY_STRING(cred->pass);
lib/libtelnet/sra.c
508
reply[i].resp_retcode = PAM_SUCCESS;
lib/libtelnet/sra.c
509
reply[i].resp = NULL;
lib/libtelnet/sra.c
512
free(reply);
lib/libtelnet/sra.c
517
*resp = reply;
libexec/ftpd/extern.h
57
void reply(int, const char *, ...) __printflike(2, 3);
libexec/ftpd/ftpcmd.y
1046
reply(500, "EPSV command disabled.");
libexec/ftpd/ftpcmd.y
1058
reply(550, "Permission denied.");
libexec/ftpd/ftpcmd.y
1284
reply(421,
libexec/ftpd/ftpcmd.y
1309
reply(221, "You could at least say goodbye.");
libexec/ftpd/ftpcmd.y
1312
reply(500, "Command too long.");
libexec/ftpd/ftpcmd.y
1585
reply(214, "Direct comments to ftp-bugs@%s.", hostname);
libexec/ftpd/ftpcmd.y
1587
reply(214, "End.");
libexec/ftpd/ftpcmd.y
1593
reply(502, "Unknown command %s.", s);
libexec/ftpd/ftpcmd.y
1597
reply(214, "Syntax: %s%s %s", type, c->name, c->help);
libexec/ftpd/ftpcmd.y
1599
reply(214, "%s%-*s\t%s; unimplemented.", type, width,
libexec/ftpd/ftpcmd.y
1613
reply(550, "%s: not a plain file.", filename);
libexec/ftpd/ftpcmd.y
1615
reply(213, "%jd", (intmax_t)stbuf.st_size);
libexec/ftpd/ftpcmd.y
1632
reply(550, "%s: not a plain file.", filename);
libexec/ftpd/ftpcmd.y
1636
reply(550, "%s: too large for type A SIZE.", filename);
libexec/ftpd/ftpcmd.y
1649
reply(213, "%jd", (intmax_t)count);
libexec/ftpd/ftpcmd.y
1652
reply(504, "SIZE not implemented for type %s.",
libexec/ftpd/ftpcmd.y
1664
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
1673
reply(500, "Illegal PORT range rejected.");
libexec/ftpd/ftpcmd.y
1680
reply(200, "%s command successful.", pcmd);
libexec/ftpd/ftpcmd.y
1693
reply(530, "Please login with USER and PASS.");
libexec/ftpd/ftpcmd.y
1769
reply(550, "Wildcard is ambiguous.");
libexec/ftpd/ftpcmd.y
177
reply(501, "No PORT allowed after EPSV ALL.");
libexec/ftpd/ftpcmd.y
1773
reply(550, "Wildcard expansion error.");
libexec/ftpd/ftpcmd.y
1791
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
1800
reply(500, "Illegal PORT range rejected.");
libexec/ftpd/ftpcmd.y
1807
reply(200, "%s command successful.", pcmd);
libexec/ftpd/ftpcmd.y
1822
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
189
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
200
reply(501, "No LPRT allowed after EPSV ALL.");
libexec/ftpd/ftpcmd.y
210
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
230
reply(501, "No EPRT allowed after EPSV ALL.");
libexec/ftpd/ftpcmd.y
252
reply(500,
libexec/ftpd/ftpcmd.y
311
reply(500, "Invalid address rejected.");
libexec/ftpd/ftpcmd.y
323
reply(501, "No PASV allowed after EPSV ALL.");
libexec/ftpd/ftpcmd.y
330
reply(501, "No LPSV allowed after EPSV ALL.");
libexec/ftpd/ftpcmd.y
357
reply(200, "EPSV ALL command successful.");
libexec/ftpd/ftpcmd.y
373
reply(200, "Type set to A.");
libexec/ftpd/ftpcmd.y
377
reply(504, "Form must be N.");
libexec/ftpd/ftpcmd.y
381
reply(504, "Type E not implemented.");
libexec/ftpd/ftpcmd.y
385
reply(200, "Type set to I.");
libexec/ftpd/ftpcmd.y
392
reply(200,
libexec/ftpd/ftpcmd.y
396
reply(504, "Byte size must be 8.");
libexec/ftpd/ftpcmd.y
409
reply(200, "STRU F accepted.");
libexec/ftpd/ftpcmd.y
413
reply(504, "Unimplemented STRU type.");
libexec/ftpd/ftpcmd.y
423
reply(200, "MODE S accepted.");
libexec/ftpd/ftpcmd.y
427
reply(502, "Unimplemented MODE type.");
libexec/ftpd/ftpcmd.y
434
reply(202, "ALLO command ignored.");
libexec/ftpd/ftpcmd.y
440
reply(202, "ALLO command ignored.");
libexec/ftpd/ftpcmd.y
446
reply(500, "RETR command disabled.");
libexec/ftpd/ftpcmd.y
517
reply(503, "Bad sequence of commands.");
libexec/ftpd/ftpcmd.y
526
reply(225, "ABOR command successful.");
libexec/ftpd/ftpcmd.y
563
reply(200, "NOOP command successful.");
libexec/ftpd/ftpcmd.y
606
reply(200, "MD5(%s) = %s", $6, p);
libexec/ftpd/ftpcmd.y
613
reply(202, "md5 command disabled.");
libexec/ftpd/ftpcmd.y
623
reply(200, "Current UMASK is %03o.", oldmask);
libexec/ftpd/ftpcmd.y
632
reply(501, "Bad UMASK value.");
libexec/ftpd/ftpcmd.y
635
reply(200,
libexec/ftpd/ftpcmd.y
645
reply(501, "Bad mode value.");
libexec/ftpd/ftpcmd.y
649
reply(200, "CHMOD command successful.");
libexec/ftpd/ftpcmd.y
657
reply(200,
libexec/ftpd/ftpcmd.y
665
reply(501,
libexec/ftpd/ftpcmd.y
671
reply(200,
libexec/ftpd/ftpcmd.y
701
reply(211, "End.");
libexec/ftpd/ftpcmd.y
708
reply(215, "UNIX Type: L%d Version: BSD-%d",
libexec/ftpd/ftpcmd.y
711
reply(215, "UNIX Type: L%d", CHAR_BIT);
libexec/ftpd/ftpcmd.y
714
reply(215, "UNKNOWN Type: L%d", CHAR_BIT);
libexec/ftpd/ftpcmd.y
749
reply(550, "%s: not a plain file.", $4);
libexec/ftpd/ftpcmd.y
753
reply(213,
libexec/ftpd/ftpcmd.y
765
reply(221, "Goodbye.");
libexec/ftpd/ftpcmd.y
802
reply(350, "Restarting at %jd. %s",
libexec/ftpd/ftpd.c
1001
reply(331,
libexec/ftpd/ftpd.c
1004
reply(530, "User %s unknown.", name);
libexec/ftpd/ftpd.c
1011
reply(530, "Sorry, only anonymous ftp allowed.");
libexec/ftpd/ftpd.c
1025
reply(530, "User %s access denied.", name);
libexec/ftpd/ftpd.c
1038
reply(331, "Password required for %s.", name);
libexec/ftpd/ftpd.c
1189
struct pam_response *reply;
libexec/ftpd/ftpd.c
1191
reply = calloc(num_msg, sizeof *reply);
libexec/ftpd/ftpd.c
1192
if (reply == NULL)
libexec/ftpd/ftpd.c
1198
reply[i].resp_retcode = PAM_SUCCESS;
libexec/ftpd/ftpd.c
1199
reply[i].resp = COPY_STRING(cred->uname);
libexec/ftpd/ftpd.c
1203
reply[i].resp_retcode = PAM_SUCCESS;
libexec/ftpd/ftpd.c
1204
reply[i].resp = COPY_STRING(cred->pass);
libexec/ftpd/ftpd.c
1209
reply[i].resp_retcode = PAM_SUCCESS;
libexec/ftpd/ftpd.c
1210
reply[i].resp = NULL;
libexec/ftpd/ftpd.c
1213
free(reply);
libexec/ftpd/ftpd.c
1218
*resp = reply;
libexec/ftpd/ftpd.c
1338
reply(503, "Login with USER first.");
libexec/ftpd/ftpd.c
1370
reply(530, "Login incorrect.");
libexec/ftpd/ftpd.c
1391
reply(550, "Can't set gid.");
libexec/ftpd/ftpd.c
1409
reply(530, "Permission denied.");
libexec/ftpd/ftpd.c
1414
reply(530, "Login not available right now.");
libexec/ftpd/ftpd.c
1502
reply(550, "Can't change root.");
libexec/ftpd/ftpd.c
1518
reply(550, "Can't set uid.");
libexec/ftpd/ftpd.c
1531
reply(550, "Root is inaccessible.");
libexec/ftpd/ftpd.c
1565
reply(230, "Guest login ok, access restrictions apply.");
libexec/ftpd/ftpd.c
1583
reply(230, "User %s logged in, "
libexec/ftpd/ftpd.c
1586
reply(230, "User %s logged in.", pw->pw_name);
libexec/ftpd/ftpd.c
1659
reply(550, "%s: not a plain file.", name);
libexec/ftpd/ftpd.c
1717
reply(550, "Appending to existing file denied.");
libexec/ftpd/ftpd.c
1726
reply(550, "Modifying existing file denied.");
libexec/ftpd/ftpd.c
1780
reply(226, "Transfer complete (unique file name:%s).",
libexec/ftpd/ftpd.c
1783
reply(226, "Transfer complete.");
libexec/ftpd/ftpd.c
1915
reply(150, "Opening %s mode data connection for '%s'%s.",
libexec/ftpd/ftpd.c
1919
reply(425, "Can't open data connection.");
libexec/ftpd/ftpd.c
1925
reply(125, "Using existing data connection for '%s'%s.",
libexec/ftpd/ftpd.c
1946
reply(425, "Can't create data socket (%s,%s): %s.",
libexec/ftpd/ftpd.c
1966
reply(425, "Can't build data connection: %s.",
libexec/ftpd/ftpd.c
1970
reply(150, "Opening %s mode data connection for '%s'%s.",
libexec/ftpd/ftpd.c
2054
reply(226, "Transfer complete.");
libexec/ftpd/ftpd.c
2103
reply(226, "%s", msg);
libexec/ftpd/ftpd.c
2110
reply(451, "Ran out of memory.");
libexec/ftpd/ftpd.c
2144
reply(226, "Transfer complete.");
libexec/ftpd/ftpd.c
2148
reply(550, "Unimplemented TYPE %d in send_data.", type);
libexec/ftpd/ftpd.c
2211
reply(553, "TYPE E not implemented.");
libexec/ftpd/ftpd.c
2273
reply(550, "Unimplemented TYPE %d in receive_data.", type);
libexec/ftpd/ftpd.c
2329
reply(code, "End of status.");
libexec/ftpd/ftpd.c
2464
reply(211, "End of status.");
libexec/ftpd/ftpd.c
2471
reply(451, "Error in server: %s", s);
libexec/ftpd/ftpd.c
2472
reply(221, "Closing connection due to server error.");
libexec/ftpd/ftpd.c
2519
reply(250, "%s command successful.", s);
libexec/ftpd/ftpd.c
2526
reply(502, "%s command not implemented.", s);
libexec/ftpd/ftpd.c
2537
reply(500, "%s: command not understood.", cbuf);
libexec/ftpd/ftpd.c
2558
reply(550, "Operation not permitted.");
libexec/ftpd/ftpd.c
2586
reply(550, "Operation not permitted.");
libexec/ftpd/ftpd.c
2592
reply(257, "\"%s\" directory created.", s);
libexec/ftpd/ftpd.c
2618
reply(257, "\"%s\" is current directory.", s);
libexec/ftpd/ftpd.c
2629
reply(550, "Operation not permitted.");
libexec/ftpd/ftpd.c
2636
reply(350, "File exists, ready for destination name.");
libexec/ftpd/ftpd.c
2648
reply(550, "%s: permission denied.", to);
libexec/ftpd/ftpd.c
2770
reply(221, "You could at least say goodbye.");
libexec/ftpd/ftpd.c
2779
reply(426, "Transfer aborted. Data connection closed.");
libexec/ftpd/ftpd.c
2780
reply(226, "Abort successful.");
libexec/ftpd/ftpd.c
2786
reply(213, "Status: %jd of %jd bytes transferred.",
libexec/ftpd/ftpd.c
2789
reply(213, "Status: %jd bytes transferred.",
libexec/ftpd/ftpd.c
2867
reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
libexec/ftpd/ftpd.c
2913
reply(522, "Network protocol mismatch, "
libexec/ftpd/ftpd.c
2916
reply(501, "Network protocol mismatch."); /*XXX*/
libexec/ftpd/ftpd.c
2976
reply(228,
libexec/ftpd/ftpd.c
2987
reply(228,
libexec/ftpd/ftpd.c
3001
reply(229, "Entering Extended Passive Mode (|||%d|)",
libexec/ftpd/ftpd.c
3048
reply(553, "Pathname too long.");
libexec/ftpd/ftpd.c
3077
reply(452, "Unique file name cannot be created.");
libexec/ftpd/ftpd.c
3088
reply(code, "%s: %s.", string, strerror(errno));
libexec/ftpd/ftpd.c
3116
reply(550, "No matching files found.");
libexec/ftpd/ftpd.c
3212
reply(550, "No files found.");
libexec/ftpd/ftpd.c
3216
reply(226, "Transfer complete.");
libexec/ftpd/ftpd.c
591
reply(530, "System not available.");
libexec/ftpd/ftpd.c
619
reply(220, "%s FTP server (%s) ready.", hostname, version);
libexec/ftpd/ftpd.c
621
reply(220, "FTP server ready.");
libexec/ftpd/ftpd.c
917
reply(421, "Ran out of memory.");
libexec/ftpd/ftpd.c
979
reply(530, "Can't change user from guest login.");
libexec/ftpd/ftpd.c
982
reply(530, "Can't change user from chroot user.");
libexec/ftpd/ftpd.c
997
reply(530, "User %s access denied.", name);
sbin/fsck/dir.c
341
if (preen || reply("ADJUST") == 1) {
sbin/fsck/dir.c
426
if (reply("RECONNECT") == 0)
sbin/fsck/dir.c
438
if (preen || reply("CREATE")) {
sbin/fsck/dir.c
464
if (reply("REALLOCATE") == 0)
sbin/fsck/dir.c
614
else if (reply("EXPAND") == 0)
sbin/fsck/fsck.h
308
extern int reply(char *);
sbin/fsck/inode.c
127
if (reply("ADJUST LENGTH") == 1) {
sbin/fsck/inode.c
205
if (reply("ADJUST LENGTH") == 1) {
sbin/fsck/inode.c
454
if (preen || reply("CLEAR") == 1) {
sbin/fsck/inode.c
90
if (reply("ADJUST LENGTH") == 1) {
sbin/fsck/pass1.c
194
if (reply("CLEAR") == 1) {
sbin/fsck/pass1.c
215
if (!preen && mode == IFMT && reply("HOLD BAD BLOCK") == 1) {
sbin/fsck/pass1.c
293
if (reply("CONTINUE") == 0) {
sbin/fsck/pass1.c
331
else if (reply("CORRECT") == 0)
sbin/fsck/pass1.c
341
if (reply("CLEAR") == 1) {
sbin/fsck/pass1.c
365
else if (reply("CONTINUE") == 0) {
sbin/fsck/pass1.c
385
else if (reply("CONTINUE") == 0) {
sbin/fsck/pass1.c
394
if (reply("CONTINUE") == 0) {
sbin/fsck/pass2.c
150
if (reply("FIX") == 1) {
sbin/fsck/pass2.c
169
if (preen || reply("ADJUST") == 1) {
sbin/fsck/pass2.c
201
if (reply("FIX") == 0)
sbin/fsck/pass2.c
209
if (reply("FIX") == 0)
sbin/fsck/pass2.c
250
if (reply("FIX") == 1)
sbin/fsck/pass2.c
256
if (reply("FIX") == 1)
sbin/fsck/pass2.c
287
if (reply("FIX") == 1)
sbin/fsck/pass2.c
298
if (reply("FIX") == 1)
sbin/fsck/pass2.c
339
if (reply("FIX") == 1)
sbin/fsck/pass2.c
361
if (reply("FIX") == 1)
sbin/fsck/pass2.c
377
if (reply("FIX") == 1)
sbin/fsck/pass2.c
384
if (reply("FIX") == 1)
sbin/fsck/pass2.c
393
n = reply("REMOVE");
sbin/fsck/pass2.c
400
if (reply("FIX") == 1)
sbin/fsck/pass2.c
409
n = reply("REMOVE");
sbin/fsck/pass2.c
425
if ((n = reply("REMOVE")) == 1)
sbin/fsck/pass2.c
454
if ((n = reply("REMOVE")) == 1)
sbin/fsck/pass2.c
467
if (reply("FIX") == 1)
sbin/fsck/pass2.c
63
if (reply("ALLOCATE") == 0) {
sbin/fsck/pass2.c
73
if (reply("REALLOCATE")) {
sbin/fsck/pass2.c
80
if (reply("CONTINUE") == 0) {
sbin/fsck/pass2.c
89
if (reply("REALLOCATE")) {
sbin/fsck/pass2.c
96
if (reply("FIX") == 0) {
sbin/fsck/pass3.c
95
if (reply("RECONNECT") == 0)
sbin/fsck/pass5.c
67
if (preen || reply("DELETE CLUSTERING MAPS")) {
sbin/fsck/pass5.c
90
reply("CREATE CLUSTER MAPS")) {
sbin/fsck/setup.c
144
if (reply("LOOK FOR ALTERNATE SUPERBLOCKS") == 0)
sbin/fsck/setup.c
169
if (reply("SET TO DEFAULT") == 1) {
sbin/fsck/setup.c
177
if (reply("SET TO DEFAULT") == 1) {
sbin/fsck/setup.c
189
if (preen || reply("SET TO DEFAULT") == 1) {
sbin/fsck/setup.c
201
if (preen || reply("SET TO DEFAULT") == 1) {
sbin/fsck/setup.c
221
else if (!reply("CONVERT TO NEW INODE FORMAT"))
sbin/fsck/setup.c
243
else if (!reply("CONVERT TO NEW CYLINDER GROUP FORMAT"))
sbin/fsck/setup.c
274
if (reply("CONTINUE") == 0) {
sbin/fsck/setup.c
97
if (reply("CONTINUE") == 0)
sbin/fsck/utilities.c
247
if (reply("CONTINUE") == 0)
sbin/fsck/utilities.c
263
!preen && reply("UPDATE STANDARD SUPERBLOCK")) {
sbin/fsck/utilities.c
548
if (reply("SALVAGE") == 0) {
sbin/fsdb/fsdb.h
37
extern int reply(char *question);
sbin/growfs/growfs.c
1921
char reply[5];
sbin/growfs/growfs.c
2089
fgets(reply, (int)sizeof(reply), stdin);
sbin/growfs/growfs.c
2090
if (strcmp(reply, "Yes\n")){
sbin/restore/dirs.c
608
reply("set owner/mode for '.'") == FAIL)
sbin/restore/extern.h
83
int reply(const char *);
sbin/restore/interactive.c
760
if (reply("restore interrupted, continue") == FAIL)
sbin/restore/tape.c
908
if (!yflag && !reply("continue"))
sbin/restore/utilities.c
412
if (reply("abort") == GOOD) {
sbin/restore/utilities.c
413
if (reply("dump core") == GOOD)
sbin/vinum/commands.c
1005
reply->msg[0] ? reply->msg : strerror(reply->error),
sbin/vinum/commands.c
1006
reply->error);
sbin/vinum/commands.c
1056
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
109
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
1092
if (reply->error != 0)
sbin/vinum/commands.c
1096
reply->msg[0] ? reply->msg : strerror(reply->error),
sbin/vinum/commands.c
1097
reply->error);
sbin/vinum/commands.c
1138
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sbin/vinum/commands.c
1146
if (reply->error != 0)
sbin/vinum/commands.c
1151
reply->msg[0] ? reply->msg : strerror(reply->error),
sbin/vinum/commands.c
1152
reply->error);
sbin/vinum/commands.c
1261
struct _ioctl_reply reply;
sbin/vinum/commands.c
1262
struct vinum_ioctl_msg *msg = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
1305
strerror(reply.error),
sbin/vinum/commands.c
1306
reply.error);
sbin/vinum/commands.c
1318
strerror(reply.error),
sbin/vinum/commands.c
1319
reply.error);
sbin/vinum/commands.c
1334
strerror(reply.error),
sbin/vinum/commands.c
1335
reply.error);
sbin/vinum/commands.c
1345
if (reply.error)
sbin/vinum/commands.c
1350
strerror(reply.error),
sbin/vinum/commands.c
1351
reply.error);
sbin/vinum/commands.c
141
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
146
reply->msg,
sbin/vinum/commands.c
147
strerror(reply->error));
sbin/vinum/commands.c
1528
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1547
reply = (struct _ioctl_reply *) &command;
sbin/vinum/commands.c
1548
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1549
if (reply->msg[0])
sbin/vinum/commands.c
1554
reply->msg);
sbin/vinum/commands.c
1560
strerror(reply->error),
sbin/vinum/commands.c
1561
reply->error);
sbin/vinum/commands.c
1586
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1591
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
1602
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1603
if (reply->msg[0])
sbin/vinum/commands.c
1607
reply->msg);
sbin/vinum/commands.c
1612
strerror(reply->error),
sbin/vinum/commands.c
1613
reply->error);
sbin/vinum/commands.c
1620
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1621
if (reply->msg[0])
sbin/vinum/commands.c
1625
reply->msg);
sbin/vinum/commands.c
1630
strerror(reply->error),
sbin/vinum/commands.c
1631
reply->error);
sbin/vinum/commands.c
1641
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1642
if (reply->msg[0])
sbin/vinum/commands.c
1647
reply->msg);
sbin/vinum/commands.c
1653
strerror(reply->error),
sbin/vinum/commands.c
1654
reply->error);
sbin/vinum/commands.c
1687
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1703
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
174
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1743
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1744
if (reply->msg[0])
sbin/vinum/commands.c
1748
reply->msg);
sbin/vinum/commands.c
1753
strerror(reply->error),
sbin/vinum/commands.c
1754
reply->error);
sbin/vinum/commands.c
1761
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1762
if (reply->msg[0])
sbin/vinum/commands.c
1766
reply->msg);
sbin/vinum/commands.c
177
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
1771
strerror(reply->error),
sbin/vinum/commands.c
1772
reply->error);
sbin/vinum/commands.c
1790
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1791
if (reply->msg[0])
sbin/vinum/commands.c
1796
reply->msg);
sbin/vinum/commands.c
1802
strerror(reply->error),
sbin/vinum/commands.c
1803
reply->error);
sbin/vinum/commands.c
1835
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1851
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
1891
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1892
if (reply->msg[0])
sbin/vinum/commands.c
1896
reply->msg);
sbin/vinum/commands.c
1901
strerror(reply->error),
sbin/vinum/commands.c
1902
reply->error);
sbin/vinum/commands.c
1909
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1910
if (reply->msg[0])
sbin/vinum/commands.c
1914
reply->msg);
sbin/vinum/commands.c
1919
strerror(reply->error),
sbin/vinum/commands.c
1920
reply->error);
sbin/vinum/commands.c
193
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1938
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
1939
if (reply->msg[0])
sbin/vinum/commands.c
194
fprintf(stdout, "** %s: %s\n", reply->msg, strerror(reply->error));
sbin/vinum/commands.c
1944
reply->msg);
sbin/vinum/commands.c
1950
strerror(reply->error),
sbin/vinum/commands.c
1951
reply->error);
sbin/vinum/commands.c
1983
struct _ioctl_reply *reply;
sbin/vinum/commands.c
1999
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
2039
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2040
if (reply->msg[0])
sbin/vinum/commands.c
2044
reply->msg);
sbin/vinum/commands.c
2049
strerror(reply->error),
sbin/vinum/commands.c
2050
reply->error);
sbin/vinum/commands.c
2057
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2058
if (reply->msg[0])
sbin/vinum/commands.c
2062
reply->msg);
sbin/vinum/commands.c
2067
strerror(reply->error),
sbin/vinum/commands.c
2068
reply->error);
sbin/vinum/commands.c
2086
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2087
if (reply->msg[0])
sbin/vinum/commands.c
2092
reply->msg);
sbin/vinum/commands.c
2098
strerror(reply->error),
sbin/vinum/commands.c
2099
reply->error);
sbin/vinum/commands.c
2137
struct _ioctl_reply *reply;
sbin/vinum/commands.c
2157
reply = (struct _ioctl_reply *) &buffer;
sbin/vinum/commands.c
2203
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2204
if (reply->msg[0])
sbin/vinum/commands.c
2208
reply->msg);
sbin/vinum/commands.c
2213
strerror(reply->error),
sbin/vinum/commands.c
2214
reply->error);
sbin/vinum/commands.c
2228
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2229
if (reply->msg[0])
sbin/vinum/commands.c
2234
reply->msg);
sbin/vinum/commands.c
2240
strerror(reply->error),
sbin/vinum/commands.c
2241
reply->error);
sbin/vinum/commands.c
2262
if (reply->error != 0) { /* error in config */
sbin/vinum/commands.c
2263
if (reply->msg[0])
sbin/vinum/commands.c
2269
reply->msg);
sbin/vinum/commands.c
2276
strerror(reply->error),
sbin/vinum/commands.c
2277
reply->error);
sbin/vinum/commands.c
2304
struct _ioctl_reply reply;
sbin/vinum/commands.c
2305
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
2349
struct _ioctl_reply reply;
sbin/vinum/commands.c
2350
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
2406
if (reply.error != 0)
sbin/vinum/commands.c
241
struct _ioctl_reply reply;
sbin/vinum/commands.c
2410
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
2411
reply.error);
sbin/vinum/commands.c
242
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
2451
struct _ioctl_reply reply;
sbin/vinum/commands.c
2452
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
2489
if ((reply.error == EAGAIN)
sbin/vinum/commands.c
2490
&& (reply.msg[0])) /* got a comment back */
sbin/vinum/commands.c
2491
fputs(reply.msg, stderr); /* show it */
sbin/vinum/commands.c
2495
while (reply.error == EAGAIN);
sbin/vinum/commands.c
2496
if (reply.error != 0) {
sbin/vinum/commands.c
2497
if (reply.msg[0])
sbin/vinum/commands.c
2498
fputs(reply.msg, stderr);
sbin/vinum/commands.c
2503
strerror(reply.error));
sbin/vinum/commands.c
260
if (reply.error != 0) {
sbin/vinum/commands.c
264
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
265
reply.error);
sbin/vinum/commands.c
277
char reply[32];
sbin/vinum/commands.c
288
fgets(reply, sizeof(reply), stdin);
sbin/vinum/commands.c
289
if (strcmp(reply, "NO FUTURE\n")) /* changed his mind */
sbin/vinum/commands.c
426
struct _ioctl_reply reply;
sbin/vinum/commands.c
427
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
468
if (reply.error) {
sbin/vinum/commands.c
472
strerror(reply.error),
sbin/vinum/commands.c
473
reply.error);
sbin/vinum/commands.c
486
while (reply.error == EAGAIN); /* until we're done */
sbin/vinum/commands.c
487
if (reply.error) {
sbin/vinum/commands.c
491
strerror(reply.error),
sbin/vinum/commands.c
492
reply.error);
sbin/vinum/commands.c
513
struct _ioctl_reply reply;
sbin/vinum/commands.c
514
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
630
if (reply.error != 0) {
sbin/vinum/commands.c
631
if (reply.error == EAGAIN) /* we're reviving */
sbin/vinum/commands.c
637
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
638
reply.error);
sbin/vinum/commands.c
677
if (reply.error != 0) {
sbin/vinum/commands.c
678
if ((reply.error == EAGAIN) /* we're reviving */
sbin/vinum/commands.c
685
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
686
reply.error);
sbin/vinum/commands.c
701
struct _ioctl_reply reply;
sbin/vinum/commands.c
702
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/commands.c
740
if (reply.error != 0)
sbin/vinum/commands.c
744
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
745
reply.error);
sbin/vinum/commands.c
75
struct _ioctl_reply *reply;
sbin/vinum/commands.c
757
struct _ioctl_reply reply;
sbin/vinum/commands.c
758
int *message = (int *) &reply;
sbin/vinum/commands.c
775
if (reply.error != 0)
sbin/vinum/commands.c
779
reply.msg[0] ? reply.msg : strerror(reply.error),
sbin/vinum/commands.c
780
reply.error);
sbin/vinum/commands.c
793
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
800
fprintf(stderr, "Can't reset stats for volume %d: %s\n", volno, reply->msg);
sbin/vinum/commands.c
816
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
823
fprintf(stderr, "Can't reset stats for plex %d: %s\n", plexno, reply->msg);
sbin/vinum/commands.c
842
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
849
fprintf(stderr, "Can't reset stats for subdisk %d: %s\n", sdno, reply->msg);
sbin/vinum/commands.c
861
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
868
fprintf(stderr, "Can't reset stats for drive %d: %s\n", driveno, reply->msg);
sbin/vinum/commands.c
926
struct _ioctl_reply *reply = (struct _ioctl_reply *) &msg;
sbin/vinum/commands.c
997
if (reply->error != 0) {
sbin/vinum/commands.c
998
if (reply->error == EAGAIN) /* reviving */
sbin/vinum/v.c
765
struct _ioctl_reply reply;
sbin/vinum/v.c
766
struct vinum_ioctl_msg *message = (struct vinum_ioctl_msg *) &reply;
sbin/vinum/v.c
772
for (reply.error = EAGAIN; reply.error == EAGAIN;) { /* revive the subdisk */
sbin/vinum/v.c
786
if (reply.error) {
sbin/vinum/v.c
790
reply.msg[0] ? reply.msg : strerror(reply.error));
stand/lib/rpc.c
123
struct rpc_reply *reply;
stand/lib/rpc.c
184
recv_head -= sizeof(*reply);
stand/lib/rpc.c
197
if (cc <= sizeof(*reply)) {
stand/lib/rpc.c
208
reply = (struct rpc_reply *)recv_head;
stand/lib/rpc.c
209
auth = &reply->rp_u.rpu_rok.rok_auth;
stand/lib/rpc.c
219
x = ntohl(reply->rp_u.rpu_rok.rok_status);
stand/lib/rpc.c
225
recv_head += sizeof(*reply);
stand/lib/rpc.c
238
struct rpc_reply *reply;
stand/lib/rpc.c
252
reply = (struct rpc_reply *)pkt;
stand/lib/rpc.c
254
x = ntohl(reply->rp_xid);
stand/lib/rpc.c
263
x = ntohl(reply->rp_direction);
stand/lib/rpc.c
272
x = ntohl(reply->rp_astatus);
stand/lib/rpc.c
274
errno = ntohl(reply->rp_u.rpu_errno);
sys/dev/disk/mpt/mpt.c
1245
mpt_send_event_ack(mpt, req, &record->reply, record->context);
sys/dev/disk/mpt/mpt.c
1246
offset = (uint32_t)((uint8_t *)record - mpt->reply);
sys/dev/disk/mpt/mpt.c
1432
mpt_recv_handshake_reply(struct mpt_softc *mpt, size_t reply_len, void *reply)
sys/dev/disk/mpt/mpt.c
1441
data16 = (u_int16_t *)reply;
sys/dev/disk/mpt/mpt.c
1443
hdr = (MSG_DEFAULT_REPLY *)reply;
sys/dev/disk/mpt/mpt.c
1555
MSG_IOC_INIT_REPLY reply;
sys/dev/disk/mpt/mpt.c
1572
error = mpt_recv_handshake_reply(mpt, sizeof reply, &reply);
sys/dev/disk/mpt/mpt.c
505
MSG_CONFIG_REPLY *reply;
sys/dev/disk/mpt/mpt.c
508
reply = (MSG_CONFIG_REPLY *)reply_frame;
sys/dev/disk/mpt/mpt.c
510
bcopy(&reply->Header, &cfgp->Header,
sys/dev/disk/mpt/mpt.c
512
cfgp->ExtPageLength = reply->ExtPageLength;
sys/dev/disk/mpt/mpt.c
513
cfgp->ExtPageType = reply->ExtPageType;
sys/dev/disk/mpt/mpt.h
1068
size_t reply_len, void *reply);
sys/dev/disk/mpt/mpt.h
486
MSG_EVENT_NOTIFY_REPLY reply;
sys/dev/disk/mpt/mpt.h
656
uint8_t *reply; /* KVA of reply memory */
sys/dev/disk/mpt/mpt.h
843
((void *)(&m->reply[i]))
sys/dev/disk/mpt/mpt_pci.c
733
if (bus_dmamem_alloc(mpt->reply_dmat, (void **)&mpt->reply,
sys/dev/disk/mpt/mpt_pci.c
744
bus_dmamap_load(mpt->reply_dmat, mpt->reply_dmap, mpt->reply,
sys/dev/disk/mpt/mpt_pci.c
770
bus_dmamem_free(mpt->reply_dmat, mpt->reply, mpt->reply_dmap);
sys/dev/disk/mpt/mpt_raid.c
560
MSG_RAID_ACTION_REPLY *reply;
sys/dev/disk/mpt/mpt_raid.c
564
reply = (MSG_RAID_ACTION_REPLY *)reply_frame;
sys/dev/disk/mpt/mpt_raid.c
565
req->IOCStatus = le16toh(reply->IOCStatus);
sys/dev/disk/mpt/mpt_raid.c
579
memcpy(&action_result->action_data, &reply->ActionData,
sys/dev/disk/mpt/mpt_raid.c
581
action_result->action_status = le16toh(reply->ActionStatus);
sys/dev/disk/mpt/mpt_user.c
477
MSG_RAID_ACTION_REPLY *reply;
sys/dev/disk/mpt/mpt_user.c
484
reply = (MSG_RAID_ACTION_REPLY *)reply_frame;
sys/dev/disk/mpt/mpt_user.c
485
req->IOCStatus = le16toh(reply->IOCStatus);
sys/dev/disk/mpt/mpt_user.c
488
res->action_status = reply->ActionStatus;
sys/dev/disk/mpt/mpt_user.c
489
res->volume_status = reply->VolumeStatus;
sys/dev/disk/mpt/mpt_user.c
490
bcopy(&reply->ActionData, res->action_data,
sys/dev/drm/amd/amdgpu/atombios_dp.c
182
msg->reply = ack >> 4;
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
111
&msg->reply,
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
127
&msg->reply,
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
142
&msg->reply,
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
99
&msg->reply,
sys/dev/drm/amd/display/dc/core/dc_link_ddc.c
637
uint8_t *reply,
sys/dev/drm/amd/display/dc/core/dc_link_ddc.c
672
buffer, reply,
sys/dev/drm/amd/display/dc/dce/dce_aux.c
304
struct aux_reply_transaction_data *reply)
sys/dev/drm/amd/display/dc/dce/dce_aux.c
310
bytes_replied = read_channel_reply(engine, reply->length, reply->data,
sys/dev/drm/amd/display/dc/dce/dce_aux.c
315
reply->status = AUX_TRANSACTION_REPLY_HPD_DISCON;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
327
reply->status = AUX_TRANSACTION_REPLY_INVALID;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
335
reply->status = AUX_TRANSACTION_REPLY_AUX_ACK;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
338
reply->status = AUX_TRANSACTION_REPLY_AUX_NACK;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
341
reply->status = AUX_TRANSACTION_REPLY_AUX_DEFER;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
344
reply->status = AUX_TRANSACTION_REPLY_I2C_NACK;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
347
reply->status = AUX_TRANSACTION_REPLY_I2C_DEFER;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
350
reply->status = AUX_TRANSACTION_REPLY_INVALID;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
421
engine->funcs->process_channel_reply(engine, &ctx->reply);
sys/dev/drm/amd/display/dc/dce/dce_aux.c
423
switch (ctx->reply.status) {
sys/dev/drm/amd/display/dc/dce/dce_aux.c
501
ctx->reply.length = ctx->returned_byte;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
502
ctx->reply.data = ctx->buffer;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
610
engine->funcs->process_channel_reply(engine, &ctx->reply);
sys/dev/drm/amd/display/dc/dce/dce_aux.c
612
switch (ctx->reply.status) {
sys/dev/drm/amd/display/dc/dce/dce_aux.c
690
ctx->reply.length = ctx->returned_byte;
sys/dev/drm/amd/display/dc/dce/dce_aux.c
691
ctx->reply.data = ctx->reply_data;
sys/dev/drm/amd/display/dc/dce/dce_i2c_hw.c
127
struct i2c_payload *reply)
sys/dev/drm/amd/display/dc/dce/dce_i2c_hw.c
129
uint32_t length = reply->length;
sys/dev/drm/amd/display/dc/dce/dce_i2c_hw.c
130
uint8_t *buffer = reply->data;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
105
struct aux_reply_transaction_data reply;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
123
engine->funcs->process_channel_reply(engine, &ctx->reply);
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
125
switch (ctx->reply.status) {
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
204
ctx->reply.length = ctx->returned_byte;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
205
ctx->reply.data = ctx->buffer;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
317
struct aux_reply_transaction_data reply;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
338
engine->funcs->process_channel_reply(engine, &ctx->reply);
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
340
switch (ctx->reply.status) {
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
419
ctx->reply.length = ctx->returned_byte;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.c
420
ctx->reply.data = ctx->reply_data;
sys/dev/drm/amd/display/dc/i2caux/aux_engine.h
46
struct aux_reply_transaction_data *reply);
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
335
struct aux_reply_transaction_data *reply)
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
341
bytes_replied = read_channel_reply(engine, reply->length, reply->data,
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
345
bytes_replied, reply->data);
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
349
reply->status = AUX_TRANSACTION_REPLY_HPD_DISCON;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
361
reply->status = AUX_TRANSACTION_REPLY_INVALID;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
369
reply->status = AUX_TRANSACTION_REPLY_AUX_ACK;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
372
reply->status = AUX_TRANSACTION_REPLY_AUX_NACK;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
375
reply->status = AUX_TRANSACTION_REPLY_AUX_DEFER;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
378
reply->status = AUX_TRANSACTION_REPLY_I2C_NACK;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
381
reply->status = AUX_TRANSACTION_REPLY_I2C_DEFER;
sys/dev/drm/amd/display/dc/i2caux/dce110/aux_engine_dce110.c
384
reply->status = AUX_TRANSACTION_REPLY_INVALID;
sys/dev/drm/amd/display/dc/i2caux/dce110/i2c_hw_engine_dce110.c
385
struct i2c_reply_transaction_data *reply)
sys/dev/drm/amd/display/dc/i2caux/dce110/i2c_hw_engine_dce110.c
387
uint32_t length = reply->length;
sys/dev/drm/amd/display/dc/i2caux/dce110/i2c_hw_engine_dce110.c
388
uint8_t *buffer = reply->data;
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
661
struct i2c_reply_transaction_data *reply)
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
663
uint32_t length = reply->length;
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
664
uint8_t *buffer = reply->data;
sys/dev/drm/amd/display/dc/i2caux/i2c_engine.c
101
struct i2c_reply_transaction_data *reply)
sys/dev/drm/amd/display/dc/i2caux/i2c_engine.h
109
struct i2c_reply_transaction_data *reply);
sys/dev/drm/amd/display/dc/i2caux/i2c_engine.h
79
struct i2c_reply_transaction_data *reply);
sys/dev/drm/amd/display/dc/i2caux/i2c_hw_engine.c
167
struct i2c_reply_transaction_data reply;
sys/dev/drm/amd/display/dc/i2caux/i2c_hw_engine.c
169
reply.data = i2caux_request->payload.data;
sys/dev/drm/amd/display/dc/i2caux/i2c_hw_engine.c
170
reply.length = i2caux_request->payload.length;
sys/dev/drm/amd/display/dc/i2caux/i2c_hw_engine.c
173
process_channel_reply(&hw_engine->base, &reply);
sys/dev/drm/amd/display/dc/inc/dc_link_ddc.h
107
uint8_t *reply,
sys/dev/drm/amd/display/dc/inc/hw/aux_engine.h
102
struct aux_reply_transaction_data reply;
sys/dev/drm/amd/display/dc/inc/hw/aux_engine.h
124
struct aux_reply_transaction_data reply;
sys/dev/drm/amd/display/dc/inc/hw/aux_engine.h
155
struct aux_reply_transaction_data *reply);
sys/dev/drm/drm_dp_helper.c
248
native_reply = msg.reply & DP_AUX_NATIVE_REPLY_MASK;
sys/dev/drm/drm_dp_helper.c
815
switch (msg->reply & DP_AUX_NATIVE_REPLY_MASK) {
sys/dev/drm/drm_dp_helper.c
842
DRM_ERROR("invalid native reply %#04x\n", msg->reply);
sys/dev/drm/drm_dp_helper.c
846
switch (msg->reply & DP_AUX_I2C_REPLY_MASK) {
sys/dev/drm/drm_dp_helper.c
877
DRM_ERROR("invalid I2C reply %#04x\n", msg->reply);
sys/dev/drm/drm_dp_mst_topology.c
1620
if (txmsg->reply.reply_type == 1)
sys/dev/drm/drm_dp_mst_topology.c
1623
DRM_DEBUG_KMS("link address reply: %d\n", txmsg->reply.u.link_addr.nports);
sys/dev/drm/drm_dp_mst_topology.c
1624
for (i = 0; i < txmsg->reply.u.link_addr.nports; i++) {
sys/dev/drm/drm_dp_mst_topology.c
1626
txmsg->reply.u.link_addr.ports[i].input_port,
sys/dev/drm/drm_dp_mst_topology.c
1627
txmsg->reply.u.link_addr.ports[i].peer_device_type,
sys/dev/drm/drm_dp_mst_topology.c
1628
txmsg->reply.u.link_addr.ports[i].port_number,
sys/dev/drm/drm_dp_mst_topology.c
1629
txmsg->reply.u.link_addr.ports[i].dpcd_revision,
sys/dev/drm/drm_dp_mst_topology.c
1630
txmsg->reply.u.link_addr.ports[i].mcs,
sys/dev/drm/drm_dp_mst_topology.c
1631
txmsg->reply.u.link_addr.ports[i].ddps,
sys/dev/drm/drm_dp_mst_topology.c
1632
txmsg->reply.u.link_addr.ports[i].legacy_device_plug_status,
sys/dev/drm/drm_dp_mst_topology.c
1633
txmsg->reply.u.link_addr.ports[i].num_sdp_streams,
sys/dev/drm/drm_dp_mst_topology.c
1634
txmsg->reply.u.link_addr.ports[i].num_sdp_stream_sinks);
sys/dev/drm/drm_dp_mst_topology.c
1637
drm_dp_check_mstb_guid(mstb, txmsg->reply.u.link_addr.guid);
sys/dev/drm/drm_dp_mst_topology.c
1639
for (i = 0; i < txmsg->reply.u.link_addr.nports; i++) {
sys/dev/drm/drm_dp_mst_topology.c
1640
drm_dp_add_port(mstb, mgr->dev, &txmsg->reply.u.link_addr.ports[i]);
sys/dev/drm/drm_dp_mst_topology.c
1671
if (txmsg->reply.reply_type == 1)
sys/dev/drm/drm_dp_mst_topology.c
1674
if (port->port_num != txmsg->reply.u.path_resources.port_number)
sys/dev/drm/drm_dp_mst_topology.c
1676
DRM_DEBUG_KMS("enum path resources %d: %d %d\n", txmsg->reply.u.path_resources.port_number, txmsg->reply.u.path_resources.full_payload_bw_number,
sys/dev/drm/drm_dp_mst_topology.c
1677
txmsg->reply.u.path_resources.avail_payload_bw_number);
sys/dev/drm/drm_dp_mst_topology.c
1678
port->available_pbn = txmsg->reply.u.path_resources.avail_payload_bw_number;
sys/dev/drm/drm_dp_mst_topology.c
1761
if (txmsg->reply.reply_type == 1) {
sys/dev/drm/drm_dp_mst_topology.c
1795
if (txmsg->reply.reply_type == 1)
sys/dev/drm/drm_dp_mst_topology.c
2032
if (txmsg->reply.reply_type == 1) {
sys/dev/drm/drm_dp_mst_topology.c
2045
struct drm_dp_sideband_msg_reply_body reply;
sys/dev/drm/drm_dp_mst_topology.c
2047
reply.reply_type = 0;
sys/dev/drm/drm_dp_mst_topology.c
2048
reply.req_type = req_type;
sys/dev/drm/drm_dp_mst_topology.c
2049
drm_dp_encode_sideband_reply(&reply, msg);
sys/dev/drm/drm_dp_mst_topology.c
2353
drm_dp_sideband_parse_reply(&mgr->down_rep_recv, &txmsg->reply);
sys/dev/drm/drm_dp_mst_topology.c
2354
if (txmsg->reply.reply_type == 1) {
sys/dev/drm/drm_dp_mst_topology.c
2355
DRM_DEBUG_KMS("Got NAK reply: req 0x%02x, reason 0x%02x, nak data 0x%02x\n", txmsg->reply.req_type, txmsg->reply.u.nak.reason, txmsg->reply.u.nak.nak_data);
sys/dev/drm/drm_dp_mst_topology.c
3326
if (txmsg->reply.reply_type == 1) { /* got a NAK back */
sys/dev/drm/drm_dp_mst_topology.c
3330
if (txmsg->reply.u.remote_i2c_read_ack.num_bytes != msgs[num - 1].len) {
sys/dev/drm/drm_dp_mst_topology.c
3334
memcpy(msgs[num - 1].buf, txmsg->reply.u.remote_i2c_read_ack.bytes, msgs[num - 1].len);
sys/dev/drm/drm_vblank.c
1461
vblwait->reply.sequence = seq;
sys/dev/drm/drm_vblank.c
1465
vblwait->reply.sequence = req_seq;
sys/dev/drm/drm_vblank.c
1508
struct drm_wait_vblank_reply *reply)
sys/dev/drm/drm_vblank.c
1518
reply->sequence = drm_vblank_count_and_time(dev, pipe, &now);
sys/dev/drm/drm_vblank.c
1520
reply->tval_sec = (u32)ts.tv_sec;
sys/dev/drm/drm_vblank.c
1521
reply->tval_usec = ts.tv_nsec / 1000;
sys/dev/drm/drm_vblank.c
1584
drm_wait_vblank_reply(dev, pipe, &vblwait->reply);
sys/dev/drm/drm_vblank.c
1633
drm_wait_vblank_reply(dev, pipe, &vblwait->reply);
sys/dev/drm/drm_vblank.c
1636
pipe, vblwait->reply.sequence);
sys/dev/drm/i915/i915_drv.h
3530
u32 reply_mask, u32 reply, int timeout_base_ms);
sys/dev/drm/i915/intel_dp.c
1467
msg->reply = rxbuf[0] >> 4;
sys/dev/drm/i915/intel_dp.c
1490
msg->reply = rxbuf[0] >> 4;
sys/dev/drm/i915/intel_dp.c
5347
uint8_t txbuf[HEADER_SIZE + DRM_HDCP_KSV_LEN] = {}, rxbuf[2], reply = 0;
sys/dev/drm/i915/intel_dp.c
5378
reply = (rxbuf[0] >> 4) & DP_AUX_NATIVE_REPLY_MASK;
sys/dev/drm/i915/intel_dp.c
5379
return reply == DP_AUX_NATIVE_REPLY_ACK ? 0 : -EIO;
sys/dev/drm/i915/intel_pm.c
9582
u32 request, u32 reply_mask, u32 reply,
sys/dev/drm/i915/intel_pm.c
9589
return *status || ((val & reply_mask) == reply);
sys/dev/drm/i915/intel_pm.c
9612
u32 reply_mask, u32 reply, int timeout_base_ms)
sys/dev/drm/i915/intel_pm.c
9619
#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
sys/dev/drm/i915/intel_sdvo.c
1982
uint32_t reply = 0, format_map = 0;
sys/dev/drm/i915/intel_sdvo.c
2004
if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
sys/dev/drm/i915/intel_sdvo.c
2008
if (reply & (1 << i)) {
sys/dev/drm/i915/intel_sdvo.c
2952
struct intel_sdvo_enhancements_reply reply;
sys/dev/drm/i915/intel_sdvo.c
2967
return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
sys/dev/drm/i915/intel_sdvo.c
2969
return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
sys/dev/drm/include/drm/drm_dp_helper.h
1077
u8 reply;
sys/dev/drm/include/drm/drm_dp_mst_helper.h
379
struct drm_dp_sideband_msg_reply_body reply;
sys/dev/drm/include/uapi/drm/drm.h
508
struct drm_wait_vblank_reply reply;
sys/dev/drm/radeon/atombios_dp.c
222
msg->reply = ack >> 4;
sys/dev/drm/radeon/radeon_dp_auxch.c
202
msg->reply = ack >> 4;
sys/dev/raid/mpr/mpr.c
1025
data16 = (uint16_t *)reply;
sys/dev/raid/mpr/mpr.c
1042
ioc_sz = reply->MsgLength;
sys/dev/raid/mpr/mpr.c
1134
MPI2_DEFAULT_REPLY *reply;
sys/dev/raid/mpr/mpr.c
1143
reply = (MPI2_DEFAULT_REPLY *)facts;
sys/dev/raid/mpr/mpr.c
1147
error = mpr_request_sync(sc, &request, reply, req_sz, reply_sz, 5);
sys/dev/raid/mpr/mpr.c
1157
MPI2_DEFAULT_REPLY reply;
sys/dev/raid/mpr/mpr.c
1176
bzero(&reply, reply_sz);
sys/dev/raid/mpr/mpr.c
1206
error = mpr_request_sync(sc, &init, &reply, req_sz, reply_sz, 5);
sys/dev/raid/mpr/mpr.c
1207
if ((reply.IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS)
sys/dev/raid/mpr/mpr.c
1210
mpr_dprint(sc, MPR_INIT, "IOCInit status= 0x%x\n", reply.IOCStatus);
sys/dev/raid/mpr/mpr.c
2241
mpr_display_reply_info(struct mpr_softc *sc, uint8_t *reply)
sys/dev/raid/mpr/mpr.c
2246
mpi_reply = (MPI2DefaultReply_t*)reply;
sys/dev/raid/mpr/mpr.c
2345
uint8_t *reply;
sys/dev/raid/mpr/mpr.c
2357
reply = sc->reply_frames +
sys/dev/raid/mpr/mpr.c
2365
if ((reply < sc->reply_frames)
sys/dev/raid/mpr/mpr.c
2366
|| (reply > (sc->reply_frames +
sys/dev/raid/mpr/mpr.c
2369
__func__, reply);
sys/dev/raid/mpr/mpr.c
2379
if (((MPI2_DEFAULT_REPLY *)reply)->Function ==
sys/dev/raid/mpr/mpr.c
2389
(MPI2_DIAG_RELEASE_REPLY *)reply;
sys/dev/raid/mpr/mpr.c
2405
reply);
sys/dev/raid/mpr/mpr.c
2412
cm->cm_reply = reply;
sys/dev/raid/mpr/mpr.c
2453
MPI2_EVENT_NOTIFICATION_REPLY *reply)
sys/dev/raid/mpr/mpr.c
2458
event = le16toh(reply->Event);
sys/dev/raid/mpr/mpr.c
2461
eh->callback(sc, data, reply);
sys/dev/raid/mpr/mpr.c
2526
MPI2_EVENT_NOTIFICATION_REPLY *reply = NULL;
sys/dev/raid/mpr/mpr.c
2562
reply = (MPI2_EVENT_NOTIFICATION_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr.c
2563
if ((reply == NULL) ||
sys/dev/raid/mpr/mpr.c
2564
(reply->IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS)
sys/dev/raid/mpr/mpr.c
2567
if (reply)
sys/dev/raid/mpr/mpr.c
2568
MPR_DPRINT_EVENT(sc, generic, reply);
sys/dev/raid/mpr/mpr.c
3763
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mpr/mpr.c
3784
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr.c
3785
if (reply == NULL) {
sys/dev/raid/mpr/mpr.c
3789
params->status = reply->IOCStatus;
sys/dev/raid/mpr/mpr.c
3791
params->hdr.Ext.ExtPageType = reply->ExtPageType;
sys/dev/raid/mpr/mpr.c
3792
params->hdr.Ext.ExtPageLength = reply->ExtPageLength;
sys/dev/raid/mpr/mpr.c
3793
params->hdr.Ext.PageType = reply->Header.PageType;
sys/dev/raid/mpr/mpr.c
3794
params->hdr.Ext.PageNumber = reply->Header.PageNumber;
sys/dev/raid/mpr/mpr.c
3795
params->hdr.Ext.PageVersion = reply->Header.PageVersion;
sys/dev/raid/mpr/mpr.c
3797
params->hdr.Struct.PageType = reply->Header.PageType;
sys/dev/raid/mpr/mpr.c
3798
params->hdr.Struct.PageNumber = reply->Header.PageNumber;
sys/dev/raid/mpr/mpr.c
3799
params->hdr.Struct.PageLength = reply->Header.PageLength;
sys/dev/raid/mpr/mpr.c
3800
params->hdr.Struct.PageVersion = reply->Header.PageVersion;
sys/dev/raid/mpr/mpr.c
96
MPI2_EVENT_NOTIFICATION_REPLY *reply);
sys/dev/raid/mpr/mpr.c
972
mpr_request_sync(struct mpr_softc *sc, void *req, MPI2_DEFAULT_REPLY *reply,
sys/dev/raid/mpr/mpr_config.c
1008
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1009
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1020
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1021
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1056
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
108
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1081
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1082
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
109
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1093
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1094
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1140
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1141
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1152
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1153
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1188
MPI2_CONFIG_REPLY *reply = NULL;
sys/dev/raid/mpr/mpr_config.c
1218
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1219
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1227
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1228
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1276
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1277
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1285
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1286
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1319
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
1344
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1345
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1356
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1357
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1404
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1405
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1416
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1417
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
1478
MPI2_CONFIG_REPLY *reply = NULL;
sys/dev/raid/mpr/mpr_config.c
1508
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1509
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1517
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1518
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
155
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
156
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1566
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
1567
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
1575
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
1576
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
167
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
168
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
203
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
228
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
229
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
240
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
241
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
287
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
288
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
299
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
300
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
369
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
398
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
399
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
410
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
411
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
459
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
460
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
471
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
472
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
507
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
536
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
537
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
548
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
549
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
599
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
600
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
611
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
612
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
647
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
673
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
674
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
685
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
686
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
71
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
734
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
735
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
746
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
747
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
784
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
810
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
811
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
822
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
823
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
871
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
872
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
883
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
884
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
921
MPI2_CONFIG_REPLY *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_config.c
947
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
948
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_config.c
959
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mpr/mpr_config.c
96
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_config.c
960
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mpr/mpr_config.c
97
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_sas.c
1275
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
1284
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
1300
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
1321
le16toh(reply->IOCStatus), le32toh(reply->ResponseCode),
sys/dev/raid/mpr/mpr_sas.c
1322
le32toh(reply->TerminationCount));
sys/dev/raid/mpr/mpr_sas.c
1373
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
1380
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
1395
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
1417
le16toh(reply->IOCStatus), le32toh(reply->ResponseCode),
sys/dev/raid/mpr/mpr_sas.c
1418
le32toh(reply->TerminationCount));
sys/dev/raid/mpr/mpr_sas.c
1522
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
1529
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
1545
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
1567
le16toh(reply->IOCStatus), le32toh(reply->ResponseCode),
sys/dev/raid/mpr/mpr_sas.c
1568
le32toh(reply->TerminationCount));
sys/dev/raid/mpr/mpr_sas.c
373
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
379
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
383
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
3857
MPI2_PORT_ENABLE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
3873
reply = (MPI2_PORT_ENABLE_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
3874
if (reply == NULL)
sys/dev/raid/mpr/mpr_sas.c
3876
else if (le16toh(reply->IOCStatus & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_sas.c
391
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_sas.c
394
"device 0x%x\n", le16toh(reply->IOCStatus), handle);
sys/dev/raid/mpr/mpr_sas.c
398
le32toh(reply->TerminationCount));
sys/dev/raid/mpr/mpr_sas.c
411
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) ==
sys/dev/raid/mpr/mpr_sas.c
559
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
567
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
582
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
590
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_sas.c
593
"device 0x%x\n", le16toh(reply->IOCStatus), handle);
sys/dev/raid/mpr/mpr_sas.c
597
le32toh(reply->TerminationCount));
sys/dev/raid/mpr/mpr_sas.c
634
MPI2_SAS_IOUNIT_CONTROL_REPLY *reply;
sys/dev/raid/mpr/mpr_sas.c
641
reply = (MPI2_SAS_IOUNIT_CONTROL_REPLY *)tm->cm_reply;
sys/dev/raid/mpr/mpr_sas.c
657
if (reply == NULL) {
sys/dev/raid/mpr/mpr_sas.c
666
__func__, handle, le16toh(reply->IOCStatus));
sys/dev/raid/mpr/mpr_sas.c
674
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) ==
sys/dev/raid/mpr/mpr_sas_lsi.c
1131
Mpi2SataPassthroughReply_t *reply = NULL; /* XXX swildner: warning fix */
sys/dev/raid/mpr/mpr_sas_lsi.c
1180
reply = (Mpi2SataPassthroughReply_t *)cm->cm_reply;
sys/dev/raid/mpr/mpr_sas_lsi.c
1181
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_sas_lsi.c
1194
bcopy(reply, mpi_reply, sizeof(Mpi2SataPassthroughReply_t));
sys/dev/raid/mpr/mpr_sas_lsi.c
1195
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_sas_lsi.c
1199
handle, reply->IOCStatus);
sys/dev/raid/mpr/mpr_sas_lsi.c
324
Mpi2RaidActionReply_t *reply = NULL;
sys/dev/raid/mpr/mpr_sas_lsi.c
346
reply = (Mpi2RaidActionReply_t *)
sys/dev/raid/mpr/mpr_sas_lsi.c
348
if (error || (reply == NULL)) {
sys/dev/raid/mpr/mpr_sas_lsi.c
357
if (reply && (le16toh(reply->IOCStatus) &
sys/dev/raid/mpr/mpr_sas_lsi.c
363
le16toh(reply->IOCStatus));
sys/dev/raid/mpr/mpr_user.c
1253
MPI2_DIAG_BUFFER_POST_REPLY *reply;
sys/dev/raid/mpr/mpr_user.c
1311
reply = (MPI2_DIAG_BUFFER_POST_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_user.c
1312
if (reply == NULL) {
sys/dev/raid/mpr/mpr_user.c
1319
if ((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_user.c
1325
le16toh(reply->IOCStatus), le32toh(reply->IOCLogInfo),
sys/dev/raid/mpr/mpr_user.c
1326
le32toh(reply->TransferLength));
sys/dev/raid/mpr/mpr_user.c
1350
MPI2_DIAG_RELEASE_REPLY *reply;
sys/dev/raid/mpr/mpr_user.c
1405
reply = (MPI2_DIAG_RELEASE_REPLY *)cm->cm_reply;
sys/dev/raid/mpr/mpr_user.c
1406
if (reply == NULL) {
sys/dev/raid/mpr/mpr_user.c
1412
if (((le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mpr/mpr_user.c
1417
__func__, le16toh(reply->IOCStatus),
sys/dev/raid/mpr/mpr_user.c
1418
le32toh(reply->IOCLogInfo));
sys/dev/raid/mpr/mprvar.h
188
MPI2_EVENT_NOTIFICATION_REPLY *reply);
sys/dev/raid/mps/mps.c
104
MPI2_EVENT_NOTIFICATION_REPLY *reply);
sys/dev/raid/mps/mps.c
1521
uint8_t *reply;
sys/dev/raid/mps/mps.c
1533
reply = sc->reply_frames +
sys/dev/raid/mps/mps.c
1541
if ((reply < sc->reply_frames)
sys/dev/raid/mps/mps.c
1542
|| (reply > (sc->reply_frames +
sys/dev/raid/mps/mps.c
1545
__func__, reply);
sys/dev/raid/mps/mps.c
1554
if (((MPI2_DEFAULT_REPLY *)reply)->Function ==
sys/dev/raid/mps/mps.c
1564
(MPI2_DIAG_RELEASE_REPLY *)reply;
sys/dev/raid/mps/mps.c
1579
reply);
sys/dev/raid/mps/mps.c
1582
cm->cm_reply = reply;
sys/dev/raid/mps/mps.c
1618
MPI2_EVENT_NOTIFICATION_REPLY *reply)
sys/dev/raid/mps/mps.c
1623
event = reply->Event;
sys/dev/raid/mps/mps.c
1626
eh->callback(sc, data, reply);
sys/dev/raid/mps/mps.c
1685
MPI2_EVENT_NOTIFICATION_REPLY *reply;
sys/dev/raid/mps/mps.c
1720
reply = (MPI2_EVENT_NOTIFICATION_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps.c
1721
if ((reply == NULL) ||
sys/dev/raid/mps/mps.c
1722
(reply->IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS)
sys/dev/raid/mps/mps.c
1724
mps_print_event(sc, reply);
sys/dev/raid/mps/mps.c
2243
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps.c
2263
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps.c
2264
if (reply == NULL) {
sys/dev/raid/mps/mps.c
2268
params->status = reply->IOCStatus;
sys/dev/raid/mps/mps.c
2270
params->hdr.Ext.ExtPageType = reply->ExtPageType;
sys/dev/raid/mps/mps.c
2271
params->hdr.Ext.ExtPageLength = reply->ExtPageLength;
sys/dev/raid/mps/mps.c
2273
params->hdr.Struct.PageType = reply->Header.PageType;
sys/dev/raid/mps/mps.c
2274
params->hdr.Struct.PageNumber = reply->Header.PageNumber;
sys/dev/raid/mps/mps.c
2275
params->hdr.Struct.PageLength = reply->Header.PageLength;
sys/dev/raid/mps/mps.c
2276
params->hdr.Struct.PageVersion = reply->Header.PageVersion;
sys/dev/raid/mps/mps.c
397
mps_request_sync(struct mps_softc *sc, void *req, MPI2_DEFAULT_REPLY *reply,
sys/dev/raid/mps/mps.c
449
data16 = (uint16_t *)reply;
sys/dev/raid/mps/mps.c
466
ioc_sz = reply->MsgLength;
sys/dev/raid/mps/mps.c
545
MPI2_DEFAULT_REPLY *reply;
sys/dev/raid/mps/mps.c
553
reply = (MPI2_DEFAULT_REPLY *)facts;
sys/dev/raid/mps/mps.c
557
error = mps_request_sync(sc, &request, reply, req_sz, reply_sz, 5);
sys/dev/raid/mps/mps.c
566
MPI2_PORT_FACTS_REPLY *reply;
sys/dev/raid/mps/mps.c
580
reply = (MPI2_PORT_FACTS_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps.c
581
if (reply == NULL) {
sys/dev/raid/mps/mps.c
585
if ((reply->IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps.c
588
__func__, error, reply->IOCStatus, reply->IOCLogInfo,
sys/dev/raid/mps/mps.c
589
reply->PortType);
sys/dev/raid/mps/mps.c
592
bcopy(reply, facts, sizeof(MPI2_PORT_FACTS_REPLY));
sys/dev/raid/mps/mps.c
603
MPI2_DEFAULT_REPLY reply;
sys/dev/raid/mps/mps.c
611
bzero(&reply, reply_sz);
sys/dev/raid/mps/mps.c
636
error = mps_request_sync(sc, &init, &reply, req_sz, reply_sz, 5);
sys/dev/raid/mps/mps.c
637
if ((reply.IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS)
sys/dev/raid/mps/mps.c
640
mps_dprint(sc, MPS_INFO, "IOCInit status= 0x%x\n", reply.IOCStatus);
sys/dev/raid/mps/mps_config.c
102
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1021
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
103
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1045
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1046
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1054
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1055
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1098
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1099
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1107
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1108
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1141
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
1165
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1166
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1174
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1175
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1218
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1219
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1227
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1228
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1286
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
1310
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1311
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1319
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1320
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
1363
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
1364
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
1372
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
1373
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
144
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
145
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
153
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
154
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
185
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
211
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
212
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
220
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
221
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
262
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
263
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
271
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
272
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
533
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
561
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
562
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
570
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
571
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
615
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
616
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
624
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
625
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
657
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
684
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
685
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
69
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
693
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
694
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
740
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
741
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
749
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
750
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
782
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
807
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
808
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
816
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
817
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
861
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
862
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
870
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
871
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
903
MPI2_CONFIG_REPLY *reply;
sys/dev/raid/mps/mps_config.c
927
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
928
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
93
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
936
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
937
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_config.c
94
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
979
reply = (MPI2_CONFIG_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_config.c
980
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_config.c
988
ioc_status = le16toh(reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
sys/dev/raid/mps/mps_config.c
989
bcopy(reply, mpi_reply, sizeof(MPI2_CONFIG_REPLY));
sys/dev/raid/mps/mps_sas.c
1138
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
1145
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
1160
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
1177
reply->IOCStatus, reply->ResponseCode,
sys/dev/raid/mps/mps_sas.c
1178
reply->TerminationCount);
sys/dev/raid/mps/mps_sas.c
1226
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
1231
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
1246
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
1263
reply->IOCStatus, reply->ResponseCode,
sys/dev/raid/mps/mps_sas.c
1264
reply->TerminationCount);
sys/dev/raid/mps/mps_sas.c
1355
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
1362
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
1378
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
1397
reply->IOCStatus, reply->ResponseCode,
sys/dev/raid/mps/mps_sas.c
1398
reply->TerminationCount);
sys/dev/raid/mps/mps_sas.c
3281
MPI2_PORT_ENABLE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
3299
reply = (MPI2_PORT_ENABLE_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_sas.c
3300
if (reply == NULL)
sys/dev/raid/mps/mps_sas.c
3302
else if ((reply->IOCStatus & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mps/mps_sas.c
350
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
356
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
360
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
368
if (reply->IOCStatus != MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps_sas.c
370
reply->IOCStatus, handle);
sys/dev/raid/mps/mps_sas.c
375
mps_printf(sc, "Reset aborted %u commands\n", reply->TerminationCount);
sys/dev/raid/mps/mps_sas.c
387
if (reply->IOCStatus == MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps_sas.c
532
MPI2_SCSI_TASK_MANAGE_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
540
reply = (MPI2_SCSI_TASK_MANAGE_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
557
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
565
if (reply->IOCStatus != MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps_sas.c
567
reply->IOCStatus, handle);
sys/dev/raid/mps/mps_sas.c
573
reply->TerminationCount);
sys/dev/raid/mps/mps_sas.c
605
MPI2_SAS_IOUNIT_CONTROL_REPLY *reply;
sys/dev/raid/mps/mps_sas.c
611
reply = (MPI2_SAS_IOUNIT_CONTROL_REPLY *)tm->cm_reply;
sys/dev/raid/mps/mps_sas.c
627
if (reply == NULL) {
sys/dev/raid/mps/mps_sas.c
636
handle, reply->IOCStatus);
sys/dev/raid/mps/mps_sas.c
644
if (reply->IOCStatus == MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps_sas_lsi.c
763
Mpi2SataPassthroughReply_t *reply;
sys/dev/raid/mps/mps_sas_lsi.c
795
reply = (Mpi2SataPassthroughReply_t *)cm->cm_reply;
sys/dev/raid/mps/mps_sas_lsi.c
796
if (error || (reply == NULL)) {
sys/dev/raid/mps/mps_sas_lsi.c
805
bcopy(reply, mpi_reply, sizeof(Mpi2SataPassthroughReply_t));
sys/dev/raid/mps/mps_sas_lsi.c
806
if ((reply->IOCStatus & MPI2_IOCSTATUS_MASK) !=
sys/dev/raid/mps/mps_sas_lsi.c
809
__func__, reply->IOCStatus);
sys/dev/raid/mps/mps_user.c
1145
MPI2_DIAG_BUFFER_POST_REPLY *reply;
sys/dev/raid/mps/mps_user.c
1203
reply = (MPI2_DIAG_BUFFER_POST_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_user.c
1204
if (reply->IOCStatus != MPI2_IOCSTATUS_SUCCESS) {
sys/dev/raid/mps/mps_user.c
1208
"TransferLength = 0x%x\n", __func__, reply->IOCStatus,
sys/dev/raid/mps/mps_user.c
1209
reply->IOCLogInfo, reply->TransferLength);
sys/dev/raid/mps/mps_user.c
1232
MPI2_DIAG_RELEASE_REPLY *reply;
sys/dev/raid/mps/mps_user.c
1287
reply = (MPI2_DIAG_RELEASE_REPLY *)cm->cm_reply;
sys/dev/raid/mps/mps_user.c
1288
if ((reply->IOCStatus != MPI2_IOCSTATUS_SUCCESS) ||
sys/dev/raid/mps/mps_user.c
1293
__func__, reply->IOCStatus, reply->IOCLogInfo);
sys/dev/raid/mps/mpsvar.h
211
MPI2_EVENT_NOTIFICATION_REPLY *reply);
sys/dev/raid/vinum/vinumioctl.c
382
validdrive(int driveno, struct _ioctl_reply *reply)
sys/dev/raid/vinum/vinumioctl.c
387
strcpy(reply->msg, "No such drive");
sys/dev/raid/vinum/vinumioctl.c
388
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
393
validsd(int sdno, struct _ioctl_reply *reply)
sys/dev/raid/vinum/vinumioctl.c
398
strcpy(reply->msg, "No such subdisk");
sys/dev/raid/vinum/vinumioctl.c
399
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
404
validplex(int plexno, struct _ioctl_reply *reply)
sys/dev/raid/vinum/vinumioctl.c
409
strcpy(reply->msg, "No such plex");
sys/dev/raid/vinum/vinumioctl.c
410
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
415
validvol(int volno, struct _ioctl_reply *reply)
sys/dev/raid/vinum/vinumioctl.c
420
strcpy(reply->msg, "No such volume");
sys/dev/raid/vinum/vinumioctl.c
421
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
429
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
440
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
443
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
454
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
457
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
475
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
478
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
492
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
495
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
499
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
508
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
518
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
519
reply->msg[0] = '\0'; /* vinum(8) doesn't do this */
sys/dev/raid/vinum/vinumioctl.c
523
sd = validsd(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
526
plex = validplex(msg->otherobject, reply);
sys/dev/raid/vinum/vinumioctl.c
537
reply->error = EINVAL; /* no message, the user should check */
sys/dev/raid/vinum/vinumioctl.c
538
strcpy(reply->msg, "Can't attach to this plex organization");
sys/dev/raid/vinum/vinumioctl.c
542
reply->error = EBUSY; /* no message, the user should check */
sys/dev/raid/vinum/vinumioctl.c
543
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
553
reply->error = EAGAIN; /* need to revive it */
sys/dev/raid/vinum/vinumioctl.c
555
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
559
plex = validplex(msg->index, reply); /* get plex */
sys/dev/raid/vinum/vinumioctl.c
562
vol = validvol(msg->otherobject, reply); /* and volume information */
sys/dev/raid/vinum/vinumioctl.c
566
reply->error = EINVAL; /* no message, the user should check */
sys/dev/raid/vinum/vinumioctl.c
567
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
588
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
599
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
600
reply->msg[0] = '\0'; /* vinum(8) doesn't do this */
sys/dev/raid/vinum/vinumioctl.c
604
sd = validsd(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
608
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
609
strcpy(reply->msg, "Subdisk is not attached");
sys/dev/raid/vinum/vinumioctl.c
616
reply->error = EBUSY; /* we need this sd */
sys/dev/raid/vinum/vinumioctl.c
617
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
651
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
656
plex = validplex(msg->index, reply); /* get plex */
sys/dev/raid/vinum/vinumioctl.c
670
reply->error = EBUSY; /* we need this plex */
sys/dev/raid/vinum/vinumioctl.c
671
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
714
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
716
reply->error = ENOENT;
sys/dev/raid/vinum/vinumioctl.c
717
strcpy(reply->msg, "Plex is not attached");
sys/dev/raid/vinum/vinumioctl.c
725
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
734
reply->error = EEXIST;
sys/dev/raid/vinum/vinumioctl.c
735
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
738
drive = validdrive(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
742
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
748
reply->error = EEXIST;
sys/dev/raid/vinum/vinumioctl.c
749
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
752
sd = validsd(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
757
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
763
reply->error = EEXIST;
sys/dev/raid/vinum/vinumioctl.c
764
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
767
plex = validplex(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
772
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
778
reply->error = EEXIST;
sys/dev/raid/vinum/vinumioctl.c
779
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
782
vol = validvol(msg->index, reply);
sys/dev/raid/vinum/vinumioctl.c
787
reply->error = 0;
sys/dev/raid/vinum/vinumioctl.c
792
reply->error = EINVAL;
sys/dev/raid/vinum/vinumioctl.c
793
reply->msg[0] = '\0';
sys/dev/raid/vinum/vinumioctl.c
806
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
808
reply->error = ENODEV; /* until I know how to do this */
sys/dev/raid/vinum/vinumioctl.c
809
strcpy(reply->msg, "replace not implemented yet");
sys/dev/raid/vinum/vinumioctl.c
816
struct _ioctl_reply *reply = (struct _ioctl_reply *) msg;
sys/dev/raid/vinum/vinumioctl.c
848
reply->error = 0;
sys/dev/raid/vinum/vinumrevive.c
253
struct _ioctl_reply *reply;
sys/dev/raid/vinum/vinumrevive.c
262
reply = (struct _ioctl_reply *) data;
sys/dev/raid/vinum/vinumrevive.c
263
reply->error = EAGAIN; /* expect to repeat this call */
sys/dev/raid/vinum/vinumrevive.c
266
reply->error = EINVAL;
sys/dev/raid/vinum/vinumrevive.c
269
reply->error = EIO;
sys/dev/raid/vinum/vinumrevive.c
270
strcpy(reply->msg, "Plex is not completely accessible\n");
sys/dev/raid/vinum/vinumrevive.c
280
reply->error = ENOMEM;
sys/dev/raid/vinum/vinumrevive.c
288
reply->msg[0] = '\0'; /* until shown otherwise */
sys/dev/raid/vinum/vinumrevive.c
302
reply->error = EIO;
sys/dev/raid/vinum/vinumrevive.c
303
ksprintf(reply->msg,
sys/dev/raid/vinum/vinumrevive.c
307
if (reply->error == EAGAIN) { /* still OK, */
sys/dev/raid/vinum/vinumrevive.c
311
reply->error = 0;
sys/dev/raid/vinum/vinumrevive.c
316
reply->error = pbp->b_error;
sys/net/bridge/if_bridge.c
1889
goto reply;
sys/net/bridge/if_bridge.c
1911
reply:
sys/net/ipfw/ip_fw2.c
7151
goto reply;
sys/net/ipfw/ip_fw2.c
7158
reply:
sys/net/ipfw/ip_fw2.c
7370
goto reply;
sys/net/ipfw/ip_fw2.c
7434
reply:
sys/net/ipfw/ip_fw2.c
7489
goto reply;
sys/net/ipfw/ip_fw2.c
7520
reply:
sys/net/ipfw3/ip_fw3.c
1364
goto reply;
sys/net/ipfw3/ip_fw3.c
1372
reply:
sys/net/ipfw3/ip_fw3.c
1456
goto reply;
sys/net/ipfw3/ip_fw3.c
1474
reply:
sys/net/pfil.c
187
goto reply; /* XXX panic? */
sys/net/pfil.c
197
goto reply;
sys/net/pfil.c
204
goto reply;
sys/net/pfil.c
248
reply:
sys/net/pfil.c
293
goto reply; /* XXX panic? */
sys/net/pfil.c
303
goto reply;
sys/net/pfil.c
310
goto reply;
sys/net/pfil.c
355
reply:
sys/net/vlan/if_vlan.c
419
goto reply;
sys/net/vlan/if_vlan.c
427
reply:
sys/net/vlan/if_vlan.c
705
goto reply;
sys/net/vlan/if_vlan.c
710
goto reply;
sys/net/vlan/if_vlan.c
718
goto reply;
sys/net/vlan/if_vlan.c
778
reply:
sys/netinet/if_ether.c
1060
goto reply;
sys/netinet/if_ether.c
1063
goto reply;
sys/netinet/if_ether.c
1096
goto reply;
sys/netinet/if_ether.c
1105
reply:
sys/vfs/fuse/fuse.h
137
struct fuse_buf reply;
sys/vfs/fuse/fuse.h
255
return fip->reply.buf;
sys/vfs/fuse/fuse.h
261
return fip->reply.len;
sys/vfs/fuse/fuse_device.c
205
fip->reply = fb;
sys/vfs/fuse/fuse_ipc.c
104
fip->reply.buf = NULL;
sys/vfs/fuse/fuse_ipc.c
114
fuse_buf_free(&fip->reply);
sys/vfs/nfs/bootp_subr.c
111
struct bootp_packet reply;
sys/vfs/nfs/bootp_subr.c
1232
memcpy(vendp, &ifctx->reply.yiaddr, 4);
sys/vfs/nfs/bootp_subr.c
1355
ifctx->myaddr.sin_addr = ifctx->reply.yiaddr;
sys/vfs/nfs/bootp_subr.c
1365
print_in_addr(ifctx->reply.siaddr);
sys/vfs/nfs/bootp_subr.c
1367
ifctx->gw.sin_addr = ifctx->reply.giaddr;
sys/vfs/nfs/bootp_subr.c
1368
if (ifctx->reply.giaddr.s_addr != htonl(INADDR_ANY)) {
sys/vfs/nfs/bootp_subr.c
1370
print_in_addr(ifctx->reply.giaddr);
sys/vfs/nfs/bootp_subr.c
1375
&ifctx->reply, ifctx->replylen, TAG_END);
sys/vfs/nfs/bootp_subr.c
1378
if (ifctx->reply.sname[0] != '\0')
sys/vfs/nfs/bootp_subr.c
1379
kprintf(" server name %s", ifctx->reply.sname);
sys/vfs/nfs/bootp_subr.c
1381
if (ifctx->reply.file[0] != '\0')
sys/vfs/nfs/bootp_subr.c
1382
kprintf(" boot file %s", ifctx->reply.file);
sys/vfs/nfs/bootp_subr.c
1386
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1399
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1415
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1427
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1438
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1449
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1458
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1477
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1492
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
162
struct bootp_packet reply;
sys/vfs/nfs/bootp_subr.c
483
(void) bootpc_tag(&gctx->tmptag, &gctx->reply,
sys/vfs/nfs/bootp_subr.c
491
p = bootpc_tag(&gctx->tmptag, &gctx->reply,
sys/vfs/nfs/bootp_subr.c
522
(bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
525
bootpc_tag(&gctx->tmptag, &gctx->reply,
sys/vfs/nfs/bootp_subr.c
530
bcopy(&gctx->reply,
sys/vfs/nfs/bootp_subr.c
531
&ifctx->reply,
sys/vfs/nfs/bootp_subr.c
551
p = bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
561
ifctx->gotrootpath = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
564
ifctx->gotgw = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
567
ifctx->gotnetmask = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
672
bootpc_tag(&gctx->tmptag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
795
aio.iov_base = (caddr_t) &gctx->reply;
sys/vfs/nfs/bootp_subr.c
796
aio.iov_len = sizeof(gctx->reply);
sys/vfs/nfs/bootp_subr.c
803
auio.uio_resid = sizeof(gctx->reply);
sys/vfs/nfs/bootp_subr.c
823
len = sizeof(gctx->reply) - auio.uio_resid;
sys/vfs/nfs/bootp_subr.c
831
if (gctx->reply.op != BOOTP_REPLY)
sys/vfs/nfs/bootp_subr.c
838
if (gctx->reply.xid != ifctx->call.xid)
sys/vfs/nfs/bootp_subr.c
842
if (gctx->reply.hlen != ifctx->call.hlen)
sys/vfs/nfs/bootp_subr.c
846
if (bcmp(gctx->reply.chaddr,
sys/vfs/nfs/bootp_subr.c
856
&gctx->reply,
sys/vfs/nfs/bootp_subr.c
878
print_in_addr(gctx->reply.siaddr);
sys/vfs/nfs/bootp_subr.c
879
if (gctx->reply.giaddr.s_addr !=
sys/vfs/nfs/bootp_subr.c
882
print_in_addr(gctx->reply.giaddr);
sys/vfs/nfs/krpc_subr.c
196
struct rpc_reply *reply;
sys/vfs/nfs/krpc_subr.c
374
reply = mtod(m, struct rpc_reply *);
sys/vfs/nfs/krpc_subr.c
377
if (reply->rp_direction != txdr_unsigned(RPC_REPLY))
sys/vfs/nfs/krpc_subr.c
380
if (reply->rp_xid != txdr_unsigned(xid))
sys/vfs/nfs/krpc_subr.c
384
if (reply->rp_astatus != 0) {
sys/vfs/nfs/krpc_subr.c
385
error = fxdr_unsigned(u_int32_t, reply->rp_errno);
sys/vfs/nfs/krpc_subr.c
391
if (reply->rp_status != 0) {
sys/vfs/nfs/krpc_subr.c
392
error = fxdr_unsigned(u_int32_t, reply->rp_status);
sys/vfs/nfs/krpc_subr.c
415
len = sizeof(*reply);
sys/vfs/nfs/krpc_subr.c
423
reply = mtod(m, struct rpc_reply *);
sys/vfs/nfs/krpc_subr.c
424
if (reply->rp_auth.authtype != 0) {
sys/vfs/nfs/krpc_subr.c
425
len += fxdr_unsigned(u_int32_t, reply->rp_auth.authlen);
usr.bin/chat/chat.c
762
char *reply;
usr.bin/chat/chat.c
814
reply = expect_strtok (s, "-");
usr.bin/chat/chat.c
826
if (reply == NULL || exit_code != 3)
usr.bin/chat/chat.c
829
chat_send (reply);
usr.bin/tip/tipout.c
66
char reply;
usr.bin/tip/tipout.c
78
reply = 'y';
usr.bin/tip/tipout.c
81
reply = 'n';
usr.bin/tip/tipout.c
83
reply = 'y';
usr.bin/tip/tipout.c
87
write(repdes[1], &reply, 1);
usr.sbin/fdformat/fdformat.c
154
char reply[256], *p;
usr.sbin/fdformat/fdformat.c
156
reply[sizeof(reply) - 1] = 0;
usr.sbin/fdformat/fdformat.c
159
if (fgets(reply, sizeof(reply) - 1, stdin) == NULL)
usr.sbin/fdformat/fdformat.c
161
for (p = reply; *p == ' ' || *p == '\t'; ++p)
usr.sbin/mpsutil/mps_cmd.c
291
MPI2_CONFIG_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
300
if (mps_pass_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
304
if (!IOC_STATUS_SUCCESS(reply.IOCStatus)) {
usr.sbin/mpsutil/mps_cmd.c
306
*IOCStatus = reply.IOCStatus;
usr.sbin/mpsutil/mps_cmd.c
311
*header = reply.Header;
usr.sbin/mpsutil/mps_cmd.c
319
MPI2_CONFIG_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
329
if (mps_pass_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
333
if (!IOC_STATUS_SUCCESS(reply.IOCStatus)) {
usr.sbin/mpsutil/mps_cmd.c
335
*IOCStatus = reply.IOCStatus;
usr.sbin/mpsutil/mps_cmd.c
340
*header = reply.Header;
usr.sbin/mpsutil/mps_cmd.c
341
*ExtPageLength = reply.ExtPageLength;
usr.sbin/mpsutil/mps_cmd.c
351
MPI2_CONFIG_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
373
if (mps_pass_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
380
if (!IOC_STATUS_SUCCESS(reply.IOCStatus)) {
usr.sbin/mpsutil/mps_cmd.c
382
*IOCStatus = reply.IOCStatus;
usr.sbin/mpsutil/mps_cmd.c
385
reply.IOCStatus, mps_ioc_status(reply.IOCStatus));
usr.sbin/mpsutil/mps_cmd.c
399
MPI2_CONFIG_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
426
if (mps_pass_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
433
if (!IOC_STATUS_SUCCESS(reply.IOCStatus)) {
usr.sbin/mpsutil/mps_cmd.c
435
*IOCStatus = reply.IOCStatus;
usr.sbin/mpsutil/mps_cmd.c
438
mps_ioc_status(reply.IOCStatus));
usr.sbin/mpsutil/mps_cmd.c
450
MPI2_FW_DOWNLOAD_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
453
bzero(&reply, sizeof(reply));
usr.sbin/mpsutil/mps_cmd.c
459
if (mps_user_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
470
MPI2_FW_UPLOAD_REPLY reply;
usr.sbin/mpsutil/mps_cmd.c
475
bzero(&reply, sizeof(reply));
usr.sbin/mpsutil/mps_cmd.c
479
if (mps_user_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
483
if (reply.ActualImageSize == 0) {
usr.sbin/mpsutil/mps_cmd.c
487
size = reply.ActualImageSize;
usr.sbin/mpsutil/mps_cmd.c
493
if (mps_user_command(fd, &req, sizeof(req), &reply, sizeof(reply),
usr.sbin/mpsutil/mps_cmd.c
629
mps_user_command(int fd, void *req, uint32_t req_len, void *reply,
usr.sbin/mpsutil/mps_cmd.c
637
cmd.rpl = reply;
usr.sbin/mpsutil/mps_cmd.c
649
mps_pass_command(int fd, void *req, uint32_t req_len, void *reply,
usr.sbin/mpsutil/mps_cmd.c
656
pass.PtrReply = (uint64_t)(uintptr_t)reply;
usr.sbin/mpsutil/mpsutil.h
112
int mps_user_command(int fd, void *req, uint32_t req_len, void *reply,
usr.sbin/mpsutil/mpsutil.h
114
int mps_pass_command(int fd, void *req, uint32_t req_len, void *reply,
usr.sbin/ppp/bundle.c
1539
int niov, f, expect, newsid, fd[SEND_MAXFD], nfd, reply[2];
usr.sbin/ppp/bundle.c
1564
if (fd[0] != -1 && socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, reply) != -1) {
usr.sbin/ppp/bundle.c
1569
fd[1] = reply[1];
usr.sbin/ppp/bundle.c
1598
if (setsockopt(reply[0], SOL_SOCKET, SO_SNDBUF, &expect, sizeof(int)) == -1)
usr.sbin/ppp/bundle.c
1601
if (setsockopt(reply[1], SOL_SOCKET, SO_RCVBUF, &expect, sizeof(int)) == -1)
usr.sbin/ppp/bundle.c
1619
if ((got = read(reply[0], &newpid, sizeof newpid)) == sizeof newpid) {
usr.sbin/ppp/bundle.c
1626
if ((got = writev(reply[0], iov + 1, niov - 1)) != expect) {
usr.sbin/ppp/bundle.c
1642
close(reply[0]);
usr.sbin/ppp/bundle.c
1643
close(reply[1]);
usr.sbin/ppp/tty.c
265
struct ng_mesg *reply;
usr.sbin/ppp/tty.c
279
reply = (struct ng_mesg *)rbuf;
usr.sbin/ppp/tty.c
280
info = (struct nodeinfo *)reply->data;
usr.sbin/ppp/tty.c
359
if (NgRecvMsg(cs, reply, sizeof rbuf, NULL) < 0) {