Home
last modified time | relevance | path

Searched refs:rqst (Results 1 – 19 of 19) sorted by relevance

/illumos-gate/usr/src/uts/common/io/scsi/adapters/smartpqi/
H A Dsmartpqi_hw.c29 pqi_aio_path_request_t *rqst, pqi_cmd_t *cmd, pqi_io_request_t *);
31 pqi_raid_path_request_t *rqst, pqi_cmd_t *cmd, pqi_io_request_t *);
95 pqi_iu_header_t *rqst; in pqi_start_io() local
134 rqst = io->io_iu; in pqi_start_io()
135 iu_len = rqst->iu_length + PQI_REQUEST_HEADER_LENGTH; in pqi_start_io()
153 rqst->iu_id = qg->oq_id; in pqi_start_io()
158 (void) memcpy(next_elem, rqst, iu_len); in pqi_start_io()
166 (void) memcpy(next_elem, rqst, copy_to_end); in pqi_start_io()
172 (caddr_t)rqst + copy_to_end, in pqi_start_io()
402 pqi_task_management_rqst_t *rqst; in lun_reset_worker() local
[all …]
H A Dsmartpqi_util.c904 pqi_raid_path_request_t *rqst = v; in dump_raid() local
913 for (i = 0; i < sizeof (*rqst); i++) in dump_raid()
920 cdb_data = build_cdb_str(rqst->rp_cdb); in dump_raid()
925 ASSERT0(rqst->header.reserved); in dump_raid()
926 ASSERT0(rqst->reserved1); in dump_raid()
927 ASSERT0(rqst->reserved2); in dump_raid()
928 ASSERT0(rqst->reserved3); in dump_raid()
929 ASSERT0(rqst->reserved4); in dump_raid()
930 ASSERT0(rqst->reserved5); in dump_raid()
934 rqst->header.iu_type, rqst->header.iu_length, in dump_raid()
[all …]
H A Dsmartpqi_init.c126 pqi_general_admin_request_t *rqst, pqi_general_admin_response_t *rsp);
129 static boolean_t submit_raid_rqst_sync(pqi_state_t *s, pqi_iu_header_t *rqst,
137 static boolean_t build_raid_path_request(pqi_raid_path_request_t *rqst, int cmd,
148 static boolean_t scsi_common(pqi_state_t *s, pqi_raid_path_request_t *rqst,
453 pqi_general_admin_request_t rqst; in pqi_report_device_capability() local
461 (void) memset(&rqst, 0, sizeof (rqst)); in pqi_report_device_capability()
463 rqst.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN; in pqi_report_device_capability()
464 rqst.header.iu_length = PQI_GENERAL_ADMIN_IU_LENGTH; in pqi_report_device_capability()
465 rqst.function_code = in pqi_report_device_capability()
467 rqst.data.report_device_capability.buffer_length = in pqi_report_device_capability()
[all …]
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dsvc_auth.c99 __gss_authenticate(struct svc_req *rqst, struct rpc_msg *msg, in __gss_authenticate() argument
108 rqst->rq_cred = msg->rm_call.cb_cred; in __gss_authenticate()
109 rqst->rq_xprt->xp_verf.oa_flavor = _null_auth.oa_flavor; in __gss_authenticate()
110 rqst->rq_xprt->xp_verf.oa_length = 0; in __gss_authenticate()
111 cred_flavor = rqst->rq_cred.oa_flavor; in __gss_authenticate()
115 return (__svcauth_null(rqst, msg)); in __gss_authenticate()
117 return (__svcauth_sys(rqst, msg)); in __gss_authenticate()
119 return (__svcauth_short(rqst, msg)); in __gss_authenticate()
121 return (__svcauth_des(rqst, msg)); in __gss_authenticate()
123 return (__svcauth_loopback(rqst, msg)); in __gss_authenticate()
[all …]
H A Dsvc_auth_sys.c70 __svcauth_sys(struct svc_req *rqst, struct rpc_msg *msg) in __svcauth_sys() argument
80 area = (struct authsys_area *)rqst->rq_clntcred; in __svcauth_sys()
115 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NULL; in __svcauth_sys()
116 rqst->rq_xprt->xp_verf.oa_length = 0; in __svcauth_sys()
127 __svcauth_short(struct svc_req *rqst, struct rpc_msg *msg) in __svcauth_short() argument
136 __svcauth_unix(struct svc_req *rqst, struct rpc_msg *msg) in __svcauth_unix() argument
138 return (__svcauth_sys(rqst, msg)); in __svcauth_unix()
H A Dsvc_auth_loopb.c56 __svcauth_loopback(struct svc_req *rqst, struct rpc_msg *msg) in __svcauth_loopback() argument
66 area = (struct authlpbk_area *)rqst->rq_clntcred; in __svcauth_loopback()
104 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NULL; in __svcauth_loopback()
105 rqst->rq_xprt->xp_verf.oa_length = 0; in __svcauth_loopback()
H A Dsvcauth_des.c132 __svcauth_des(struct svc_req *rqst, struct rpc_msg *msg) in __svcauth_des() argument
162 area = (struct authdes_area *)rqst->rq_clntcred; in __svcauth_des()
430 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_DES; in __svcauth_des()
431 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base; in __svcauth_des()
432 rqst->rq_xprt->xp_verf.oa_length = in __svcauth_des()
434 if (rqst->rq_xprt->xp_verf.oa_length > MAX_AUTH_BYTES) { in __svcauth_des()
H A Drpcsec_gss_if.c267 __svcrpcsec_gss(struct svc_req *rqst, struct rpc_msg *msg, bool_t *no_dispatch) in __svcrpcsec_gss() argument
271 return ((*calls.__svcrpcsec_gss)(rqst, msg, no_dispatch)); in __svcrpcsec_gss()
/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dsec_svc.c91 sec_svc_msg(struct svc_req *rqst, struct rpc_msg *msg, bool_t *no_dispatch) in sec_svc_msg() argument
95 rqst->rq_cred = msg->rm_call.cb_cred; in sec_svc_msg()
96 rqst->rq_xprt->xp_verf.oa_flavor = _null_auth.oa_flavor; in sec_svc_msg()
97 rqst->rq_xprt->xp_verf.oa_length = 0; in sec_svc_msg()
102 rqst->rq_xprt->xp_auth.svc_ah_ops = svc_authany_ops; in sec_svc_msg()
103 rqst->rq_xprt->xp_auth.svc_ah_private = NULL; in sec_svc_msg()
106 cred_flavor = rqst->rq_cred.oa_flavor; in sec_svc_msg()
110 rqst->rq_xprt->xp_cookie = (void *) AUTH_NULL; in sec_svc_msg()
111 return (_svcauth_null(rqst, msg)); in sec_svc_msg()
114 rqst->rq_xprt->xp_cookie = (void *) AUTH_UNIX; in sec_svc_msg()
[all …]
H A Dsvc_authu.c72 _svcauth_unix(struct svc_req *rqst, struct rpc_msg *msg) in _svcauth_unix() argument
87 area = (struct area *)rqst->rq_clntcred; in _svcauth_unix()
122 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NULL; in _svcauth_unix()
123 rqst->rq_xprt->xp_verf.oa_length = 0; in _svcauth_unix()
135 _svcauth_short(struct svc_req *rqst, struct rpc_msg *msg) in _svcauth_short() argument
H A Dsvcauthdes.c137 _svcauth_des(struct svc_req *rqst, struct rpc_msg *msg) in _svcauth_des() argument
166 area = (struct area *)rqst->rq_clntcred; in _svcauth_des()
346 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_DES; in _svcauth_des()
347 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base; in _svcauth_des()
348 rqst->rq_xprt->xp_verf.oa_length = in _svcauth_des()
350 if (rqst->rq_xprt->xp_verf.oa_length > MAX_AUTH_BYTES) { in _svcauth_des()
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DRequestHandler.java821 SrvLocMsg dispatch(SrvLocMsg rqst) { in dispatch() argument
823 SrvLocHeader hdr = rqst.getHeader(); in dispatch()
829 if (rqst instanceof CDAAdvert) { // DA advert... in dispatch()
830 CDAAdvert msg = (CDAAdvert)rqst; in dispatch()
915 } else if (rqst instanceof CSAAdvert) {// SA advert... in dispatch()
916 CSAAdvert msg = (CSAAdvert)rqst; in dispatch()
981 if (rqst instanceof SSrvReg) { // registration... in dispatch()
983 return dispatchReg((SSrvReg)rqst, in dispatch()
986 } else if (rqst instanceof SSrvDereg) { // deregistration... in dispatch()
988 return dispatchDereg((SSrvDereg)rqst, in dispatch()
[all …]
H A DServerDATable.java499 private void forwardRegOrDereg(InetAddress addr, SrvLocMsg rqst) { in forwardRegOrDereg() argument
500 SrvLocHeader hdr = rqst.getHeader(); in forwardRegOrDereg()
518 if (rqst instanceof SSrvReg) { in forwardRegOrDereg()
519 auths = ((SSrvReg)rqst).URLSignature; in forwardRegOrDereg()
520 } else if (rqst instanceof SSrvDereg) { in forwardRegOrDereg()
521 auths = ((SSrvDereg)rqst).URLSignature; in forwardRegOrDereg()
564 if (rqst instanceof SSrvReg) { in forwardRegOrDereg()
565 SSrvReg rrqst = (SSrvReg)rqst; in forwardRegOrDereg()
575 } else if (rqst instanceof SSrvDereg) { in forwardRegOrDereg()
576 SSrvDereg drqst = (SSrvDereg)rqst; in forwardRegOrDereg()
[all …]
H A DServiceTable.java1341 makeDAAdvert(SSrvMsg rqst, in makeDAAdvert() argument
1345 SrvLocHeader hdr = rqst.getHeader(); in makeDAAdvert()
1348 String query = rqst.query; in makeDAAdvert()
1353 if (conf.getHasSecurity() && !AuthBlock.canSignAs(rqst.spi)) { in makeDAAdvert()
1357 new Object[] {rqst.spi}); in makeDAAdvert()
1384 return rqst.makeReply(new Hashtable(), new Hashtable()); in makeDAAdvert()
1455 makeSAAdvert(SSrvMsg rqst, in makeSAAdvert() argument
1459 SrvLocHeader hdr = rqst.getHeader(); in makeSAAdvert()
1464 String query = rqst.query; in makeSAAdvert()
1465 String serviceType = rqst.serviceType; in makeSAAdvert()
[all …]
H A DServiceLocationManager.java353 CSrvMsg rqst = new CSrvMsg(config.getLocale(), in performSADiscovery() local
362 rqst, in performSADiscovery()
H A DTransact.java904 SrvLocMsg rqst, in transactActiveAdvertRequest() argument
915 Transact tran = new Transact(rqst, in transactActiveAdvertRequest()
/illumos-gate/usr/src/uts/common/rpc/sec_gss/
H A Dsvc_rpcsec_gss.c798 struct svc_req r, *rqst; in do_gss_accept() local
800 rqst = &r; in do_gss_accept()
801 rqst->rq_xprt = xprt; in do_gss_accept()
906 (void) svc_sendreply(rqst->rq_xprt, in do_gss_accept()
955 if (!set_response_verf(rqst, msg, client_data, in do_gss_accept()
965 if (!svc_sendreply(rqst->rq_xprt, __xdr_rpc_gss_init_res, in do_gss_accept()
1022 struct svc_req *rqst, in rpcsec_gss_init() argument
1079 if (!SVC_GETARGS(rqst->rq_xprt, __xdr_rpc_gss_init_arg, in rpcsec_gss_init()
1088 svc_clone_link(rqst->rq_xprt->xp_master, arg->rq_xprt, rqst->rq_xprt); in rpcsec_gss_init()
1089 arg->rq_xprt->xp_xid = rqst->rq_xprt->xp_xid; in rpcsec_gss_init()
[all …]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_net.c128 struct tcp_rqst *rqst; in slp_uc_tcp_send() local
157 if (!(rqst = malloc(sizeof (*rqst)))) { in slp_uc_tcp_send()
161 rqst->hp = hp; in slp_uc_tcp_send()
162 rqst->target = target; in slp_uc_tcp_send()
163 rqst->scopes = scopes; in slp_uc_tcp_send()
164 rqst->free_target = free_target; in slp_uc_tcp_send()
165 rqst->xid = xid; in slp_uc_tcp_send()
166 (void) slp_enqueue(tcp_q, rqst); in slp_uc_tcp_send()
459 struct tcp_rqst *rqst; in tcp_thread() local
475 if (!(rqst = slp_dequeue_timed(tcp_q, to, &etimed))) { in tcp_thread()
[all …]
/illumos-gate/usr/src/lib/rpcsec_gss/
H A Dsvc_rpcsec_gss.c545 __svcrpcsec_gss(struct svc_req *rqst, struct rpc_msg *msg, bool_t *no_dispatch) in __svcrpcsec_gss() argument
565 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NONE; in __svcrpcsec_gss()
566 rqst->rq_xprt->xp_verf.oa_base = NULL; in __svcrpcsec_gss()
567 rqst->rq_xprt->xp_verf.oa_length = 0; in __svcrpcsec_gss()
657 svcauth = __svc_get_svcauth(rqst->rq_xprt); in __svcrpcsec_gss()
696 if (!svc_getargs(rqst->rq_xprt, __xdr_rpc_gss_init_arg, in __svcrpcsec_gss()
711 if (rqst->rq_prog != sc->program || in __svcrpcsec_gss()
712 rqst->rq_vers != sc->version) in __svcrpcsec_gss()
822 svc_sendreply(rqst->rq_xprt, __xdr_rpc_gss_init_res, in __svcrpcsec_gss()
842 if (!set_response_verf(rqst, msg, client_data, in __svcrpcsec_gss()
[all …]