Lines Matching defs:reply

741 	smb_gmttoken_response_t		reply;
745 bzero(&reply, sizeof (smb_gmttoken_response_t));
751 reply.gtr_gmttokens.gtr_gmttokens_val = malloc(request.gtq_count *
753 bzero(reply.gtr_gmttokens.gtr_gmttokens_val, request.gtq_count *
756 if (reply.gtr_gmttokens.gtr_gmttokens_val == NULL) {
762 &reply.gtr_count,
763 &reply.gtr_gmttokens.gtr_gmttokens_len,
764 reply.gtr_gmttokens.gtr_gmttokens_val);
766 arg->rbuf = smb_common_encode(&reply, smb_gmttoken_response_xdr,
773 for (i = 0, gmtp = reply.gtr_gmttokens.gtr_gmttokens_val;
780 free(reply.gtr_gmttokens.gtr_gmttokens_val);
854 smb_quota_response_t reply;
858 bzero(&reply, sizeof (smb_quota_response_t));
864 status = smb_quota_query(&request, &reply);
865 reply.qr_status = status;
867 arg->rbuf = smb_common_encode(&reply, smb_quota_response_xdr,
871 smb_quota_free(&reply);
907 dfs_referral_response_t reply;
910 bzero(&reply, sizeof (reply));
916 reply.rp_status = dfs_get_referrals((const char *)request.rq_path,
917 request.rq_type, &reply.rp_referrals);
919 if (reply.rp_status != ERROR_SUCCESS)
920 bzero(&reply.rp_referrals, sizeof (dfs_info_t));
922 arg->rbuf = smb_common_encode(&reply, dfs_referral_response_xdr,
925 if (reply.rp_status == ERROR_SUCCESS)
926 dfs_info_free(&reply.rp_referrals);
939 uint32_t reply;
942 bzero(&reply, sizeof (reply));
948 reply = smb_shr_hostaccess(&request.shq_ipaddr, request.shq_none,
951 arg->rbuf = smb_common_encode(&reply, xdr_uint32_t, &arg->rsize);
964 int reply;
967 bzero(&reply, sizeof (reply));
973 reply = smb_shr_exec(&request);
975 if (reply != 0)
979 arg->rbuf = smb_common_encode(&reply, xdr_int, &arg->rsize);